Johann Otto Boeckeler
Johann Otto Boeckeler (12 August 1803 – 5 March 1899) was a German apothecary-botanist of Oldenburg. He specialized in the plant family Cyperaceae (sedges),[1] of which, he was the binomial authority of many species.[2]
He is commemorated with the genus Boeckeleria and the species Bulbostylis boeckeleriana.[3][4]
Publications
- Botanik; edited with Paul Friedrich August Ascherson and others (1879), part of Karl Klaus von der Decken's "Reisen in Ost-Afrika", etc. Bd. 3. Abt. 3.[5]
- Die Cyperaceen des Königlichen Herbariums zu Berlin, Linnaea; Vol. XXXV - XLI, (1900) - Cyperaceae of the Royal Herbariums of Berlin.[6]
gollark: You can't just trust clients.
gollark: ```javascriptconst getEnemy = (x, y) => { for (let i = 0; i < enemies.length; i++) { let other = enemies[i] if (other.x == x && other.y == y) return i } return -1}const getPlayer = (x, y) => { for (let i = 0; i < active_players.length; i++) { if (active_players[i]) { if (players[i].x == x && players[i].y == y) return i } } return -1}const getBonus = (x, y) => { for (let i = 0; i < bonuses.length; i++) { if (x == bonuses[i].x && y == bonuses[i].y) return i } return -1}```
gollark: This is for rendering the area around a player.
gollark: ```javascriptconst renderPlayer = (player) => { let str = "" for (let y = player.y - 5; y <= player.y + 5; y++) { for (let x = player.x - 10; x <= player.x + 10; x++) { let wallCol = getWallColor(x, y) if (x >= WIDTH) { str += wallCol } else if (y >= HEIGHT) { str += wallCol } else if (x < 0) { str += wallCol } else if (y < 0) { str += wallCol } else { let id = getEnemy(x, y) if (id != -1) { str += enemy_icons[enemies[id].id] } else { let id = getPlayer(x, y) if (id != -1) { str += players[id].icon } else { let id = getBonus(x, y) if (id != -1) { str += "?" } else { str += " " } } } } } str += "\n" } return str}```
gollark: YES, SOME OFFENSE.
References
- A California Flora: And Supplement, Volumes 1-2 by Philip Alexander Munz
- IPNI List of plants described and co-described by Boeckeler.
- The Eponym Dictionary of Southern African Plants Plant Names A-B
- The Plant List Bulbostylis boeckeleriana (Schweinf.) Beetle
- WorldCat Title Botanik. Bearbeitet von P. Ascherson, O. Böcheler, etc.
- WorldCat Identities (publications)
- IPNI. Boeckeler.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.