Xanthoparmelia lavicola

Xanthoparmelia lavicola is a species of lichen in the family Parmeliaceae that can be found in Mexico north to Arizona and California in the United States. It has also been found in Ecuador.[2] Xanthoparmelia lavicola grows in dry habitats on acidic rocks.[2] It has been called the trochanter lichen.[3]

Xanthoparmelia lavicola
Scientific classification
Kingdom: Fungi
Division: Ascomycota
Class: Lecanoromycetes
Order: Lecanorales
Family: Parmeliaceae
Genus: Xanthoparmelia
Species:
X. lavicola
Binomial name
Xanthoparmelia lavicola
(Gyeln.) Hale
Synonyms[1]

Parmelia lavicola Gyeln.

Description

The upper part is either light yellow or yellow-green and the bottom surface is brown. The apothecia are 2–7 millimetres (0.079–0.276 in) wide and the thallus of which is laminal and is 4–7 centimetres (1.6–2.8 in) in diameter. The disc is either cinnamon-brown or dark brown and is ellipsoid. The pycnidia is immersed, while the conidia are bifusiform.[2]

gollark: <@!341618941317349376>
gollark: https://esolangs.org/wiki/WHY#WHYJIT
gollark: WHYJIT is now production-unusable!
gollark: _continues WHYJIT development_
gollark: ```python#!/usr/bin/env python3import argparseimport subprocessparser = argparse.ArgumentParser(description="Compile a WHY program")parser.add_argument("input", help="File containing WHY source code")parser.add_argument("-o", "--output", help="Filename of the output executable to make", default="./a.why")parser.add_argument("-O", "--optimize", help="Optimization level", type=int, default="0")args = parser.parse_args()def build_output(code, mx): C_code = f"""#define QUITELONG long long intconst QUITELONG max = {mx};int main() {{ volatile QUITELONG i = 0; // disable some "optimizations" that RUIN OUR BEAUTIFUL CODE! while (i < max) {{ i++; }} {code}}} """ shell_script = f"""#!/bin/shTMP1=/tmp/ignore-meTMP2=/tmp/ignore-me-too cat << EOF > $TMP1{C_code}EOF gcc -x c -o $TMP2 $TMP1 chmod +x $TMP2 $TMP2 """ return shell_scriptinput = args.inputoutput = args.outputwith open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_output( contents, looplen ) with open(output, "w") as out: out.write(code)```

See also

References

  1. "Xanthoparmelia lavicola". www.indexfungorum.org. Index Fungorum. Retrieved 7 June 2020.
  2. "Xanthoparmelia lavicola (Gyelnik) Hale". Retrieved 6 June 2020.
  3. Tripp, Erin (2017). Field guide to the lichens of White Rocks (Boulder, Colorado). University Press of Colorado. ISBN 9781607325543.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.