Attributes

Attributes are TOML like values. They can be one of the following types:

Type NameRust TypeDescription
BoolboolBoolean values (true or false)
StringRStringQuoted String Values
Integeri64Integer values (numbers)
Floatf64Float values (numbers with decimals)
DateDateDate (yyyy-mm-dd formatted)
TimeTimeTime (HH:MM, HH:MM:SS formatted)
DateTimeDateTimeDate and Time separed by or T
ArrayRVec<Attribute>List of any attribute values
TableAttrMapKey Value pairs of any attribute values

Example Attribute File:

river = "Ohio River"
outlet = "Smithland Lock and Dam"
outlet_is_gage = true
outlet_site_no = ""
streamflow_start = 1930-06-07
mean_streamflow = 123456.0
obs_7q10 = 19405.3
nat_7q10 = 12335.9
num_dams_gages = 2348