Strata

Get strata by ob

Retrieve a paginated collection of strata associated with the specified plot observation (using its ob_code).

get/plot-observations/{ob_code}/strata

Path parameters

ob_codestring required

Query parameters

limitinteger

Maximum number of records to return

offsetinteger

Number of records to skip before starting to return records

create_parquetboolean

If true, return data payload in binary Parquet format

Response

Matching stratum or strata

ob_codestring

VegBank plot observation identifier

sr_codestring

VegBank stratum identifier

namestring

Stratum name

heightnumber float

#TODO

basenumber float

#TODO

covernumber float

#TODO

descriptionstring

Stratum description

sm_codestring

VegBank stratum method identifier

stratum_method_namestring

Name of the stratum method (e.g., Braun-Blanquet, TNC-ABI, NC Vegetation Survey #1, NC Vegetation Survey #2, etc.)

sy_codestring

VegBank stratum type identifier

stratum_type_namestring

Name associated with this stratum by the stratum method

Example response

{
  "ob_code": "ob.1",
  "sr_code": "sr.1",
  "name": "Dwarf shrub",
  "height": 5,
  "base": 2,
  "cover": 45,
  "description": "Dwarf shrub",
  "sm_code": "sm.1",
  "stratum_method_name": "TurboVeg",
  "sy_code": "sy.1",
  "stratum_type_name": "Dwarf shrub"
}

Changes