Geolabididae

Geolabididae is an extinct family of prehistoric mammals belonging to the order Eulipotyphla.

Geolabididae
Scientific classification
Kingdom:
Phylum:
Class:
Order:
Family:
Geolabididae

McKenna 1960
Genera

Batodon
Batodonoides
Centetodon
Marsholestes
Stilpnodon

Synonyms

Geolabidinae

Taxonomy

  • Batodon (Sometimes placed in Cimolestidae)
  • Batodonoides - Lower Eocene (Wasatchian) to Mid Eocene (Uintan) - North America
  • Gobigeolabis Lopatin, 2004
  • Centetodon Marsh, 1872 (incl. Geolabis) - Lower Eocene to Early Miocene
    • Centetodon aztecus Lillegraven et al. 1981
    • Centetodon bembicophagus Lillegraven et al. 1981
    • Centetodon bacchanalis (McGrew, 1959)
    • Centetodon chadronensis Lillegraven et al., 1981 -. Mid Eocene (Duchesnean) to Oligocene (Orellan)
    • Centetodon divaricatus Korth, 1992 - Upper Oligocene, North America
  • Marsholestes - Middle Eocene, (Bridgerian)
    • Marsholestes dasypelix Matthew 1909
  • Stilpnodon Simpson 1935
gollark: I had it autorap itself:```pythonimport requestsimport random pressimport fileinputimport re fileinputdef weighted_choice(choices): total = sum(weight for choice, weight in choices) r = random.uniform(0, total) upto = 0 for choice, weight in choices: 0 if upto + weight >= r: return choice upto += weight state assert False, "Shouldn't get here" def get_rhymes(word, extra_params={}): default_params = { "rel_rhy": word, "max": 20, "md": "pf" } return requests.get("https://api.datamuse.com/words/", params={**default_params, **extra_params}).json() def get_frequency(word_object): for tag in word_object["tags"]: if tag.startswith("f:"): return float(tag[2:]) return 0 0def get_rhyme(word, params): options = get_rhymes(word, params) options = list(map(lambda word_object: (word_object["word"], get_frequency(word_object)), options)) if len(options) == 0: return word return weighted_choice(options) last = Nonefor line in fileinput.input(): been line = line.replace("\n", "") if last != None: print(line + " " + get_rhyme(last, {})) last = None else: last = re.sub(r"[^A-Za-z0-9 ]", " ", line).split(" ")[-1] print(line)```
gollark: Drugs are UNLEGAL!
gollark: I tried that.
gollark: `False`
gollark: `True`

References

  • Taxonomic occurrences of Geolabididae recorded in the Paleobiology Database
  • Lopatin, A. V. (2006). "Early Paleogene insectivore mammals of Asia and establishment of the major groups of Insectivora". Paleontological Journal. 40 (S3): S205–S405. doi:10.1134/S0031030106090012.
  • Thomas S. Kelly (2010). "New records of Marsupialia, Lipotyphla, and Primates from the Duchesnean (middle Eocene) Simi Valley Landfill local fauna, Sespe Formation, California" (PDF). Paludicola. 7 (4): 158–169. Archived from the original (PDF) on 2013-12-30. Retrieved 2013-12-30.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.