Disciseda bovista

Disciseda bovista is a rare species of gasteroid fungus in the family Agaricaceae. It was first described as Geastrum bovista by Johann Friedrich Klotzsch in 1843. Paul Christoph Hennings transferred it to the genus Disciseda in 1903.

Disciseda bovista
Scientific classification
Kingdom:
Division:
Class:
Order:
Family:
Genus:
Species:
D. bovista
Binomial name
Disciseda bovista
(Klotzsch) Henn. (1903)
Synonyms
  • Geastrum bovista Klotzsch (1843)

Description

The whitish to greyish-brown fruitbodies of Disciseda bovista are roughly spherical, measuring 10–26 mm (0.4–1.0 in) in diameter and 9–15 cm (3.5–5.9 in) tall. The base of mature fruitbodies is cushioned by a thick pad of mycelium encrusted with soil and plant debris. There is an irregularly shaped (and often torn) opening (ostiole) at the top of the fruitbody, usually 1–2 mm in diameter. The inside of the fruitbody contains the brown gleba, which is initially cottony before becoming powdery after the spores mature. The spores are strongly ornamented, and measure 6–7 µm.[1]

Disciseda candida is quite similar in appearance, but has smaller spores (3.5–5.5 μm) with finer surface ornamentation.[1]

Habitat and distribution

Disciseda bovista grows on the ground in sunny, dry, and sandy locales that are often steppe-like. It is found in North America and Europe. Because of its rare occurrence in Europe, it has been placed on the Regional Red Lists of several countries.[1]

gollark: ```rustpub struct List<T> { head: Link<T>,}type Link<T> = Option<Box<Node<T>>>;struct Node<T> { elem: T, next: Link<T>,}impl<T> List<T> { pub fn new() -> Self { List { head: None } } pub fn push(&mut self, elem: T) { let new_node = Box::new(Node { elem: elem, next: self.head.take(), }); self.head = Some(new_node); } pub fn pop(&mut self) -> Option<T> { self.head.take().map(|node| { self.head = node.next; node.elem }) }}impl<T> Drop for List<T> { fn drop(&mut self) { let mut cur_link = self.head.take(); while let Some(mut boxed_node) = cur_link { cur_link = boxed_node.next.take(); } }}```
gollark: ... or at all?
gollark: You don't have a thing to efficiently deallocate the list.
gollark: Collections which work on a big chunk of memory or something *do* kind of have to use unsafe, linked lists or (some?) trees mostly don't.
gollark: And the unsafe stuff is better checked than in ©.

References


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.