Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update soil docs #40

Merged
merged 1 commit into from
Jun 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/code-examples/soil-property.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const json = await response.json()
const bdod = json.properties.layers[0]

// Get the soil property unit and name
const bdodUnit = bdod.unit
const bdodUnit = bdod.unit_measure.mapped_units
const bdodName = bdod.name

// Get the soil property mean value at depth 0-5cm
Expand Down
2 changes: 1 addition & 1 deletion app/code-examples/soil-property.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

# Get the soil property unit and name
phh2o_name = phh2o["name"]
phh2o_unit = phh2o["unit"]
phh2o_unit = phh2o["unit_measure"]["mapped_units"]

# Get the soil property 0.05 quantile value at depth 100-200cm
phh2o_depth = phh2o["depths"][1]["label"]
Expand Down