Stem counts

Get stem count

Retrieve a single stem count using its sc_code.

get/stem-counts/{sc_code}

Path parameters

sc_codestring required

Query parameters

create_parquetboolean

If true, return data payload in binary Parquet format

Response

Matching stem count(s)

ob_codestring

VegBank plot observation identifier

to_codestring

VegBank taxon observation identifier

tm_codestring

VegBank taxon importance identifier

sr_codestring

VegBank stratum identifier

stratum_namestring

Stratum name, or '<All>' if sr_code is null

sc_codestring

VegBank stem count record identifier

diameternumber float

Diameter of the stem in centimeters. When diameter classes are used, the diameter is the midpoint between the low end and high end for the diameter class; the offset between this and the endpoints is stored in stem_diameter_accuracy.

diameter_accuracynumber float

Accuracy of the stem diameter measurements in centimeters, representing the distance between the diameter class midpoint and endpoint

heightnumber float

Measured height of the stem in meters. When height classes are used, the height is the midpoint between the low end and high end for the height class; the offset between this and the endpoint is stored in stem_height_accuracy.

height_accuracynumber float

Accuracy of the measured height of a stem, representing the offset between the midpoint of the class and the endpoint, in meters.

countinteger

Number of stems of a single species that have these specific stem diameter and height data in common

taxon_areanumber float

Area in m2 used to infer the presence of the stem(s) referenced in this record. Overrides similar area field in taxon observation, taxon importance, and/or plot observation. RESERVED VALUE: -1 is used to indicate no known boundaries were used while collecting this stem size.

Example response

{
  "ob_code": "ob.1",
  "to_code": "to.1",
  "tm_code": "tm.1",
  "sr_code": "sr.1",
  "stratum_name": "Canopy",
  "sc_code": "sc.1",
  "diameter": 3.75,
  "diameter_accuracy": 1.25,
  "height": 1.185,
  "height_accuracy": 0.185,
  "count": 1,
  "taxon_area": 600
}

Changes