Brosimum glaziovii

Brosimum glaziovii is a species of plant in the family Moraceae.

Brosimum glaziovii
Scientific classification
Kingdom: Plantae
Clade: Tracheophytes
Clade: Angiosperms
Clade: Eudicots
Clade: Rosids
Order: Rosales
Family: Moraceae
Genus: Brosimum
Species:
B. glaziovii
Binomial name
Brosimum glaziovii
Taubert

Description

It is endemic to Atlantic Forest habitats of southeastern Brazil, within Paraná (state), Rio de Janeiro (state), Santa Catarina (state), and São Paulo (state).

Its populations are largely confined to the Serra do Mar. It occurs in Tijuca National Park

Conservation

It is an IUCN Red List Endangered species threatened by habitat loss, which continues to be rapidly destroyed.

It is on the official list of threatened Brazilian plants compiled by Brazilian Institute of Environment and Renewable Natural Resources—IBAMA.

gollark: Pretty much all of the algorithms reduced size by ~50% or so and the difference is maybe 5% or so between them all, so this is definitely premature optimization, but bees?
gollark: I tested four different compression algorithms and brotli did fairly well; I would have used zstandard but the node bindings for it are awful, and brotli actually did do better on small inputs.
gollark: For example, it stores created/updated timestamps in a way which allows them to be looked up more quickly, makes it faster to look up the latest revision of stuff, allows me to do compression (I implemented brotli compression to reduce storage requirements a lot), and allows revisions to have data and represent stuff other than "the page content changed".
gollark: The new version *is* better, even if it involves something like 70 lines more code.
gollark: I've reworked minoteaur's design a bit again because productivity is BEES and happens to other people.```sqlCREATE TABLE pages ( id INTEGER PRIMARY KEY, name TEXT NOT NULL, updated INTEGER NOT NULL, content TEXT NOT NULL);``` I went from that small and thus uncool database thingy to this:```sqlCREATE TABLE versions ( vuuid TEXT PRIMARY KEY COLLATE BINARY, rawSize INTEGER NOT NULL, encoding TEXT, data BLOB NOT NULL);CREATE TABLE pages ( title TEXT PRIMARY KEY, created INTEGER NOT NULL, updated INTEGER NOT NULL, latestVersion TEXT NOT NULL REFERENCES versions(vuuid));CREATE TABLE revisions ( ruuid TEXT PRIMARY KEY COLLATE BINARY, page TEXT NOT NULL REFERENCES pages(title), timestamp INTEGER NOT NULL, type TEXT NOT NULL, data TEXT NOT NULL, -- JSON version TEXT NOT NULL REFERENCES versions(vuuid));CREATE INDEX revisions_page_ix ON revisions(page);```

References

  1. 2006 IUCN Red List of Threatened Species: Brosimum glaziovii, Varty, N. 1998, Downloaded on 20 August 2007.


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