Limnocyon
Limnocyon is a genus of hyaenodontid that lived in North America during the middle Eocene, existing for approximately 10 million years. Fossils of this animal have been found in California, Utah and Wyoming.[1]
Limnocyon | |
---|---|
Skull of Limnocyon verus | |
Scientific classification | |
Kingdom: | Animalia |
Phylum: | Chordata |
Class: | Mammalia |
Order: | †Creodonta |
Family: | †Hyaenodontidae |
Subfamily: | †Limnocyoninae |
Genus: | †Limnocyon |
Type species | |
Limnocyon verus Marsh, 1872 | |
Species | |
|
Description
Limnocyon was a small omnivorous hyaenodontid, with some estimates placing it at less than one kilogram in weight.[1] Like other limnocyonines, Limnocyon had only two molars in the upper and lower dentition.[2]
gollark: ```python#!/usr/bin/env python3import os, subprocess, sysDIR = os.path.abspath(os.path.dirname(sys.argv[0]))CC = ["gcc", "-Wall"]CACHE = os.path.join(DIR, "_cache")EXT = ".c"OUT_FILE = os.path.join(DIR, "out")if not os.path.exists(CACHE): os.mkdir(CACHE)changed_any = Falseobject_files = []for thing in os.listdir(DIR): if thing.endswith(EXT): path = os.path.join(DIR, thing) name, _, _ = thing.rpartition(EXT) cache_entry = os.path.join(CACHE, f"{name}.o") try: cache_updated_at = os.stat(cache_entry).st_mtime except FileNotFoundError: cache_updated_at = 0 code_updated_at = os.stat(path).st_mtime if cache_updated_at < code_updated_at: print(thing) subprocess.run(CC + ["-c", "-o", cache_entry, path]) changed_any = True object_files.append(cache_entry)if changed_any or not os.path.exists(OUT_FILE): subprocess.run(CC + ["-o", OUT_FILE] + object_files)else: print("no changes")```
gollark: Correction: 7.
gollark: Coming in about 3 minutes.
gollark: Use osmarksbuildsystem™.
gollark: I AM writing this, so you know.
References
- Paleobiology Database: Limnocyon
- Michael Morlo and Gregg F. Gunnell (2005). "New Species of Limnocyon (Mammalia, Creodonta) from the Bridgerian (Middle Eocene)". Journal of Vertebrate Paleontology. 25 (1): 251–255. doi:10.1671/0272-4634(2005)025[0251:nsolmc]2.0.co;2.CS1 maint: uses authors parameter (link)
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.