Szerkesztő:Pzgulyas/próbalap
Ország
[szerkesztés]Az alábbi táblázatban vastag betűvel a pinyin, szögletes zárójelben a nemzetközi fonetikai ábécé szimbóluma – majd kötőjellel elválasztva a magyar közelítő kiejtés található.
Ajakhang (labiális) |
Fogmederhang (alveoláris) |
Retroflex | Fogmeder-szájpadláshang (alveolopalatális) |
Utószájpadláshang (veláris) | ||
---|---|---|---|---|---|---|
Zárhang (plozíva) |
– | b [p] – p | d [t] – t | g [k] – k | ||
hehezetes | p [pʰ] – ph | t [tʰ] – th | k [kʰ] – kh | |||
Orrhang (nazális) | m [m] – m | n [n] – n | ||||
Zár-réshang (affrikáta) |
– | z [ts] – c | zh [ʈʂ] – cs | j [tɕ] – ty | ||
hehezetes | c [tsʰ] – ch | ch [ʈʂʰ] – csh | q [tɕʰ] – tyh | |||
Réshang (frikatíva) | f [f] – f | s [s] – sz | sh [ʂ] – s | x [ɕ] – hsz | h [x] – h | |
Folyékony hang (likvida) | l [l] – l | r [ɻ]~[ʐ] – zs | ||||
Félhangzó2 | y [j] – ji / [ɥ] – jü1 és w [w] – u |
1 Az yu szótagkezdetet megközelítőleg jü-nek [ɥ] kell ejteni.
2 A w és y betűk a hivatalos pinyinben nem számítanak szótagkezdő mássalhangzónak, ezek csak a kezdő mássalhangzó hiányát jelölik, egyezményes írásbeli előtagjai az i, u és ü hangoknak egyéb kezdő mássalhangzó hiányában. Az y az i és ü hangokat, a w pedig az u-t előzi meg, illetve helyettesíti.
Személy
[szerkesztés]Szövegtörzs
[szerkesztés]| config[references]=Q50754531
Továbbiak
[szerkesztés]
A rózsa egy (növény/gomba)nemzetség / (állat)nem, a fölérendelt taxonja pedig a Rosoideae
T.Rex: Q14332
Más téma
[szerkesztés]https://www.mediawiki.org/wiki/Wikidata_query_service/User_Manual
SELECT ?item ?itemLabel ?value ?valueLabel WHERE { ?item wdt:P171 wd:Q140 . ?item wdt:P171 ?value . SERVICE wikibase:label { bd:serviceParam wikibase:language "en,en" } } LIMIT 1000
local getArgs = require"Modul:Arguments".getArgs local frame = mw.getCurrentFrame() function p.getPropertyValue(entityId, propertyId, resultFormat, qualifierId) local entity = mw.wikibase.getEntityObject(entityId) if not (entity and entity.claims) then return end local claims = entity.claims[propertyId] if not claims then return end local sortindices = {} for idx in pairs(claims) do sortindices[#sortindices + 1] = idx end local comparator = function(a, b) local rankmap = { deprecated = 2, normal = 1, preferred = 0 } local ranka = rankmap[claims[a].rank or "normal"] .. string.format("%08d", a) local rankb = rankmap[claims[b].rank or "normal"] .. string.format("%08d", b) return ranka < rankb end table.sort(sortindices, comparator) local snak, snaks if qualifierId == nil or qualifierId == "" then snak = claims[sortindices[1]].mainsnak elseif claims[sortindices[1]].qualifiers ~= nil then snaks = claims[sortindices[1]].qualifiers[qualifierId] if snaks then for i = 1, 10 do if snaks[i] then snak = snaks[i]; break end end end else return end local resultEntityId = '' local resultValue = '' if snak.datavalue then if snak.datavalue.type == "wikibase-entityid" then resultEntityId = 'Q' .. tostring(snak.datavalue.value['numeric-id']) resultValue = mw.wikibase.label(resultEntityId) elseif snak.datavalue.type == "string" then resultValue = snak.datavalue.value elseif snak.datavalue.type == "time" then resultValue = tonumber(mw.ustring.match(snak.datavalue.value['time'], "^[+-]?%d+")) else resultValue = snak.datavalue.type end end if resultFormat == "ucfirst" then resultValue = mw.language.getContentLanguage():ucfirst(resultValue) end return resultEntityId, resultValue end function p.taxonHierarchy(frame) local args = frame.args local tableFormat = args["tableFormat"]; if tableFormat == nil then tableFormat = 'cellpadding="2" style="width:272px; font-size:90%; margin:0 auto; text-align:left; background:transparent;"' end local rowFormat = 'style="vertical-align: top;"' local regnumId = "Q36732" local genusId = "Q34740" local pInstanceOf = "P31" local pAuthor = "P405" local pAuthorCitation = "P835" local pPublicationDate = "P574" local entityId = args["item"]; if entityId == "" then entityId = nil end local pRank = args["pRank"]; if (pRank == nil or pRank == "") then pRank = "P105" end local pLatinName = args["pLatinName"]; if (pLatinName == nil or pLatinName == "") then pLatinName = "P225" end local pParent = args["pParent"]; if (pParent == nil or pParent == "") then pParent = "P171" end local separator = args["separator"]; if (separator == nil or separator == "") then separator = "\n" end local entity = mw.wikibase.getEntity(entityId) if not (entity and entity.claims) then return end local tab = {} local row local label = "" local _, rankId, rank, latinName, localName, nameLink, rankLink, parentId, author, publicationDate local authorId, authorCitation, authorLink, author authorId, _ = p.getPropertyValue(entityId, pLatinName, nil, pAuthor) if authorId ~= nil and authorId ~= "" then _, authorCitation = p.getPropertyValue(authorId, pAuthorCitation) _, publicationDate = p.getPropertyValue(entityId, pLatinName, nil, pPublicationDate) authorLink = mw.wikibase.sitelink(authorId) if authorLink ~= nil then author = '[[' .. authorLink .. '|' .. authorCitation .. ']]' else author = '[[d:' .. authorId .. '|<span style="color:green;">' .. authorCitation .. '</span>]]' end if publicationDate ~= nil then author = author .. ', ' .. publicationDate end table.insert(tab, 2, '|- ' .. rowFormat) table.insert(tab, 1, '| ||<small><span style="font-variant: small-caps;">' .. author .. '</span></small>') end --while (rankId ~= regnumId) while (entityId ~= nil and entityId ~= "") do rankId, rank = p.getPropertyValue(entityId, pRank, "ucfirst") _, latinName = p.getPropertyValue(entityId, pLatinName, "ucfirst") parentId, _ = p.getPropertyValue(entityId, pParent) localName = mw.language.getContentLanguage():ucfirst(mw.wikibase.label(entityId)) nameLink = mw.wikibase.sitelink(entityId) if rank == nil or rank == "" then rankId, rank = p.getPropertyValue(entityId, pInstanceOf, "ucfirst") end if rankId ~= nil then rankLink = mw.wikibase.sitelink(rankId) end if latinName ~= localName then label = " (" .. latinName .. ")" end if nameLink == nil then label = '[[d:' .. entityId .. '|<span style="color:green;">' .. localName .. '</span>]]' .. label else label = '[[' .. nameLink .. '|' .. localName .. ']]' .. label end if rankLink ~= nil and rankLink ~= "" then rank = '[[' .. rankLink .. '|' .. rank .. ']]' end table.insert(tab, 1, "|" .. rank .. ':||' .. label) table.insert(tab, 2, '|- ' .. rowFormat) entityId = parentId; label = ""; latinName = ""; localName = "" end table.insert(tab, 1, '{| ' .. tableFormat) table.insert(tab, 2, '|- ' .. rowFormat) table.insert(tab, '|}') return mw.text.listToText(tab, separator, separator) end return p
Társulás
[szerkesztés]FGDC rev | FGDC old | IAVS | 1. példa | 2. példa |
---|---|---|---|---|
Category 1 | Division | Vegetated | Vegetated | |
Category 2 | Order | Semi-natural vegetation | Semi-natural vegetation | |
Level 1 – Class | Level 1 – Class | Mesomorphic Tree Vegetation | Mesomorphic Tree Vegetation | |
Level 2 – Subclass | Level 2 – Subclass | Temperate & Boreal Forest & Woodland | Temperate & Boreal Forest & Woodland | |
Level 3 – Formation | Level 5 – Formation | Temperate Flooded & Swamp Forest | Warm Temperate Forest & Woodland | |
Level 4 – Division | divisio | Láperdők (Swamp forests and scrub) | Mediterranean Mesomorphic Tree Veg. | |
Level 5 – Macrogroup | classis (osztály) | Láperdők és lápcserjések (Alnetea glutinosae) | Quercetea ilicis | |
Level 6 – Group | ordo (rend) | Alnetalia glutinosae | Quercetalia ilicis | |
Level 7 – Alliance | Level 6 – Alliance | alliance (csoport) | Éger- és kőrislápok (Alnion glutinosae) | Quercion ilicis |
Level 8 – Association | Level 7 – Association | associatio | Égeres láperdő (Carici elongatae-Alnetum) |
Rendszertan
[szerkesztés]lásd: Állatrendszertan
Rang | Latin | Zoo | Állat | Plantae | Növény |
---|---|---|---|---|---|
törzs | phylum(divisio) | -ophyta | |||
altörzs | subphylum | -ozoa | |||
osztály | classis | -idomúak | -opsida | -szerűek | |
alosztály | subclassis | -szabásúak | -idae | ||
alosztályág | infraclassis | -morpha | (-szabásúak) | ||
főrend | superordo | -optera, -opterygii, -physi | -formájúak | -anae | |
rend | ordo | -formes | -alakúak | -ales | -virágúak |
alrend | subordo | -i, -ia | -alkatúak | -ineae | |
alrendág | infraordo | -idia | -aria | ||
részalrend | parvordo | -ida | |||
sorozat | series | -iformia | |||
öregcsalád | superfamilia | -oidea | -szerűek | -acea | |
család | familia | -idae | -félék | -aceae | -félék |
alcsalád | subfamilia | -inae | -formák | -oideae | -formák |
öregnemzetség(csoport) | supertribus | -itae | |||
nemzetség(csoport) | tribus | -ini | -rokonúak rovaroknál | -ieae | |
alnemzetségcsoport | subtribus | -ina, -morphina | -inae |
Taxonómiai adatbázisok
[szerkesztés]élőlény | curated | megjegyzés |
---|---|---|
növények | IPNI | |
gombák | Index Fungorum | |
gombák | MycoBank | |
madarak | IOC World Bird List | |
kétéltűek | AmphibiaWeb | |
kétéltűek | Amphibian Species of the World | |
prokarióták | Bergey's Manual | |
algae | AlgaeBase | |
halak | FishBase | |
tengeri | WoRMS | Aphia+AlgaeBase+FishBase |
halak | Catalog of Fishes | |
gyűjtő | Catalogue of Life | |
gyűjtő | NCBI | Észak-Amerika |
gyűjtő | ITIS | Észak-Amerika |
gyűjtő | GBIF | EU, csak főrangok |
gyűjtő | Fossilworks, PaleoBioDB | Ausztrália, USA |
Taxobox teszt
[szerkesztés]Magyar név (name) | |
---|---|
éra: evolúciós időszak (fossil_range) | |
1. kép szövege (image_caption) | |
2. kép szövege (image2_caption) | |
3. kép szövege (image3_caption) | |
IUCN természetvédelmi státusz | |
Kihalt faj (kihalás ideje (extinct)) | |
Rendszertan | |
Klád: | Nincs tudományos név |
Klád tudományos neve | |
Nincs tudományos név | |
Típusnem | |
típusgénusz neve (type_genus) | |
szerző, év | |
Típusfaj | |
típusfaj neve (type_species) | |
szerző, év | |
Szinonim név | |
| |
biodiverzitás | |
| |
Altaxonok (subdivision_ranks) | |
| |
Elterjedés | |
térkép szövege (range_map_caption) | |
2. térkép szövege (range_map2_caption) | |
3. térkép szövege (range_map3_caption) | |
Wikifajok: Main Page | |
Commons-galéria: Main Page |
- ↑ a b Daniel Lewis: Richard Wilbur, Poet Laureate and Pulitzer Winner, Dies at 96 (angol nyelven). The New York Times, 2017. október 15. (Hozzáférés: 2017. október 22.)
- ↑ (1991) „Origin of Mammalia: the craniodental evidence reexamined”. Journal of Vertebrate Paleontology (11), 1-28. o.
- ↑ a b Fossilworks (angol nyelven)
- ↑ Leho Tedersoo, Santiago Sánchez-Ramírez, Urmas Kõljalg, Mohammad Bahram, Markus Döring, Dmitry Sergeevich Schigel, Tom May, Martin Ryberg, Kessy Abarenkov (2018. május 16.). „High-level classification of the Fungi and a tool for evolutionary ecological analyses”. Fungal Diversity. DOI:10.1007/S13225-018-0401-0.
- ↑ (2001) „A probainognathian cynodont from South Africa and the phylogeny of non-mammalian cynodonts”. Bulletin of the Museum of Comparative Zoology (156), 5-35. o.
- ↑ BioLib (cseh nyelven)
- ↑ Microsoft Academic
- ↑ a b Ricardo Betancur-R., Gloria Arratia, Nicolas Bailly, Guillaume Lecointre, Guillermo Ortí (2017. július 6.). „Phylogenetic classification of bony fishes” (angol nyelven). BMC Evolutionary Biology 17 (1), 162. o. DOI:10.1186/S12862-017-0958-3. PMID 28683774.
- ↑ (2007) „On Chaliminia musteloides (Eucynodontia: Tritheledontidae) from the Late Triassic of Argentina, and a phylogeny of Ictidosauria”. Journal of Vertebrate Paleontology (27), 442-460. o.
- ↑ John R. Wible (2003. december 12.). „An Early Cretaceous tribosphenic mammal and metatherian evolution” (angol nyelven). Science 302 (5652), 1934-40. o. DOI:10.1126/SCIENCE.1090718. PMID 14671295.
- ↑ a b Peter F. Stadler, Martin Schlegel (2007. május 10.). „The mitochondrial DNA of Xenoturbella bocki: genomic architecture and phylogenetic analysis”. Theory in Biosciences 126 (1), 35-42. o. DOI:10.1007/S12064-007-0007-7. PMID 18087755.
- ↑ a b Michael A. Ruggiero, Dennis P. Gordon, Thomas M. Orrell, Nicolas Bailly, Thierry Bourgoin, Richard C. Brusca, Thomas Cavalier-Smith, Michael D. Guiry, Paul Kirk (2015. április 29.). „A Higher Level Classification of All Living Organisms” (angol nyelven). PLOS One 10 (4), e0119248. o. DOI:10.1371/JOURNAL.PONE.0119248. PMID 25923521.
- ↑ Don E. Wilson, DeeAnn M. Reeder. „Class Mammalia Linnaeus, 1758”. Animal Biodiversity: An Outline of Higher-level Classification and Survey of Taxonomic Richness, 56–60. o.
- ↑ George Gaylord Simpson (1945. október 5.). „The principles of classification and a classification of mammals”. Bulletin of the American Museum of Natural History 85, 1-350. o.
- ↑ Integrated Taxonomic Information System (angol nyelven)