Module:Port LOCODE links

This module generates external links for a port using its UN/LOCODE (P1937) values from Wikidata.

Module:Port LOCODE links

local p = {}

function p.links(frame)
	local entity = mw.wikibase.getEntity()
	if not entity then
		return ""
	end

	local property = frame.args[1] or "P1937"
	local claims = entity.claims and entity.claims[property]
	if not claims then
		return ""
	end

	local links = {}

	for _, claim in ipairs(claims) do
		local mainsnak = claim.mainsnak
		local value = mainsnak
			and mainsnak.snaktype == "value"
			and mainsnak.datavalue
			and mainsnak.datavalue.value

		if type(value) == "string" or type(value) == "number" then
			local code = tostring(value)
			local encodedCode = mw.uri.encode(code, "PATH")
			local countryCode = mw.uri.encode(
				mw.ustring.lower(mw.ustring.sub(code, 1, 2)),
				"PATH"
			)

			table.insert(
				links,
				"* [https://incodocs.com/ports/"
					.. countryCode
					.. "/sea-port/"
					.. encodedCode
					.. " PortFinder] – database of information about the port"
			)

			table.insert(
				links,
				"* [https://unlocode.info/"
					.. encodedCode
					.. " "
					.. code
					.. "] – its [[UN/LOCODE|United Nations location code]]"
			)

			table.insert(
				links,
				"* [https://www.vesselfinder.com/ports/"
					.. encodedCode
					.. " VesselFinder] – database of ships currently in the port"
			)
		end
	end

	return table.concat(links, "\n")
end

return p

Content Disclaimer

Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.

  1. The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
  2. There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
  3. It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
  4. Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
  5. Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.