diff --git a/.github/workflows/api-snapshot-check.yml b/.github/workflows/api-snapshot-check.yml new file mode 100644 index 0000000..c407f26 --- /dev/null +++ b/.github/workflows/api-snapshot-check.yml @@ -0,0 +1,42 @@ +name: API snapshot check + +on: + schedule: + - cron: '0 16 * * 1' # Monday 08:00 PST (UTC-8) + workflow_dispatch: + +jobs: + check-api-snapshot: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v5 + + - name: Update and install Linux packages + run: | + sudo add-apt-repository ppa:ubuntugis/ubuntugis-unstable + sudo apt-get update + sudo apt-get install libgdal-dev gdal-bin python3-gdal + + - name: Setup Python + uses: actions/setup-python@v6 + with: + python-version: '3.13.7' + cache-dependency-path: | + 'requirements.txt' + 'requirements-dev.txt' + + - name: Install uv + uses: astral-sh/setup-uv@v6 + with: + enable-cache: true + cache-dependency-glob: 'requirements**.txt' + + - name: Install Python dependencies + run: | + make install DC_ENV=ci + make install_dev DC_ENV=ci + + - name: Run API snapshot tests + run: make test_api_snapshot diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9b0bbb4..13d9487 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,7 +32,7 @@ jobs: cache-dependency-glob: 'requirements**.txt' - name: Install Python dependencies - run: make install-dev DC_ENV=ci + run: make install_dev DC_ENV=ci - name: Run lint checks run: make lint @@ -68,7 +68,7 @@ jobs: - name: Install Python dependencies run: | make install DC_ENV=ci - make install-dev DC_ENV=ci + make install_dev DC_ENV=ci - name: Restore data cache uses: actions/cache@v4 @@ -79,7 +79,7 @@ jobs: - name: Download data if: ${{ hashFiles('Data/*') == '' }} - run: make download-soil-data + run: make download_soil_data - name: Start soil id DB run: docker compose up -d diff --git a/Makefile b/Makefile index 8f05170..b9b21a5 100644 --- a/Makefile +++ b/Makefile @@ -5,10 +5,10 @@ endif install: uv pip install -r requirements.txt $(UV_FLAGS) -install-dev: +install_dev: uv pip install -r requirements-dev.txt $(UV_FLAGS) -setup-git-hooks: +setup_git_hooks: @pre-commit install lint: @@ -22,46 +22,54 @@ format: lock: CUSTOM_COMPILE_COMMAND="make lock" uv pip compile --upgrade --generate-hashes requirements/base.in -o requirements.txt -lock-package: +lock_package: CUSTOM_COMPILE_COMMAND="make lock" uv pip compile --upgrade-package $(PACKAGE) --generate-hashes --emit-build-options requirements/base.in requirements/deploy.in -o requirements.txt -lock-dev: +lock_dev: CUSTOM_COMPILE_COMMAND="make lock-dev" uv pip compile --upgrade --generate-hashes requirements/dev.in -o requirements-dev.txt -lock-dev-package: +lock_dev_package: CUSTOM_COMPILE_COMMAND="make lock-dev" uv pip compile --upgrade-package $(PACKAGE) --generate-hashes requirements/dev.in -o requirements-dev.txt -build: - echo "Building TK..." - -check_rebuild: - ./scripts/rebuild.sh - clean: @find . -name *.pyc -delete @find . -name __pycache__ -delete -test: clean check_rebuild +# run the standard test suite (unit + integration, no api_snapshots) +test: if [ -z "$(PATTERN)" ]; then \ - $(DC_RUN_CMD) pytest soil_id -vv; \ + pytest soil_id -m "not api_snapshot"; \ else \ - $(DC_RUN_CMD) pytest soil_id -vv -k "$(PATTERN)"; \ + pytest soil_id -m "not api_snapshot" -k "$(PATTERN)"; \ fi -test_update_snapshots: clean check_rebuild - if [ -z "$(PATTERN)" ]; then \ - $(DC_RUN_CMD) pytest soil_id --snapshot-update; \ - else \ - $(DC_RUN_CMD) pytest soil_id --snapshot-update -k "$(PATTERN)"; \ - fi +# All tests except api_snapshot and integration (no live external APIs) +test_unit: + pytest soil_id -m "not api_snapshot and not integration" + +# update the unit test snapshots (but not the API snapshots) +test_update_unit_snapshots: + pytest soil_id -m "not api_snapshot and not integration" --snapshot-update; \ + +# Integration smoke tests only (full live API run, no output validation) +test_integration: + pytest soil_id -m integration + +# API response snapshot tests only (compares live API responses to stored snapshots) +test_api_snapshot: + pytest soil_id -m api_snapshot + +# Refresh stored API response snapshots from live APIs +test_update_api_snapshots: + pytest soil_id -m api_snapshot --snapshot-update -test-verbose: +test_verbose: pytest soil_id --capture=no -test-profile: +test_profile: pytest soil_id --profile -test-graphs: test-profile graphs +test_graphs: test-profile graphs graphs: # gprof2dot -f pstats prof/combined.prof | dot -Tsvg -o prof/combined.svg @@ -96,7 +104,7 @@ process_bulk_test_results_legacy: # 1P3xl1YRlfcMjfO_4PM39tkrrlL3hoLzv: gsmsoilmu_a_us.prj # 1K0GkqxhZiVUND6yfFmaI7tYanLktekyp: gsmsoilmu_a_us.dbf # 1z7foFFHv_mTsuxMYnfOQRvXT5LKYlYFN: SoilID_US_Areas.shz -download-soil-data: +download_soil_data: mkdir -p Data cd Data; \ gdown 1tN23iVe6X1fcomcfveVp4w3Pwd0HJuTe; \ diff --git a/README.md b/README.md index 1e5f711..d994371 100644 --- a/README.md +++ b/README.md @@ -2,14 +2,14 @@ ## Requirements -- Python: 3.12 or better +- Python: 3.12 or better # Contributing Configure git to automatically lint your code and validate validate your commit messages: ```sh -$ make setup-git-hooks +$ make setup_git_hooks ``` Set up a virtual environment and install dependencies: @@ -17,27 +17,27 @@ Set up a virtual environment and install dependencies: ```sh $ uv venv $ source .venv/bin/activate -$ make install && make install-dev +$ make install && make install_dev ``` ## explanation of algorithm ### terminology -- soil map unit: (possibly disjoint) geographic area that is associated with soil component percentage / arial coverage -- soil series: collection of related soil components -- soil component: description of various soil properties at specific depth intervals +- soil map unit: (possibly disjoint) geographic area that is associated with soil component percentage / arial coverage +- soil series: collection of related soil components +- soil component: description of various soil properties at specific depth intervals ### references -- equation 1 in https://landpotential.org/wp-content/uploads/2020/07/sssaj-0-0-sssaj2017.09.0337.pdf +- equation 1 in https://landpotential.org/wp-content/uploads/2020/07/sssaj-0-0-sssaj2017.09.0337.pdf ### dependencies -- simple features: https://r-spatial.github.io/sf/index.html -- well-known geometry: https://paleolimbot.github.io/wk/ -- R package for querying soilDB: https://ncss-tech.github.io/soilDB/ -- dplyr: https://dplyr.tidyverse.org/ +- simple features: https://r-spatial.github.io/sf/index.html +- well-known geometry: https://paleolimbot.github.io/wk/ +- R package for querying soilDB: https://ncss-tech.github.io/soilDB/ +- dplyr: https://dplyr.tidyverse.org/ ### algorithm @@ -72,19 +72,27 @@ Input: a specific point in lat/lon, and a set of depth intervals. ### Regular tests -There is a small suite of integration tests which can be run with the `make test` command, and gets run regularly by CI. +There are several smaller test suites: + +- There is a set of "unit" tests, which really are testing the entire codebase more or less, but don't rely on any external API services, instead using snapshotted data from those services. You can run these tests with `make test_unit`. + - These tests mostly produce snapshots of algorithm output rather than validating specific properties of the output, so they moreso validate that the algorithm hasn't changed (or how it has changed) rather than that it is correct. If the snapshots have changed in a desirable way, you can update them with `make test_update_unit_snapshots`. +- For US only, there is a set of "integration" tests which run the algorithm against the live API services, but just confirm that the algorithm doesn't crash, they don't validate the output since it can change over time. These can be run with `make test_integration`. +- The unit and integration tests can be run together with `make test` for convenience: this is what must pass for a PR to be mergeable. +- The API snapshots themselves can be checked against the live API for drift using `make test_api_snapshot`. They can be updated to the new live API values using `make test_update_api_snapshots`. ### Bulk test There is a large suite of integration tests which takes many hours to run. It comes in the format of two scripts: -- Run `make generate_bulk_test_results` to run the algorithm over a collection of 3000 soil pits, which will accumulate the results in a log file. -- Run `RESULTS_FILE=$RESULTS_FILE make process_bulk_test_results` to view statistics calculated over that log file. +- Run `make generate_bulk_test_results_us` or `make generate_bulk_test_results_global` to run the algorithm over a collection of thousands soil pits with soil IDs given by trained data collectors, which will accumulate the results in a log file. This can take several hours or potentially need to run overnight due (especially the US tests are slow due to the speed of external API services). +- Run `RESULTS_FILE=$RESULTS_FILE make process_bulk_test_results_us` or `RESULTS_FILE=$RESULTS_FILE make process_bulk_test_results_global` to view statistics calculated over that log file. This can be run concurrently with `generate_bulk_test_results` to see statistics over the soil pits which have been run so far. +- It has been nice to have these as two separate scripts because then you can iterate on the processing and display of statistics without interrupting the data collection. +- It would be of value to also be able to run these US tests against snapshotted API data, it would just be much more onerous to collect and update the data. ## Acknowledgements -- Beaudette, D., Roudier, P., Brown, A. (2023). [aqp: Algorithms for Quantitative Pedology](https://CRAN.R-project.org/package=aqp). R package version 2.0. +- Beaudette, D., Roudier, P., Brown, A. (2023). [aqp: Algorithms for Quantitative Pedology](https://CRAN.R-project.org/package=aqp). R package version 2.0. -- Beaudette, D.E., Roudier, P., O'Geen, A.T. [Algorithms for quantitative pedology: A toolkit for soil scientists, Computers & Geosciences](http://dx.doi.org/10.1016/j.cageo.2012.10.020), Volume 52, March 2013, Pages 258-268, ISSN 0098-3004. +- Beaudette, D.E., Roudier, P., O'Geen, A.T. [Algorithms for quantitative pedology: A toolkit for soil scientists, Computers & Geosciences](http://dx.doi.org/10.1016/j.cageo.2012.10.020), Volume 52, March 2013, Pages 258-268, ISSN 0098-3004. -- soilDB: Beaudette, D., Skovlin, J., Roecker, S., Brown, A. (2024). [soilDB: Soil Database Interface](https://CRAN.R-project.org/package=soilDB). R package version 2.8.3. +- soilDB: Beaudette, D., Skovlin, J., Roecker, S., Brown, A. (2024). [soilDB: Soil Database Interface](https://CRAN.R-project.org/package=soilDB). R package version 2.8.3. diff --git a/pyproject.toml b/pyproject.toml index 5a102d7..ee9fc82 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,6 +24,10 @@ extend-ignore = ["E203"] [tool.pytest.ini_options] log_cli = true log_cli_level = "INFO" +markers = [ + "integration: runs against live external APIs; does not validate output", + "api_snapshot: captures and compares API response snapshots against live APIs", +] [tool.setuptools.dynamic] dependencies = { file = ["requirements/base.in"] } diff --git a/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[33.81246789,-101.9733687].json b/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[33.81246789,-101.9733687].json new file mode 100644 index 0000000..209f898 --- /dev/null +++ b/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[33.81246789,-101.9733687].json @@ -0,0 +1,3276 @@ +{ + "elev": { + "location": { + "spatialReference": { + "latestWkid": 4326, + "wkid": 4326 + }, + "x": -101.9733687, + "y": 33.81246789 + }, + "locationId": 0, + "rasterId": 110216, + "resolution": 1, + "value": "1023.419860840" + }, + "soilweb": { + "ESD": [ + { + "cokey": 27108854, + "ecoclassid": "R077CY022TX", + "ecoclassname": "Deep Hardland 16-21 PZ", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/077C/R077CY022TX" + }, + { + "cokey": 27108855, + "ecoclassid": "R077CY022TX", + "ecoclassname": "Deep Hardland 16-21 PZ", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/077C/R077CY022TX" + }, + { + "cokey": 27108856, + "ecoclassid": "R077CY022TX", + "ecoclassname": "Deep Hardland 16-21 PZ", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/077C/R077CY022TX" + }, + { + "cokey": 27108857, + "ecoclassid": "R077CY022TX", + "ecoclassname": "Deep Hardland 16-21 PZ", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/077C/R077CY022TX" + }, + { + "cokey": 27108889, + "ecoclassid": "R077CY022TX", + "ecoclassname": "Deep Hardland 16-21 PZ", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/077C/R077CY022TX" + }, + { + "cokey": 27108890, + "ecoclassid": "R077CY036TX", + "ecoclassname": "Sandy Loam 16-21 PZ", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/077C/R077CY036TX" + }, + { + "cokey": 27108891, + "ecoclassid": "R077CY022TX", + "ecoclassname": "Deep Hardland 16-21 PZ", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/077C/R077CY022TX" + }, + { + "cokey": 27108892, + "ecoclassid": "R077CY022TX", + "ecoclassname": "Deep Hardland 16-21 PZ", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/077C/R077CY022TX" + }, + { + "cokey": 27108933, + "ecoclassid": "R077CY027TX", + "ecoclassname": "Playa 16-21 PZ", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/077C/R077CY027TX" + }, + { + "cokey": 27108934, + "ecoclassid": "R077CY027TX", + "ecoclassname": "Playa 16-21 PZ", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/077C/R077CY027TX" + }, + { + "cokey": 27108935, + "ecoclassid": "R077CY022TX", + "ecoclassname": "Deep Hardland 16-21 PZ", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/077C/R077CY022TX" + } + ], + "OSD_morph": [ + { + "bottom": 30, + "cf_class": null, + "cielab_a": 8.4262264831152, + "cielab_b": 17.7914688425336, + "cielab_l": 40.9205774603864, + "hzname": "Ap", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 4, + "series": "acuff", + "srgb_b": 0.265795247113725, + "srgb_g": 0.355962289511748, + "srgb_r": 0.467514082120659, + "texture_class": "loam", + "top": 0 + }, + { + "bottom": 51, + "cf_class": null, + "cielab_a": 13.3742743259118, + "cielab_b": 20.7240750460895, + "cielab_l": 40.922656817286, + "hzname": "Bt1", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 4, + "series": "acuff", + "srgb_b": 0.247730598344407, + "srgb_g": 0.343312649829985, + "srgb_r": 0.498562877493358, + "texture_class": "sandy clay loam", + "top": 30 + }, + { + "bottom": 71, + "cf_class": null, + "cielab_a": 12.0187023642853, + "cielab_b": 20.083427492453, + "cielab_l": 51.4005810940307, + "hzname": "Bt2", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 5, + "series": "acuff", + "srgb_b": 0.348301053829705, + "srgb_g": 0.447730036366018, + "srgb_r": 0.600629634680312, + "texture_class": "sandy clay loam", + "top": 51 + }, + { + "bottom": 97, + "cf_class": null, + "cielab_a": 18.0060166135125, + "cielab_b": 31.0102462439034, + "cielab_l": 51.4162585431746, + "hzname": "Bt3", + "matrix_dry_color_chroma": 6, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 5, + "series": "acuff", + "srgb_b": 0.274904528537146, + "srgb_g": 0.430132488944993, + "srgb_r": 0.648843794358158, + "texture_class": "sandy clay loam", + "top": 71 + }, + { + "bottom": 147, + "cf_class": null, + "cielab_a": 10.7267670669425, + "cielab_b": 20.638173911642, + "cielab_l": 81.3406198925846, + "hzname": "Btkk", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 8, + "series": "acuff", + "srgb_b": 0.643696466530091, + "srgb_g": 0.760559965431755, + "srgb_r": 0.92409519664579, + "texture_class": "sandy clay loam", + "top": 97 + }, + { + "bottom": 203, + "cf_class": null, + "cielab_a": 17.1743165441653, + "cielab_b": 30.7950425431077, + "cielab_l": 61.5975233168624, + "hzname": "Btk", + "matrix_dry_color_chroma": 6, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 6, + "series": "acuff", + "srgb_b": 0.37262697463063, + "srgb_g": 0.534154840451902, + "srgb_r": 0.757827873661392, + "texture_class": "sandy clay loam", + "top": 147 + }, + { + "bottom": 28, + "cf_class": null, + "cielab_a": 10.8054115811398, + "cielab_b": 23.453599890202, + "cielab_l": 40.929538801321, + "hzname": "Ap", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 4, + "series": "amarillo", + "srgb_b": 0.229243737407669, + "srgb_g": 0.349362062820934, + "srgb_r": 0.488397126185639, + "texture_class": "fine sandy loam", + "top": 0 + }, + { + "bottom": 69, + "cf_class": null, + "cielab_a": 13.3742743259118, + "cielab_b": 20.7240750460895, + "cielab_l": 40.922656817286, + "hzname": "Bt", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 4, + "series": "amarillo", + "srgb_b": 0.247730598344407, + "srgb_g": 0.343312649829985, + "srgb_r": 0.498562877493358, + "texture_class": "sandy clay loam", + "top": 28 + }, + { + "bottom": 98, + "cf_class": null, + "cielab_a": 18.0060166135125, + "cielab_b": 31.0102462439034, + "cielab_l": 51.4162585431746, + "hzname": "Btk", + "matrix_dry_color_chroma": 6, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 5, + "series": "amarillo", + "srgb_b": 0.274904528537146, + "srgb_g": 0.430132488944993, + "srgb_r": 0.648843794358158, + "texture_class": "sandy clay loam", + "top": 69 + }, + { + "bottom": 142, + "cf_class": null, + "cielab_a": 8.28042734461687, + "cielab_b": 14.8642515731635, + "cielab_l": 71.5386661270513, + "hzname": "Btkk", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 7, + "series": "amarillo", + "srgb_b": 0.582954544272199, + "srgb_g": 0.663509608100908, + "srgb_r": 0.785571947577431, + "texture_class": "sandy clay loam", + "top": 98 + }, + { + "bottom": 216, + "cf_class": null, + "cielab_a": 18.0060166135125, + "cielab_b": 31.0102462439034, + "cielab_l": 51.4162585431746, + "hzname": "B'tk1", + "matrix_dry_color_chroma": 6, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 5, + "series": "amarillo", + "srgb_b": 0.274904528537146, + "srgb_g": 0.430132488944993, + "srgb_r": 0.648843794358158, + "texture_class": "sandy clay loam", + "top": 142 + }, + { + "bottom": 251, + "cf_class": null, + "cielab_a": 12.0187023642853, + "cielab_b": 20.083427492453, + "cielab_l": 51.4005810940307, + "hzname": "B'tk2", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 5, + "series": "amarillo", + "srgb_b": 0.348301053829705, + "srgb_g": 0.447730036366018, + "srgb_r": 0.600629634680312, + "texture_class": "sandy clay loam", + "top": 216 + }, + { + "bottom": 15, + "cf_class": null, + "cielab_a": 3.65979819919923, + "cielab_b": 13.2199440544513, + "cielab_l": 40.9141543373182, + "hzname": "Ap", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "estacado", + "srgb_b": 0.294406483459129, + "srgb_g": 0.367561696190658, + "srgb_r": 0.432479607618406, + "texture_class": "clay loam", + "top": 0 + }, + { + "bottom": 48, + "cf_class": null, + "cielab_a": 5.59646217145787, + "cielab_b": 19.7307610177311, + "cielab_l": 40.9264484899888, + "hzname": "Bt1", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "estacado", + "srgb_b": 0.252653362523879, + "srgb_g": 0.362204899697049, + "srgb_r": 0.454695384023485, + "texture_class": "clay loam", + "top": 15 + }, + { + "bottom": 97, + "cf_class": null, + "cielab_a": 10.8054115811398, + "cielab_b": 23.453599890202, + "cielab_l": 40.929538801321, + "hzname": "Bt2", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 4, + "series": "estacado", + "srgb_b": 0.229243737407669, + "srgb_g": 0.349362062820934, + "srgb_r": 0.488397126185639, + "texture_class": "clay loam", + "top": 48 + }, + { + "bottom": 127, + "cf_class": null, + "cielab_a": 12.9521308940078, + "cielab_b": 34.4836283202539, + "cielab_l": 71.5769686331803, + "hzname": "Btk", + "matrix_dry_color_chroma": 6, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 7, + "series": "estacado", + "srgb_b": 0.442840727735108, + "srgb_g": 0.64789525906633, + "srgb_r": 0.851573605300005, + "texture_class": "clay loam", + "top": 97 + }, + { + "bottom": 203, + "cf_class": null, + "cielab_a": 3.85503664928699, + "cielab_b": 11.5581587634576, + "cielab_l": 81.3229749912725, + "hzname": "Btkk", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 8, + "series": "estacado", + "srgb_b": 0.708628670715425, + "srgb_g": 0.779827530553503, + "srgb_r": 0.855246486413984, + "texture_class": "clay loam", + "top": 127 + }, + { + "bottom": 20, + "cf_class": null, + "cielab_a": 5.75265137752021, + "cielab_b": 11.6701083904344, + "cielab_l": 40.9091053785084, + "hzname": "Ap", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 4, + "series": "friona", + "srgb_b": 0.304639193182857, + "srgb_g": 0.363184577749211, + "srgb_r": 0.441777408935627, + "texture_class": "loam", + "top": 0 + }, + { + "bottom": 38, + "cf_class": null, + "cielab_a": 5.75265137752021, + "cielab_b": 11.6701083904344, + "cielab_l": 40.9091053785084, + "hzname": "Bt1", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 4, + "series": "friona", + "srgb_b": 0.304639193182857, + "srgb_g": 0.363184577749211, + "srgb_r": 0.441777408935627, + "texture_class": "sandy clay loam", + "top": 20 + }, + { + "bottom": 66, + "cf_class": null, + "cielab_a": 18.0060166135125, + "cielab_b": 31.0102462439034, + "cielab_l": 51.4162585431746, + "hzname": "Bt2", + "matrix_dry_color_chroma": 6, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 5, + "series": "friona", + "srgb_b": 0.274904528537146, + "srgb_g": 0.430132488944993, + "srgb_r": 0.648843794358158, + "texture_class": "sandy clay loam", + "top": 38 + }, + { + "bottom": 79, + "cf_class": null, + "cielab_a": 18.0060166135125, + "cielab_b": 31.0102462439034, + "cielab_l": 51.4162585431746, + "hzname": "Btk", + "matrix_dry_color_chroma": 6, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 5, + "series": "friona", + "srgb_b": 0.274904528537146, + "srgb_g": 0.430132488944993, + "srgb_r": 0.648843794358158, + "texture_class": "sandy clay loam", + "top": 66 + }, + { + "bottom": 89, + "cf_class": null, + "cielab_a": 3.85503664928699, + "cielab_b": 11.5581587634576, + "cielab_l": 81.3229749912725, + "hzname": "Bkkm", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 8, + "series": "friona", + "srgb_b": 0.708628670715425, + "srgb_g": 0.779827530553503, + "srgb_r": 0.855246486413984, + "texture_class": null, + "top": 79 + }, + { + "bottom": 150, + "cf_class": null, + "cielab_a": 3.85503664928699, + "cielab_b": 11.5581587634576, + "cielab_l": 81.3229749912725, + "hzname": "B'tk1", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 8, + "series": "friona", + "srgb_b": 0.708628670715425, + "srgb_g": 0.779827530553503, + "srgb_r": 0.855246486413984, + "texture_class": "sandy clay loam", + "top": 89 + }, + { + "bottom": 203, + "cf_class": null, + "cielab_a": 11.0716426150657, + "cielab_b": 20.0812736167551, + "cielab_l": 71.5490226544025, + "hzname": "B'tk2", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 7, + "series": "friona", + "srgb_b": 0.546398115198872, + "srgb_g": 0.655369886344904, + "srgb_r": 0.814781627254368, + "texture_class": "sandy clay loam", + "top": 150 + }, + { + "bottom": 10, + "cf_class": null, + "cielab_a": 3.86763232791851, + "cielab_b": 12.0707341532888, + "cielab_l": 30.2538633743581, + "hzname": "A1", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 3, + "series": "lockney", + "srgb_b": 0.20664306477238, + "srgb_g": 0.268954612150501, + "srgb_r": 0.328393328197016, + "texture_class": "clay", + "top": 0 + }, + { + "bottom": 23, + "cf_class": null, + "cielab_a": 3.65979819919923, + "cielab_b": 13.2199440544513, + "cielab_l": 40.9141543373182, + "hzname": "A2", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "lockney", + "srgb_b": 0.294406483459129, + "srgb_g": 0.367561696190658, + "srgb_r": 0.432479607618406, + "texture_class": "clay", + "top": 10 + }, + { + "bottom": 43, + "cf_class": null, + "cielab_a": 3.65979819919923, + "cielab_b": 13.2199440544513, + "cielab_l": 40.9141543373182, + "hzname": "Bw", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "lockney", + "srgb_b": 0.294406483459129, + "srgb_g": 0.367561696190658, + "srgb_r": 0.432479607618406, + "texture_class": "clay", + "top": 23 + }, + { + "bottom": 79, + "cf_class": null, + "cielab_a": 3.22690261250264, + "cielab_b": 12.65785928239, + "cielab_l": 51.3902579549971, + "hzname": "Bss1", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "lockney", + "srgb_b": 0.396431450662527, + "srgb_g": 0.470047004516309, + "srgb_r": 0.534105039939954, + "texture_class": "clay", + "top": 43 + }, + { + "bottom": 170, + "cf_class": null, + "cielab_a": 3.22690261250264, + "cielab_b": 12.65785928239, + "cielab_l": 51.3902579549971, + "hzname": "Bss2", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "lockney", + "srgb_b": 0.396431450662527, + "srgb_g": 0.470047004516309, + "srgb_r": 0.534105039939954, + "texture_class": "clay", + "top": 79 + }, + { + "bottom": 203, + "cf_class": null, + "cielab_a": 2.89064271156414, + "cielab_b": 13.064616880291, + "cielab_l": 61.5701956263403, + "hzname": "Bkss", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "lockney", + "srgb_b": 0.493496194704249, + "srgb_g": 0.573230189582846, + "srgb_r": 0.638561136802744, + "texture_class": "clay", + "top": 170 + }, + { + "bottom": 10, + "cf_class": null, + "cielab_a": 1.46898546730889, + "cielab_b": 6.1399480339165, + "cielab_l": 40.8982555194042, + "hzname": "A1", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "mclean", + "srgb_b": 0.339204032769121, + "srgb_g": 0.373572298991998, + "srgb_r": 0.403971386567422, + "texture_class": "clay", + "top": 0 + }, + { + "bottom": 18, + "cf_class": null, + "cielab_a": 1.46898546730889, + "cielab_b": 6.1399480339165, + "cielab_l": 40.8982555194042, + "hzname": "A2", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "mclean", + "srgb_b": 0.339204032769121, + "srgb_g": 0.373572298991998, + "srgb_r": 0.403971386567422, + "texture_class": "clay", + "top": 10 + }, + { + "bottom": 38, + "cf_class": null, + "cielab_a": 1.46898546730889, + "cielab_b": 6.1399480339165, + "cielab_l": 40.8982555194042, + "hzname": "Bss1", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "mclean", + "srgb_b": 0.339204032769121, + "srgb_g": 0.373572298991998, + "srgb_r": 0.403971386567422, + "texture_class": "clay", + "top": 18 + }, + { + "bottom": 53, + "cf_class": null, + "cielab_a": 1.46898546730889, + "cielab_b": 6.1399480339165, + "cielab_l": 40.8982555194042, + "hzname": "Bss2", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "mclean", + "srgb_b": 0.339204032769121, + "srgb_g": 0.373572298991998, + "srgb_r": 0.403971386567422, + "texture_class": "clay", + "top": 38 + }, + { + "bottom": 94, + "cf_class": null, + "cielab_a": 1.46898546730889, + "cielab_b": 6.1399480339165, + "cielab_l": 40.8982555194042, + "hzname": "Bss3", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "mclean", + "srgb_b": 0.339204032769121, + "srgb_g": 0.373572298991998, + "srgb_r": 0.403971386567422, + "texture_class": "clay", + "top": 53 + }, + { + "bottom": 107, + "cf_class": null, + "cielab_a": 1.54487642899143, + "cielab_b": 14.0972764406135, + "cielab_l": 40.9175856659998, + "hzname": "Bss4", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 4, + "series": "mclean", + "srgb_b": 0.288440933557597, + "srgb_g": 0.37196882996177, + "srgb_r": 0.421617578014665, + "texture_class": "clay", + "top": 94 + }, + { + "bottom": 150, + "cf_class": null, + "cielab_a": 1.54487642899143, + "cielab_b": 14.0972764406135, + "cielab_l": 40.9175856659998, + "hzname": "Bss5", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 4, + "series": "mclean", + "srgb_b": 0.288440933557597, + "srgb_g": 0.37196882996177, + "srgb_r": 0.421617578014665, + "texture_class": "clay", + "top": 107 + }, + { + "bottom": 183, + "cf_class": null, + "cielab_a": 3.22690261250264, + "cielab_b": 12.65785928239, + "cielab_l": 51.3902579549971, + "hzname": "Bkss1", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "mclean", + "srgb_b": 0.396431450662527, + "srgb_g": 0.470047004516309, + "srgb_r": 0.534105039939954, + "texture_class": "clay", + "top": 150 + }, + { + "bottom": 203, + "cf_class": null, + "cielab_a": 3.22690261250264, + "cielab_b": 12.65785928239, + "cielab_l": 51.3902579549971, + "hzname": "Bkss2", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "mclean", + "srgb_b": 0.396431450662527, + "srgb_g": 0.470047004516309, + "srgb_r": 0.534105039939954, + "texture_class": "clay", + "top": 183 + }, + { + "bottom": 224, + "cf_class": null, + "cielab_a": 11.5287289701211, + "cielab_b": 19.945123635805, + "cielab_l": 61.5800946425975, + "hzname": "2Bk", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 6, + "series": "mclean", + "srgb_b": 0.447454988119342, + "srgb_g": 0.550964051886174, + "srgb_r": 0.707333768098213, + "texture_class": "clay", + "top": 203 + }, + { + "bottom": 20, + "cf_class": null, + "cielab_a": 5.75265137752021, + "cielab_b": 11.6701083904344, + "cielab_l": 40.9091053785084, + "hzname": "A", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 4, + "series": "olton", + "srgb_b": 0.304639193182857, + "srgb_g": 0.363184577749211, + "srgb_r": 0.441777408935627, + "texture_class": "clay loam", + "top": 0 + }, + { + "bottom": 38, + "cf_class": null, + "cielab_a": 5.75265137752021, + "cielab_b": 11.6701083904344, + "cielab_l": 40.9091053785084, + "hzname": "Bt1", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 4, + "series": "olton", + "srgb_b": 0.304639193182857, + "srgb_g": 0.363184577749211, + "srgb_r": 0.441777408935627, + "texture_class": "clay loam", + "top": 20 + }, + { + "bottom": 79, + "cf_class": null, + "cielab_a": 12.0187023642853, + "cielab_b": 20.083427492453, + "cielab_l": 51.4005810940307, + "hzname": "Bt2", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 5, + "series": "olton", + "srgb_b": 0.348301053829705, + "srgb_g": 0.447730036366018, + "srgb_r": 0.600629634680312, + "texture_class": "clay loam", + "top": 38 + }, + { + "bottom": 122, + "cf_class": null, + "cielab_a": 12.0187023642853, + "cielab_b": 20.083427492453, + "cielab_l": 51.4005810940307, + "hzname": "Btk1", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 5, + "series": "olton", + "srgb_b": 0.348301053829705, + "srgb_g": 0.447730036366018, + "srgb_r": 0.600629634680312, + "texture_class": "clay loam", + "top": 79 + }, + { + "bottom": 191, + "cf_class": null, + "cielab_a": 8.28042734461687, + "cielab_b": 14.8642515731635, + "cielab_l": 71.5386661270513, + "hzname": "Btk2", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 7, + "series": "olton", + "srgb_b": 0.582954544272199, + "srgb_g": 0.663509608100908, + "srgb_r": 0.785571947577431, + "texture_class": "clay loam", + "top": 122 + }, + { + "bottom": 251, + "cf_class": null, + "cielab_a": 21.3849631140196, + "cielab_b": 26.25444782476, + "cielab_l": 51.4054637459216, + "hzname": "Btk3", + "matrix_dry_color_chroma": 6, + "matrix_dry_color_hue": "2.5YR", + "matrix_dry_color_value": 5, + "series": "olton", + "srgb_b": 0.308562250927243, + "srgb_g": 0.421289082188129, + "srgb_r": 0.661372868141787, + "texture_class": "clay loam", + "top": 191 + }, + { + "bottom": 13, + "cf_class": null, + "cielab_a": 5.75265137752021, + "cielab_b": 11.6701083904344, + "cielab_l": 40.9091053785084, + "hzname": "Ap", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 4, + "series": "pullman", + "srgb_b": 0.304639193182857, + "srgb_g": 0.363184577749211, + "srgb_r": 0.441777408935627, + "texture_class": "clay loam", + "top": 0 + }, + { + "bottom": 46, + "cf_class": null, + "cielab_a": 5.75265137752021, + "cielab_b": 11.6701083904344, + "cielab_l": 40.9091053785084, + "hzname": "Bt1", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 4, + "series": "pullman", + "srgb_b": 0.304639193182857, + "srgb_g": 0.363184577749211, + "srgb_r": 0.441777408935627, + "texture_class": "clay loam", + "top": 13 + }, + { + "bottom": 84, + "cf_class": null, + "cielab_a": 8.4262264831152, + "cielab_b": 17.7914688425336, + "cielab_l": 40.9205774603864, + "hzname": "Bt2", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 4, + "series": "pullman", + "srgb_b": 0.265795247113725, + "srgb_g": 0.355962289511748, + "srgb_r": 0.467514082120659, + "texture_class": "silty clay loam", + "top": 46 + }, + { + "bottom": 132, + "cf_class": null, + "cielab_a": 9.84655820146585, + "cielab_b": 22.5907048453292, + "cielab_l": 51.407225870377, + "hzname": "Btk1", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 5, + "series": "pullman", + "srgb_b": 0.330951470562884, + "srgb_g": 0.452732818442716, + "srgb_r": 0.592109859281186, + "texture_class": "clay loam", + "top": 84 + }, + { + "bottom": 168, + "cf_class": null, + "cielab_a": 18.0060166135125, + "cielab_b": 31.0102462439034, + "cielab_l": 51.4162585431746, + "hzname": "Btk2", + "matrix_dry_color_chroma": 6, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 5, + "series": "pullman", + "srgb_b": 0.274904528537146, + "srgb_g": 0.430132488944993, + "srgb_r": 0.648843794358158, + "texture_class": "clay", + "top": 132 + }, + { + "bottom": 203, + "cf_class": null, + "cielab_a": 16.6077140976315, + "cielab_b": 30.7607172649498, + "cielab_l": 71.5673632351567, + "hzname": "Btk3", + "matrix_dry_color_chroma": 6, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 7, + "series": "pullman", + "srgb_b": 0.470867393568448, + "srgb_g": 0.638690987350245, + "srgb_r": 0.867986063735077, + "texture_class": "clay loam", + "top": 168 + }, + { + "bottom": 8, + "cf_class": null, + "cielab_a": 1.46898546730889, + "cielab_b": 6.1399480339165, + "cielab_l": 40.8982555194042, + "hzname": "A1", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "randall", + "srgb_b": 0.339204032769121, + "srgb_g": 0.373572298991998, + "srgb_r": 0.403971386567422, + "texture_class": "clay", + "top": 0 + }, + { + "bottom": 23, + "cf_class": null, + "cielab_a": 1.46898546730889, + "cielab_b": 6.1399480339165, + "cielab_l": 40.8982555194042, + "hzname": "A2", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "randall", + "srgb_b": 0.339204032769121, + "srgb_g": 0.373572298991998, + "srgb_r": 0.403971386567422, + "texture_class": "clay", + "top": 8 + }, + { + "bottom": 43, + "cf_class": null, + "cielab_a": 1.86260532006871, + "cielab_b": 6.77440192712013, + "cielab_l": 51.3762468196222, + "hzname": "Bw", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "randall", + "srgb_b": 0.435259851904397, + "srgb_g": 0.474245896402447, + "srgb_r": 0.511514594063427, + "texture_class": "clay", + "top": 23 + }, + { + "bottom": 97, + "cf_class": null, + "cielab_a": 1.86260532006871, + "cielab_b": 6.77440192712013, + "cielab_l": 51.3762468196222, + "hzname": "Bss1", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "randall", + "srgb_b": 0.435259851904397, + "srgb_g": 0.474245896402447, + "srgb_r": 0.511514594063427, + "texture_class": "clay", + "top": 43 + }, + { + "bottom": 130, + "cf_class": null, + "cielab_a": 0.860762301874318, + "cielab_b": 7.41348726140649, + "cielab_l": 51.3786357585791, + "hzname": "Bss2", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 5, + "series": "randall", + "srgb_b": 0.430895910707074, + "srgb_g": 0.476305112231811, + "srgb_r": 0.506542413390283, + "texture_class": "clay", + "top": 97 + }, + { + "bottom": 157, + "cf_class": null, + "cielab_a": 0.860762301874318, + "cielab_b": 7.41348726140649, + "cielab_l": 51.3786357585791, + "hzname": "Bss3", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 5, + "series": "randall", + "srgb_b": 0.430895910707074, + "srgb_g": 0.476305112231811, + "srgb_r": 0.506542413390283, + "texture_class": "clay", + "top": 130 + }, + { + "bottom": 203, + "cf_class": null, + "cielab_a": 1.32004586474704, + "cielab_b": 13.7174249230097, + "cielab_l": 51.3940899501304, + "hzname": "Bkss", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 5, + "series": "randall", + "srgb_b": 0.389079428537392, + "srgb_g": 0.474084046104631, + "srgb_r": 0.524359621723063, + "texture_class": "clay", + "top": 157 + } + ], + "OSD_narrative": [ + { + "brief_narrative": "The Acuff series consists of very deep, well drained, moderately permeable soils. These soils formed in loamy eolian sediments in the Blackwater Draw Formation of Pleistocene age. Acuff soils are on nearly level to gently sloping plains and playa slopes. Slope ranges from 0 to 5 percent. Mean annual precipitation is about 483 mm (19 in) and the mean annual air temperature is about 16 degrees C (60 degrees F).", + "series": "acuff" + }, + { + "brief_narrative": "The Amarillo series consists of very deep, well drained, moderately permeable soils. These soils formed in loamy eolian deposits from the Blackwater Draw Formation of Pleistocene age. Amarillo soils are on nearly level to gently sloping plains and playa slopes. Slope ranges from 0 to 5 percent. Mean annual precipitation is 483 mm (19 in) and the mean annual air temperature is 16 degrees C (61 degrees F)", + "series": "amarillo" + }, + { + "brief_narrative": "The Estacado series consists of very deep, well drained, moderately slowly permeable soils that formed in calcareous, loamy eolian deposits of the Blackwater Draw Formation of Pleistocene age. These soils are on nearly level to gently sloping plains and playa slopes. Slope ranges from 0 to 5 percent. Mean annual precipitation is 483 mm (19 in) and mean annual air temperature is 16 degrees C (61 degrees F).", + "series": "estacado" + }, + { + "brief_narrative": "The Friona series consists of soils that are moderately deep to a petrocalcic horizon. They are well drained, moderately permeable soils that formed in loamy eolian sediments from the Blackwater Draw Formation of Pleistocene age. These soils are on nearly level to gently sloping plains. Slope ranges from 0 to 3 percent. Mean annual precipitation is about 483 mm (19 in), and mean annual air temperature is about 16 degrees C (61 degrees F)", + "series": "friona" + }, + { + "brief_narrative": "The Lockney series consists of very deep, moderately well drained, very slowly permeable soils that formed in clayey lacustrine deposits of Quaternary age. These nearly level soils are on a playa step in large playa basins. Slope ranges from 0 to 1 percent. Mean annual precipitation is 483 mm (19 inches) and mean annual temperature is 16 degrees C (61 F).", + "series": "lockney" + }, + { + "brief_narrative": "The McLean series consists of very deep, somewhat poorly drained, very slowly permeable soils that formed in clayey lacustrine deposits of Quaternary age. These nearly level soils are on the floor of playas 1.5 to 23 m (5 to 75 ft) below the surrounding plain and range in size from a few acres to more than 200 acres. Slope ranges from 0 to 1 percent. Mean annual precipitation is 483 mm (19 in), and mean annual temperature is 16 degrees C (61 degrees F).", + "series": "mclean" + }, + { + "brief_narrative": "The Olton series consists of very deep, well drained, moderately slowly permeable soils that formed in clayey, calcareous eolian sediments in the\nBlackwater Draw Formation of Pleistocene age. These soils are on nearly level to gently sloping plains and upper side slopes of playas and draws. Slope ranges from 0 to 5 percent. Mean annual precipitation is 483 mm (19 in), and mean annual temperature is 15 degrees C (59 degrees F).", + "series": "olton" + }, + { + "brief_narrative": "The Pullman series consists of very deep, well drained, slowly permeable soils that formed in clayey eolian deposits from the Blackwater Draw Formation of Pleistocene age. These soils occur on nearly level to very gently sloping plains or playa slopes. Slope ranges from 0 to 3 percent. The mean annual precipitation is about 483 mm (19 in) and the mean annual temperature is about 16 degrees C (60 degrees F).", + "series": "pullman" + }, + { + "brief_narrative": "The Randall series consists of very deep, poorly drained, very slowly permeable soils that formed in clayey lacustrine sediments derived from the Blackwater Draw Formation of Pleistocene age. These nearly level soils are on the floor of playa basins 3 to 15 m (10 to 50 ft) below the surrounding plain and range in size from 10 to more than 150 acres. Slope ranges from 0 to 1 percent. Mean annual precipitation is 483 mm (19 in), and mean annual temperature is 15 degrees C (59 degrees F).", + "series": "randall" + } + ], + "hz": [ + { + "cec7_h": 30.9, + "cec7_l": 22.1, + "cec7_r": 25.3, + "chkey": 80954724, + "claytotal_h": 38, + "claytotal_l": 27, + "claytotal_r": 30.5, + "cokey": 27108854, + "dbovendry_h": 1.83, + "dbovendry_l": 1.47, + "dbovendry_r": 1.76, + "ec_h": 1, + "ec_l": 0, + "ec_r": 0.5, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 20, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 6, + "lep_l": 3.7, + "lep_r": 4.5, + "mukey": 369851, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.2, + "sandtotal_h": 45, + "sandtotal_l": 25, + "sandtotal_r": 34.3, + "silttotal_h": 48, + "silttotal_l": 19.7, + "silttotal_r": 35.2, + "total_frag_volume": 0, + "wfifteenbar_h": 28.5, + "wfifteenbar_l": 19.5, + "wfifteenbar_r": 23.5, + "wthirdbar_h": 37.3, + "wthirdbar_l": 32.6, + "wthirdbar_r": 34.8 + }, + { + "cec7_h": 22.7, + "cec7_l": 11.4, + "cec7_r": 17.4, + "chkey": 80954853, + "claytotal_h": 27, + "claytotal_l": 13, + "claytotal_r": 20.2, + "cokey": 27108889, + "dbovendry_h": 1.6, + "dbovendry_l": 1.31, + "dbovendry_r": 1.54, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 30, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 3.8, + "lep_l": 1.3, + "lep_r": 2.5, + "mukey": 369839, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.2, + "sandtotal_h": 52, + "sandtotal_l": 35, + "sandtotal_r": 49.1, + "silttotal_h": 46.2, + "silttotal_l": 28, + "silttotal_r": 30.7, + "total_frag_volume": 0, + "wfifteenbar_h": 19.3, + "wfifteenbar_l": 9.5, + "wfifteenbar_r": 14.8, + "wthirdbar_h": 32.5, + "wthirdbar_l": 25.3, + "wthirdbar_r": 29.6 + }, + { + "cec7_h": 37.8, + "cec7_l": 21.2, + "cec7_r": 30.2, + "chkey": 80954723, + "claytotal_h": 50, + "claytotal_l": 27, + "claytotal_r": 38.9, + "cokey": 27108854, + "dbovendry_h": 1.86, + "dbovendry_l": 1.53, + "dbovendry_r": 1.74, + "ec_h": 1, + "ec_l": 0, + "ec_r": 0.5, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 79, + "hzdept_r": 20, + "hzname": "Bt", + "lep_h": 8.5, + "lep_l": 3.5, + "lep_r": 6, + "mukey": 369851, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.6, + "sandtotal_h": 45, + "sandtotal_l": 25, + "sandtotal_r": 33.5, + "silttotal_h": 48, + "silttotal_l": 6.1, + "silttotal_r": 27.6, + "total_frag_volume": 0, + "wfifteenbar_h": 32.4, + "wfifteenbar_l": 17.2, + "wfifteenbar_r": 25, + "wthirdbar_h": 39, + "wthirdbar_l": 31.2, + "wthirdbar_r": 35.6 + }, + { + "cec7_h": 25, + "cec7_l": 16.4, + "cec7_r": 22.2, + "chkey": 80954854, + "claytotal_h": 32, + "claytotal_l": 20, + "claytotal_r": 27.6, + "cokey": 27108889, + "dbovendry_h": 1.66, + "dbovendry_l": 1.57, + "dbovendry_r": 1.62, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 97, + "hzdept_r": 30, + "hzname": "Bt", + "lep_h": 4.6, + "lep_l": 2.3, + "lep_r": 3.8, + "mukey": 369839, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 8.2, + "sandtotal_h": 60, + "sandtotal_l": 30, + "sandtotal_r": 48.9, + "silttotal_h": 44.5, + "silttotal_l": 8, + "silttotal_r": 23.5, + "total_frag_volume": 0, + "wfifteenbar_h": 21.4, + "wfifteenbar_l": 13.2, + "wfifteenbar_r": 18.1, + "wthirdbar_h": 27.7, + "wthirdbar_l": 22.2, + "wthirdbar_r": 25.7 + }, + { + "cec7_h": 26.5, + "cec7_l": 20.3, + "cec7_r": 26.2, + "chkey": 80954725, + "claytotal_h": 40, + "claytotal_l": 27, + "claytotal_r": 38.1, + "cokey": 27108854, + "dbovendry_h": 1.67, + "dbovendry_l": 1.47, + "dbovendry_r": 1.64, + "ec_h": 1, + "ec_l": 0, + "ec_r": 0.5, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 122, + "hzdept_r": 79, + "hzname": "Btk1", + "lep_h": 5.5, + "lep_l": 2.8, + "lep_r": 4.9, + "mukey": 369851, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8.3, + "sandtotal_h": 45, + "sandtotal_l": 10, + "sandtotal_r": 36.1, + "silttotal_h": 50, + "silttotal_l": 15, + "silttotal_r": 25.8, + "total_frag_volume": 1, + "wfifteenbar_h": 24.7, + "wfifteenbar_l": 16.2, + "wfifteenbar_r": 23.2, + "wthirdbar_h": 35.5, + "wthirdbar_l": 30, + "wthirdbar_r": 34.4 + }, + { + "cec7_h": 11.4, + "cec7_l": 8.4, + "cec7_r": 8.4, + "chkey": 80954855, + "claytotal_h": 40, + "claytotal_l": 25, + "claytotal_r": 32.1, + "cokey": 27108889, + "dbovendry_h": 1.65, + "dbovendry_l": 1.45, + "dbovendry_r": 1.53, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 147, + "hzdept_r": 97, + "hzname": "Btkk", + "lep_h": 2.3, + "lep_l": 0, + "lep_r": 1, + "mukey": 369839, + "ph1to1h2o_h": 9, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8.4, + "sandtotal_h": 50, + "sandtotal_l": 25, + "sandtotal_r": 48.7, + "silttotal_h": 39.2, + "silttotal_l": 10, + "silttotal_r": 19.2, + "total_frag_volume": 8, + "wfifteenbar_h": 24.5, + "wfifteenbar_l": 13.7, + "wfifteenbar_r": 18.5, + "wthirdbar_h": 28.9, + "wthirdbar_l": 21.1, + "wthirdbar_r": 24.8 + }, + { + "cec7_h": 12.8, + "cec7_l": 8.5, + "cec7_r": 8.5, + "chkey": 80954726, + "claytotal_h": 40, + "claytotal_l": 27, + "claytotal_r": 39.3, + "cokey": 27108854, + "dbovendry_h": 1.72, + "dbovendry_l": 1.42, + "dbovendry_r": 1.57, + "ec_h": 1, + "ec_l": 0, + "ec_r": 0.5, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 203, + "hzdept_r": 122, + "hzname": "Btk2", + "lep_h": 2.6, + "lep_l": 0, + "lep_r": 1.4, + "mukey": 369851, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8.4, + "sandtotal_h": 45, + "sandtotal_l": 10, + "sandtotal_r": 37.5, + "silttotal_h": 50, + "silttotal_l": 15, + "silttotal_r": 23.2, + "total_frag_volume": 8, + "wfifteenbar_h": 25.1, + "wfifteenbar_l": 14.7, + "wfifteenbar_r": 22.9, + "wthirdbar_h": 35.3, + "wthirdbar_l": 26.9, + "wthirdbar_r": 32.8 + }, + { + "cec7_h": 19.5, + "cec7_l": 14.1, + "cec7_r": 16.9, + "chkey": 80954856, + "claytotal_h": 40, + "claytotal_l": 22, + "claytotal_r": 29.8, + "cokey": 27108889, + "dbovendry_h": 1.63, + "dbovendry_l": 1.42, + "dbovendry_r": 1.56, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 203, + "hzdept_r": 147, + "hzname": "Btk", + "lep_h": 4.1, + "lep_l": 0.9, + "lep_r": 2.5, + "mukey": 369839, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8.2, + "sandtotal_h": 60, + "sandtotal_l": 30, + "sandtotal_r": 52.5, + "silttotal_h": 41.7, + "silttotal_l": 0, + "silttotal_r": 17.7, + "total_frag_volume": 5, + "wfifteenbar_h": 24.3, + "wfifteenbar_l": 12.3, + "wfifteenbar_r": 17.3, + "wthirdbar_h": 29.2, + "wthirdbar_l": 20.6, + "wthirdbar_r": 24.4 + }, + { + "cec7_h": 50.8, + "cec7_l": 32.5, + "cec7_r": 35.1, + "chkey": 80955018, + "claytotal_h": 70, + "claytotal_l": 55, + "claytotal_r": 62.9, + "cokey": 27108933, + "dbovendry_h": 1.9, + "dbovendry_l": 1.58, + "dbovendry_r": 1.66, + "ec_h": 1.5, + "ec_l": 0, + "ec_r": 1.1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 30, + "hzdept_r": 0, + "hzname": "A", + "lep_h": 16, + "lep_l": 9, + "lep_r": 11.4, + "mukey": 369864, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 6.9, + "sandtotal_h": 25, + "sandtotal_l": 5, + "sandtotal_r": 7.7, + "silttotal_h": 40, + "silttotal_l": 11.9, + "silttotal_r": 29.4, + "total_frag_volume": 0, + "wfifteenbar_h": 38.8, + "wfifteenbar_l": 24.1, + "wfifteenbar_r": 26.3, + "wthirdbar_h": 46.1, + "wthirdbar_l": 34.5, + "wthirdbar_r": 36.8 + }, + { + "cec7_h": 48.7, + "cec7_l": 31.5, + "cec7_r": 34.9, + "chkey": 80955019, + "claytotal_h": 70, + "claytotal_l": 55, + "claytotal_r": 62.6, + "cokey": 27108933, + "dbovendry_h": 1.86, + "dbovendry_l": 1.58, + "dbovendry_r": 1.7, + "ec_h": 1, + "ec_l": 0, + "ec_r": 0.5, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 94, + "hzdept_r": 30, + "hzname": "Bss1", + "lep_h": 16, + "lep_l": 10, + "lep_r": 12.6, + "mukey": 369864, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 6.9, + "sandtotal_h": 25, + "sandtotal_l": 5, + "sandtotal_r": 7.3, + "silttotal_h": 40, + "silttotal_l": 12.6, + "silttotal_r": 30.1, + "total_frag_volume": 0, + "wfifteenbar_h": 36.2, + "wfifteenbar_l": 22.4, + "wfifteenbar_r": 25.4, + "wthirdbar_h": 46.7, + "wthirdbar_l": 37.1, + "wthirdbar_r": 39.8 + }, + { + "cec7_h": 46.4, + "cec7_l": 32.7, + "cec7_r": 35.2, + "chkey": 80955020, + "claytotal_h": 70, + "claytotal_l": 55, + "claytotal_r": 62.3, + "cokey": 27108933, + "dbovendry_h": 1.78, + "dbovendry_l": 1.52, + "dbovendry_r": 1.64, + "ec_h": 1, + "ec_l": 0, + "ec_r": 0.5, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 203, + "hzdept_r": 94, + "hzname": "Bss2", + "lep_h": 15, + "lep_l": 9, + "lep_r": 11.9, + "mukey": 369864, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 8.2, + "sandtotal_h": 25, + "sandtotal_l": 5, + "sandtotal_r": 6.6, + "silttotal_h": 40, + "silttotal_l": 13.6, + "silttotal_r": 31.1, + "total_frag_volume": 0, + "wfifteenbar_h": 35.5, + "wfifteenbar_l": 24.7, + "wfifteenbar_r": 26.6, + "wthirdbar_h": 47.1, + "wthirdbar_l": 38.5, + "wthirdbar_r": 40.4 + }, + { + "cec7_h": 46.8, + "cec7_l": 36.5, + "cec7_r": 37.4, + "chkey": 80955024, + "claytotal_h": 65, + "claytotal_l": 55, + "claytotal_r": 59.8, + "cokey": 27108934, + "dbovendry_h": 1.81, + "dbovendry_l": 1.48, + "dbovendry_r": 1.77, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.5, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 18, + "hzdept_r": 0, + "hzname": "A", + "lep_h": 20, + "lep_l": 9, + "lep_r": 15.8, + "mukey": 369864, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 7.9, + "sandtotal_h": 12, + "sandtotal_l": 3, + "sandtotal_r": 6.8, + "silttotal_h": 40, + "silttotal_l": 20, + "silttotal_r": 33.4, + "total_frag_volume": 0, + "wfifteenbar_h": 33.8, + "wfifteenbar_l": 24.2, + "wfifteenbar_r": 25.6, + "wthirdbar_h": 46.8, + "wthirdbar_l": 42, + "wthirdbar_r": 43.2 + }, + { + "cec7_h": 45.7, + "cec7_l": 35.6, + "cec7_r": 35.8, + "chkey": 80955022, + "claytotal_h": 65, + "claytotal_l": 55, + "claytotal_r": 58.2, + "cokey": 27108934, + "dbovendry_h": 1.81, + "dbovendry_l": 1.48, + "dbovendry_r": 1.79, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.4, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 94, + "hzdept_r": 18, + "hzname": "Bss1", + "lep_h": 20, + "lep_l": 9, + "lep_r": 15.5, + "mukey": 369864, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.8, + "sandtotal_h": 12, + "sandtotal_l": 3, + "sandtotal_r": 7.5, + "silttotal_h": 40, + "silttotal_l": 20, + "silttotal_r": 34.3, + "total_frag_volume": 0, + "wfifteenbar_h": 33, + "wfifteenbar_l": 22.3, + "wfifteenbar_r": 24.7, + "wthirdbar_h": 46.8, + "wthirdbar_l": 42.1, + "wthirdbar_r": 43.1 + }, + { + "cec7_h": 42.7, + "cec7_l": 35.6, + "cec7_r": 36.6, + "chkey": 80955021, + "claytotal_h": 65, + "claytotal_l": 55, + "claytotal_r": 59.7, + "cokey": 27108934, + "dbovendry_h": 1.81, + "dbovendry_l": 1.48, + "dbovendry_r": 1.77, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.3, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 150, + "hzdept_r": 94, + "hzname": "Bss2", + "lep_h": 20, + "lep_l": 9, + "lep_r": 15.7, + "mukey": 369864, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 8, + "sandtotal_h": 12, + "sandtotal_l": 3, + "sandtotal_r": 7.5, + "silttotal_h": 40, + "silttotal_l": 20, + "silttotal_r": 32.8, + "total_frag_volume": 0, + "wfifteenbar_h": 33, + "wfifteenbar_l": 21.6, + "wfifteenbar_r": 23.9, + "wthirdbar_h": 46.8, + "wthirdbar_l": 44, + "wthirdbar_r": 45.3 + }, + { + "cec7_h": 38.7, + "cec7_l": 33.8, + "cec7_r": 35.2, + "chkey": 80955023, + "claytotal_h": 65, + "claytotal_l": 55, + "claytotal_r": 55.1, + "cokey": 27108934, + "dbovendry_h": 1.81, + "dbovendry_l": 1.46, + "dbovendry_r": 1.77, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.3, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 203, + "hzdept_r": 150, + "hzname": "Bkss", + "lep_h": 20, + "lep_l": 9, + "lep_r": 16.1, + "mukey": 369864, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8.1, + "sandtotal_h": 12, + "sandtotal_l": 3, + "sandtotal_r": 7.4, + "silttotal_h": 40, + "silttotal_l": 20, + "silttotal_r": 37.5, + "total_frag_volume": 1, + "wfifteenbar_h": 30, + "wfifteenbar_l": 21.7, + "wfifteenbar_r": 23.7, + "wthirdbar_h": 47.1, + "wthirdbar_l": 44.1, + "wthirdbar_r": 46.5 + }, + { + "cec7_h": 32.3, + "cec7_l": 22.3, + "cec7_r": 26.4, + "chkey": 80954731, + "claytotal_h": 40, + "claytotal_l": 27, + "claytotal_r": 32.2, + "cokey": 27108856, + "dbovendry_h": 1.34, + "dbovendry_l": 1.25, + "dbovendry_r": 1.28, + "ec_h": 3, + "ec_l": 0, + "ec_r": 2.6, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 13, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 6.5, + "lep_l": 3.7, + "lep_r": 4.8, + "mukey": 369851, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.3, + "sandtotal_h": 30, + "sandtotal_l": 20, + "sandtotal_r": 23.6, + "silttotal_h": 53, + "silttotal_l": 32.7, + "silttotal_r": 44.2, + "total_frag_volume": 0, + "wfifteenbar_h": 21.4, + "wfifteenbar_l": 14.6, + "wfifteenbar_r": 17.4, + "wthirdbar_h": 33.7, + "wthirdbar_l": 29.4, + "wthirdbar_r": 31.4 + }, + { + "cec7_h": 38.9, + "cec7_l": 27.9, + "cec7_r": 30.9, + "chkey": 80954733, + "claytotal_h": 50, + "claytotal_l": 35, + "claytotal_r": 38.9, + "cokey": 27108856, + "dbovendry_h": 1.75, + "dbovendry_l": 1.56, + "dbovendry_r": 1.62, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.8, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 84, + "hzdept_r": 13, + "hzname": "Bt", + "lep_h": 8.7, + "lep_l": 5.3, + "lep_r": 6.1, + "mukey": 369851, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 8, + "sandtotal_h": 30, + "sandtotal_l": 10, + "sandtotal_r": 15, + "silttotal_h": 55, + "silttotal_l": 28.6, + "silttotal_r": 46.1, + "total_frag_volume": 0, + "wfifteenbar_h": 29.4, + "wfifteenbar_l": 20.8, + "wfifteenbar_r": 23.2, + "wthirdbar_h": 37.7, + "wthirdbar_l": 33.4, + "wthirdbar_r": 34.7 + }, + { + "cec7_h": 34.5, + "cec7_l": 25.1, + "cec7_r": 27, + "chkey": 80954734, + "claytotal_h": 50, + "claytotal_l": 35, + "claytotal_r": 39.1, + "cokey": 27108856, + "dbovendry_h": 1.76, + "dbovendry_l": 1.58, + "dbovendry_r": 1.63, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.8, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 132, + "hzdept_r": 84, + "hzname": "Btk1", + "lep_h": 8, + "lep_l": 4.4, + "lep_r": 5.2, + "mukey": 369851, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8.1, + "sandtotal_h": 30, + "sandtotal_l": 10, + "sandtotal_r": 22, + "silttotal_h": 55, + "silttotal_l": 21.4, + "silttotal_r": 38.9, + "total_frag_volume": 1, + "wfifteenbar_h": 30, + "wfifteenbar_l": 20.3, + "wfifteenbar_r": 23.1, + "wthirdbar_h": 38, + "wthirdbar_l": 32.7, + "wthirdbar_r": 34.4 + }, + { + "cec7_h": 19.7, + "cec7_l": 14.7, + "cec7_r": 18.5, + "chkey": 80954732, + "claytotal_h": 50, + "claytotal_l": 35, + "claytotal_r": 40.2, + "cokey": 27108856, + "dbovendry_h": 1.64, + "dbovendry_l": 1.24, + "dbovendry_r": 1.32, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.7, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 203, + "hzdept_r": 132, + "hzname": "Btk2", + "lep_h": 4.5, + "lep_l": 1.3, + "lep_r": 2.4, + "mukey": 369851, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8.3, + "sandtotal_h": 30, + "sandtotal_l": 10, + "sandtotal_r": 20.3, + "silttotal_h": 55, + "silttotal_l": 22, + "silttotal_r": 39.5, + "total_frag_volume": 1, + "wfifteenbar_h": 26.2, + "wfifteenbar_l": 17, + "wfifteenbar_r": 20.8, + "wthirdbar_h": 42.4, + "wthirdbar_l": 27.9, + "wthirdbar_r": 39.8 + }, + { + "cec7_h": 22.7, + "cec7_l": 9, + "cec7_r": 16.5, + "chkey": 80954864, + "claytotal_h": 27, + "claytotal_l": 10, + "claytotal_r": 19.1, + "cokey": 27108891, + "dbovendry_h": 1.6, + "dbovendry_l": 1.39, + "dbovendry_r": 1.52, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 12, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 3.8, + "lep_l": 1, + "lep_r": 2.1, + "mukey": 369839, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 8.2, + "sandtotal_h": 52, + "sandtotal_l": 30, + "sandtotal_r": 50.9, + "silttotal_h": 50, + "silttotal_l": 28, + "silttotal_r": 30, + "total_frag_volume": 0, + "wfifteenbar_h": 19.3, + "wfifteenbar_l": 7.8, + "wfifteenbar_r": 14.2, + "wthirdbar_h": 32.5, + "wthirdbar_l": 23.6, + "wthirdbar_r": 29.2 + }, + { + "cec7_h": 31.8, + "cec7_l": 18.1, + "cec7_r": 24.9, + "chkey": 80954861, + "claytotal_h": 40, + "claytotal_l": 22, + "claytotal_r": 33.9, + "cokey": 27108891, + "dbovendry_h": 1.75, + "dbovendry_l": 1.55, + "dbovendry_r": 1.65, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 46, + "hzdept_r": 12, + "hzname": "Bt1", + "lep_h": 6.4, + "lep_l": 2.7, + "lep_r": 4.4, + "mukey": 369839, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 8, + "sandtotal_h": 65, + "sandtotal_l": 25, + "sandtotal_r": 33.6, + "silttotal_h": 53, + "silttotal_l": 3.5, + "silttotal_r": 32.5, + "total_frag_volume": 0, + "wfifteenbar_h": 26.8, + "wfifteenbar_l": 14.6, + "wfifteenbar_r": 22.5, + "wthirdbar_h": 36.5, + "wthirdbar_l": 29.3, + "wthirdbar_r": 34.3 + }, + { + "cec7_h": 31.8, + "cec7_l": 18.1, + "cec7_r": 24.9, + "chkey": 80954865, + "claytotal_h": 40, + "claytotal_l": 22, + "claytotal_r": 33.9, + "cokey": 27108891, + "dbovendry_h": 1.75, + "dbovendry_l": 1.55, + "dbovendry_r": 1.65, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 95, + "hzdept_r": 46, + "hzname": "Bt2", + "lep_h": 6.4, + "lep_l": 2.7, + "lep_r": 4.4, + "mukey": 369839, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 8, + "sandtotal_h": 65, + "sandtotal_l": 25, + "sandtotal_r": 33.6, + "silttotal_h": 53, + "silttotal_l": 3.5, + "silttotal_r": 32.5, + "total_frag_volume": 0, + "wfifteenbar_h": 26.8, + "wfifteenbar_l": 14.6, + "wfifteenbar_r": 22.5, + "wthirdbar_h": 36.5, + "wthirdbar_l": 29.3, + "wthirdbar_r": 34.3 + }, + { + "cec7_h": 30.6, + "cec7_l": 16.5, + "cec7_r": 22.9, + "chkey": 80954862, + "claytotal_h": 40, + "claytotal_l": 22, + "claytotal_r": 37.7, + "cokey": 27108891, + "dbovendry_h": 1.82, + "dbovendry_l": 1.59, + "dbovendry_r": 1.69, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 125, + "hzdept_r": 95, + "hzname": "Btk", + "lep_h": 6.2, + "lep_l": 2.3, + "lep_r": 3.8, + "mukey": 369839, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8.2, + "sandtotal_h": 65, + "sandtotal_l": 25, + "sandtotal_r": 38.3, + "silttotal_h": 53, + "silttotal_l": 0, + "silttotal_r": 24, + "total_frag_volume": 6, + "wfifteenbar_h": 26.1, + "wfifteenbar_l": 12.9, + "wfifteenbar_r": 22.9, + "wthirdbar_h": 36.2, + "wthirdbar_l": 26.7, + "wthirdbar_r": 33.2 + }, + { + "cec7_h": 36.9, + "cec7_l": 16.5, + "cec7_r": 19.2, + "chkey": 80954863, + "claytotal_h": 40, + "claytotal_l": 22, + "claytotal_r": 39.5, + "cokey": 27108891, + "dbovendry_h": 1.93, + "dbovendry_l": 1.55, + "dbovendry_r": 1.65, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 203, + "hzdept_r": 125, + "hzname": "Btkk", + "lep_h": 8.3, + "lep_l": 2.3, + "lep_r": 3, + "mukey": 369839, + "ph1to1h2o_h": 9, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8.3, + "sandtotal_h": 65, + "sandtotal_l": 25, + "sandtotal_r": 40.2, + "silttotal_h": 49.3, + "silttotal_l": 0, + "silttotal_r": 20.3, + "total_frag_volume": 5, + "wfifteenbar_h": 31.8, + "wfifteenbar_l": 12.6, + "wfifteenbar_r": 24, + "wthirdbar_h": 38.5, + "wthirdbar_l": 26.1, + "wthirdbar_r": 34 + }, + { + "cec7_h": 22.7, + "cec7_l": 9, + "cec7_r": 16.5, + "chkey": 80954727, + "claytotal_h": 27, + "claytotal_l": 10, + "claytotal_r": 19.1, + "cokey": 27108855, + "dbovendry_h": 1.6, + "dbovendry_l": 1.39, + "dbovendry_r": 1.52, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 30, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 3.8, + "lep_l": 1, + "lep_r": 2.1, + "mukey": 369851, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.2, + "sandtotal_h": 52, + "sandtotal_l": 30, + "sandtotal_r": 50.9, + "silttotal_h": 50, + "silttotal_l": 28, + "silttotal_r": 30, + "total_frag_volume": 0, + "wfifteenbar_h": 19.3, + "wfifteenbar_l": 7.8, + "wfifteenbar_r": 14.2, + "wthirdbar_h": 32.5, + "wthirdbar_l": 23.6, + "wthirdbar_r": 29.2 + }, + { + "cec7_h": 46.8, + "cec7_l": 37, + "cec7_r": 41.4, + "chkey": 80955025, + "claytotal_h": 65, + "claytotal_l": 50, + "claytotal_r": 56, + "cokey": 27108935, + "dbovendry_h": 1.74, + "dbovendry_l": 1.69, + "dbovendry_r": 1.71, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 23, + "hzdept_r": 0, + "hzname": "A", + "lep_h": 18, + "lep_l": 9, + "lep_r": 11.6, + "mukey": 369864, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.9, + "sandtotal_h": 20, + "sandtotal_l": 2, + "sandtotal_r": 8.1, + "silttotal_h": 40, + "silttotal_l": 20, + "silttotal_r": 35.9, + "total_frag_volume": 0, + "wfifteenbar_h": 36.4, + "wfifteenbar_l": 27.3, + "wfifteenbar_r": 31.4, + "wthirdbar_h": 44.7, + "wthirdbar_l": 42, + "wthirdbar_r": 43.1 + }, + { + "cec7_h": 22.7, + "cec7_l": 10.6, + "cec7_r": 16.6, + "chkey": 80954867, + "claytotal_h": 27, + "claytotal_l": 12, + "claytotal_r": 19.2, + "cokey": 27108892, + "dbovendry_h": 1.5, + "dbovendry_l": 1.33, + "dbovendry_r": 1.46, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 18, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 2.9, + "lep_l": 0.5, + "lep_r": 1.9, + "mukey": 369839, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.5, + "sandtotal_h": 52, + "sandtotal_l": 30, + "sandtotal_r": 49.8, + "silttotal_h": 45, + "silttotal_l": 30, + "silttotal_r": 31, + "total_frag_volume": 0, + "wfifteenbar_h": 18.6, + "wfifteenbar_l": 8.6, + "wfifteenbar_r": 13.8, + "wthirdbar_h": 32.1, + "wthirdbar_l": 18, + "wthirdbar_r": 28.9 + }, + { + "cec7_h": 26.1, + "cec7_l": 14.7, + "cec7_r": 20.7, + "chkey": 80954868, + "claytotal_h": 35, + "claytotal_l": 18, + "claytotal_r": 25.9, + "cokey": 27108892, + "dbovendry_h": 1.73, + "dbovendry_l": 1.58, + "dbovendry_r": 1.68, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 79, + "hzdept_r": 18, + "hzname": "Bt", + "lep_h": 4.9, + "lep_l": 0.5, + "lep_r": 3.9, + "mukey": 369839, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.9, + "sandtotal_h": 65, + "sandtotal_l": 30, + "sandtotal_r": 56.3, + "silttotal_h": 40, + "silttotal_l": 5, + "silttotal_r": 17.8, + "total_frag_volume": 0, + "wfifteenbar_h": 23.3, + "wfifteenbar_l": 12, + "wfifteenbar_r": 17.3, + "wthirdbar_h": 28.8, + "wthirdbar_l": 17.5, + "wthirdbar_r": 25.2 + }, + { + "cec7_h": 48.8, + "cec7_l": 39.2, + "cec7_r": 42.1, + "chkey": 80955026, + "claytotal_h": 70, + "claytotal_l": 55, + "claytotal_r": 59, + "cokey": 27108935, + "dbovendry_h": 1.72, + "dbovendry_l": 1.69, + "dbovendry_r": 1.69, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 43, + "hzdept_r": 23, + "hzname": "Bw", + "lep_h": 18, + "lep_l": 9, + "lep_r": 12.8, + "mukey": 369864, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.9, + "sandtotal_h": 20, + "sandtotal_l": 1, + "sandtotal_r": 6.4, + "silttotal_h": 40, + "silttotal_l": 20, + "silttotal_r": 34.6, + "total_frag_volume": 0, + "wfifteenbar_h": 36.8, + "wfifteenbar_l": 28.6, + "wfifteenbar_r": 30.9, + "wthirdbar_h": 46.5, + "wthirdbar_l": 43.9, + "wthirdbar_r": 44.6 + }, + { + "cec7_h": 25, + "cec7_l": 16.4, + "cec7_r": 22.2, + "chkey": 80954730, + "claytotal_h": 32, + "claytotal_l": 20, + "claytotal_r": 27.6, + "cokey": 27108855, + "dbovendry_h": 1.66, + "dbovendry_l": 1.57, + "dbovendry_r": 1.62, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 97, + "hzdept_r": 30, + "hzname": "Bt", + "lep_h": 4.6, + "lep_l": 2.3, + "lep_r": 3.8, + "mukey": 369851, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 8.2, + "sandtotal_h": 60, + "sandtotal_l": 30, + "sandtotal_r": 48.9, + "silttotal_h": 44.5, + "silttotal_l": 8, + "silttotal_r": 23.5, + "total_frag_volume": 0, + "wfifteenbar_h": 21.4, + "wfifteenbar_l": 13.2, + "wfifteenbar_r": 18.1, + "wthirdbar_h": 27.7, + "wthirdbar_l": 22.2, + "wthirdbar_r": 25.7 + }, + { + "cec7_h": 46.9, + "cec7_l": 36.7, + "cec7_r": 40.2, + "chkey": 80955027, + "claytotal_h": 70, + "claytotal_l": 55, + "claytotal_r": 59, + "cokey": 27108935, + "dbovendry_h": 1.76, + "dbovendry_l": 1.69, + "dbovendry_r": 1.73, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 170, + "hzdept_r": 43, + "hzname": "Bss", + "lep_h": 18, + "lep_l": 9, + "lep_r": 13.7, + "mukey": 369864, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.9, + "sandtotal_h": 20, + "sandtotal_l": 1, + "sandtotal_r": 4.1, + "silttotal_h": 40, + "silttotal_l": 20, + "silttotal_r": 36.9, + "total_frag_volume": 0, + "wfifteenbar_h": 36.4, + "wfifteenbar_l": 28, + "wfifteenbar_r": 30.3, + "wthirdbar_h": 46.5, + "wthirdbar_l": 43.9, + "wthirdbar_r": 44.6 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80954866, + "claytotal_h": 0, + "claytotal_l": 0, + "claytotal_r": 0, + "cokey": 27108892, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 89, + "hzdept_r": 79, + "hzname": "Bkkm", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 369839, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": 0, + "sandtotal_l": 0, + "sandtotal_r": 0, + "silttotal_h": 0, + "silttotal_l": 0, + "silttotal_r": 0, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": 25.1, + "cec7_l": 12.4, + "cec7_r": 18, + "chkey": 80954869, + "claytotal_h": 45, + "claytotal_l": 20, + "claytotal_r": 32.5, + "cokey": 27108892, + "dbovendry_h": 1.71, + "dbovendry_l": 1.57, + "dbovendry_r": 1.67, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 203, + "hzdept_r": 89, + "hzname": "Btk", + "lep_h": 1.9, + "lep_l": 0, + "lep_r": 1.2, + "mukey": 369839, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8.2, + "sandtotal_h": 70, + "sandtotal_l": 27, + "sandtotal_r": 53.9, + "silttotal_h": 40, + "silttotal_l": 5, + "silttotal_r": 13.6, + "total_frag_volume": 14, + "wfifteenbar_h": 21, + "wfifteenbar_l": 10.9, + "wfifteenbar_r": 19.1, + "wthirdbar_h": 26.7, + "wthirdbar_l": 13.8, + "wthirdbar_r": 24.2 + }, + { + "cec7_h": 11.4, + "cec7_l": 8.4, + "cec7_r": 8.4, + "chkey": 80954729, + "claytotal_h": 40, + "claytotal_l": 25, + "claytotal_r": 32.1, + "cokey": 27108855, + "dbovendry_h": 1.65, + "dbovendry_l": 1.45, + "dbovendry_r": 1.53, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 147, + "hzdept_r": 97, + "hzname": "Btkk", + "lep_h": 2.3, + "lep_l": 0, + "lep_r": 1, + "mukey": 369851, + "ph1to1h2o_h": 9, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8.4, + "sandtotal_h": 50, + "sandtotal_l": 25, + "sandtotal_r": 48.7, + "silttotal_h": 39.2, + "silttotal_l": 10, + "silttotal_r": 19.2, + "total_frag_volume": 8, + "wfifteenbar_h": 24.5, + "wfifteenbar_l": 13.7, + "wfifteenbar_r": 18.5, + "wthirdbar_h": 28.9, + "wthirdbar_l": 21.1, + "wthirdbar_r": 24.8 + }, + { + "cec7_h": 19.5, + "cec7_l": 14.1, + "cec7_r": 16.9, + "chkey": 80954728, + "claytotal_h": 40, + "claytotal_l": 22, + "claytotal_r": 29.8, + "cokey": 27108855, + "dbovendry_h": 1.63, + "dbovendry_l": 1.42, + "dbovendry_r": 1.56, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 203, + "hzdept_r": 147, + "hzname": "Btk", + "lep_h": 4.1, + "lep_l": 0.9, + "lep_r": 2.5, + "mukey": 369851, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8.2, + "sandtotal_h": 60, + "sandtotal_l": 30, + "sandtotal_r": 52.5, + "silttotal_h": 41.7, + "silttotal_l": 0, + "silttotal_r": 17.7, + "total_frag_volume": 5, + "wfifteenbar_h": 24.3, + "wfifteenbar_l": 12.3, + "wfifteenbar_r": 17.3, + "wthirdbar_h": 29.2, + "wthirdbar_l": 20.6, + "wthirdbar_r": 24.4 + }, + { + "cec7_h": 41.7, + "cec7_l": 36.1, + "cec7_r": 41.6, + "chkey": 80955028, + "claytotal_h": 75, + "claytotal_l": 55, + "claytotal_r": 65, + "cokey": 27108935, + "dbovendry_h": 1.62, + "dbovendry_l": 1.53, + "dbovendry_r": 1.55, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 203, + "hzdept_r": 170, + "hzname": "Bkss", + "lep_h": 10, + "lep_l": 6, + "lep_r": 8.2, + "mukey": 369864, + "ph1to1h2o_h": 9, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8.2, + "sandtotal_h": 10, + "sandtotal_l": 1, + "sandtotal_r": 2.6, + "silttotal_h": 40, + "silttotal_l": 20, + "silttotal_r": 32.4, + "total_frag_volume": 3, + "wfifteenbar_h": 38.8, + "wfifteenbar_l": 28.2, + "wfifteenbar_r": 33.4, + "wthirdbar_h": 46.8, + "wthirdbar_l": 43.5, + "wthirdbar_r": 45.3 + }, + { + "cec7_h": 16.6, + "cec7_l": 8.6, + "cec7_r": 13.6, + "chkey": 80954857, + "claytotal_h": 20, + "claytotal_l": 10, + "claytotal_r": 16.1, + "cokey": 27108890, + "dbovendry_h": 1.68, + "dbovendry_l": 1.38, + "dbovendry_r": 1.53, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 24, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 2.9, + "lep_l": 0.5, + "lep_r": 1.9, + "mukey": 369839, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.5, + "sandtotal_h": 80, + "sandtotal_l": 52, + "sandtotal_r": 67.5, + "silttotal_h": 25, + "silttotal_l": 10, + "silttotal_r": 16.4, + "total_frag_volume": 0, + "wfifteenbar_h": 14.4, + "wfifteenbar_l": 7.2, + "wfifteenbar_r": 11.7, + "wthirdbar_h": 23.1, + "wthirdbar_l": 13, + "wthirdbar_r": 21.1 + }, + { + "cec7_h": 26.5, + "cec7_l": 15.6, + "cec7_r": 19.4, + "chkey": 80954858, + "claytotal_h": 35, + "claytotal_l": 20, + "claytotal_r": 24.5, + "cokey": 27108890, + "dbovendry_h": 1.73, + "dbovendry_l": 1.56, + "dbovendry_r": 1.66, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 102, + "hzdept_r": 24, + "hzname": "Bt", + "lep_h": 4.2, + "lep_l": 1.9, + "lep_r": 3.2, + "mukey": 369839, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.6, + "sandtotal_h": 70, + "sandtotal_l": 30, + "sandtotal_r": 58.2, + "silttotal_h": 35, + "silttotal_l": 10, + "silttotal_r": 17.3, + "total_frag_volume": 0, + "wfifteenbar_h": 23, + "wfifteenbar_l": 12.9, + "wfifteenbar_r": 16.1, + "wthirdbar_h": 28.6, + "wthirdbar_l": 19.5, + "wthirdbar_r": 24.3 + }, + { + "cec7_h": 15.1, + "cec7_l": 9.6, + "cec7_r": 13.2, + "chkey": 80954859, + "claytotal_h": 40, + "claytotal_l": 20, + "claytotal_r": 33.6, + "cokey": 27108890, + "dbovendry_h": 1.69, + "dbovendry_l": 1.44, + "dbovendry_r": 1.54, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 142, + "hzdept_r": 102, + "hzname": "Btkk", + "lep_h": 2.9, + "lep_l": 0.5, + "lep_r": 0.9, + "mukey": 369839, + "ph1to1h2o_h": 9, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8.3, + "sandtotal_h": 70, + "sandtotal_l": 30, + "sandtotal_r": 47.2, + "silttotal_h": 35, + "silttotal_l": 5, + "silttotal_r": 19.2, + "total_frag_volume": 6, + "wfifteenbar_h": 22, + "wfifteenbar_l": 11.2, + "wfifteenbar_r": 20.1, + "wthirdbar_h": 27.8, + "wthirdbar_l": 14.6, + "wthirdbar_r": 26 + }, + { + "cec7_h": 19.4, + "cec7_l": 12.4, + "cec7_r": 16.5, + "chkey": 80954860, + "claytotal_h": 40, + "claytotal_l": 20, + "claytotal_r": 30.4, + "cokey": 27108890, + "dbovendry_h": 1.69, + "dbovendry_l": 1.54, + "dbovendry_r": 1.64, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 203, + "hzdept_r": 142, + "hzname": "Btk", + "lep_h": 3.9, + "lep_l": 1.9, + "lep_r": 2.9, + "mukey": 369839, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8.1, + "sandtotal_h": 70, + "sandtotal_l": 30, + "sandtotal_r": 51.3, + "silttotal_h": 35, + "silttotal_l": 5, + "silttotal_r": 18.3, + "total_frag_volume": 3, + "wfifteenbar_h": 22.1, + "wfifteenbar_l": 12, + "wfifteenbar_r": 18.9, + "wthirdbar_h": 27.9, + "wthirdbar_l": 16.3, + "wthirdbar_r": 25.7 + }, + { + "cec7_h": 32.3, + "cec7_l": 18.4, + "cec7_r": 23.4, + "chkey": 80954739, + "claytotal_h": 40, + "claytotal_l": 27, + "claytotal_r": 28.1, + "cokey": 27108857, + "dbovendry_h": 1.75, + "dbovendry_l": 1.48, + "dbovendry_r": 1.63, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 15, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 6.5, + "lep_l": 2.8, + "lep_r": 4, + "mukey": 369851, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.9, + "sandtotal_h": 45, + "sandtotal_l": 25, + "sandtotal_r": 34.7, + "silttotal_h": 48, + "silttotal_l": 20.7, + "silttotal_r": 37.2, + "total_frag_volume": 0, + "wfifteenbar_h": 28, + "wfifteenbar_l": 15.2, + "wfifteenbar_r": 20.3, + "wthirdbar_h": 37.1, + "wthirdbar_l": 29.7, + "wthirdbar_r": 33.1 + }, + { + "cec7_h": 31.8, + "cec7_l": 18.1, + "cec7_r": 24.9, + "chkey": 80954735, + "claytotal_h": 40, + "claytotal_l": 22, + "claytotal_r": 33.9, + "cokey": 27108857, + "dbovendry_h": 1.72, + "dbovendry_l": 1.57, + "dbovendry_r": 1.67, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 48, + "hzdept_r": 15, + "hzname": "Bt1", + "lep_h": 5.9, + "lep_l": 2.9, + "lep_r": 4.9, + "mukey": 369851, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 8, + "sandtotal_h": 65, + "sandtotal_l": 25, + "sandtotal_r": 33.6, + "silttotal_h": 53, + "silttotal_l": 3.5, + "silttotal_r": 32.5, + "total_frag_volume": 0, + "wfifteenbar_h": 26.8, + "wfifteenbar_l": 14.6, + "wfifteenbar_r": 22.5, + "wthirdbar_h": 36.5, + "wthirdbar_l": 29.3, + "wthirdbar_r": 34.3 + }, + { + "cec7_h": 31.8, + "cec7_l": 18.1, + "cec7_r": 24.9, + "chkey": 80954736, + "claytotal_h": 40, + "claytotal_l": 22, + "claytotal_r": 33.9, + "cokey": 27108857, + "dbovendry_h": 1.72, + "dbovendry_l": 1.57, + "dbovendry_r": 1.67, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 97, + "hzdept_r": 48, + "hzname": "Bt2", + "lep_h": 5.9, + "lep_l": 2.9, + "lep_r": 4.9, + "mukey": 369851, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 8, + "sandtotal_h": 65, + "sandtotal_l": 25, + "sandtotal_r": 33.6, + "silttotal_h": 53, + "silttotal_l": 3.5, + "silttotal_r": 32.5, + "total_frag_volume": 0, + "wfifteenbar_h": 26.8, + "wfifteenbar_l": 14.6, + "wfifteenbar_r": 22.5, + "wthirdbar_h": 36.5, + "wthirdbar_l": 29.3, + "wthirdbar_r": 34.3 + }, + { + "cec7_h": 30.6, + "cec7_l": 16.5, + "cec7_r": 22.9, + "chkey": 80954737, + "claytotal_h": 40, + "claytotal_l": 22, + "claytotal_r": 37.7, + "cokey": 27108857, + "dbovendry_h": 1.8, + "dbovendry_l": 1.59, + "dbovendry_r": 1.69, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 127, + "hzdept_r": 97, + "hzname": "Btk", + "lep_h": 5.9, + "lep_l": 2.9, + "lep_r": 3.9, + "mukey": 369851, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8.2, + "sandtotal_h": 65, + "sandtotal_l": 25, + "sandtotal_r": 38.3, + "silttotal_h": 53, + "silttotal_l": 0, + "silttotal_r": 24, + "total_frag_volume": 6, + "wfifteenbar_h": 26.1, + "wfifteenbar_l": 12.9, + "wfifteenbar_r": 22.9, + "wthirdbar_h": 36.2, + "wthirdbar_l": 26.7, + "wthirdbar_r": 33.2 + }, + { + "cec7_h": 36.9, + "cec7_l": 16.5, + "cec7_r": 19.2, + "chkey": 80954738, + "claytotal_h": 40, + "claytotal_l": 22, + "claytotal_r": 39.5, + "cokey": 27108857, + "dbovendry_h": 1.8, + "dbovendry_l": 1.54, + "dbovendry_r": 1.64, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 203, + "hzdept_r": 127, + "hzname": "Btkk", + "lep_h": 5.9, + "lep_l": 1.9, + "lep_r": 2.9, + "mukey": 369851, + "ph1to1h2o_h": 9, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8.3, + "sandtotal_h": 65, + "sandtotal_l": 25, + "sandtotal_r": 40.2, + "silttotal_h": 53, + "silttotal_l": 0, + "silttotal_r": 20.3, + "total_frag_volume": 5, + "wfifteenbar_h": 31.8, + "wfifteenbar_l": 12.6, + "wfifteenbar_r": 24, + "wthirdbar_h": 38.5, + "wthirdbar_l": 26.1, + "wthirdbar_r": 34 + } + ], + "spn": [ + { + "closest_pt_x": -101.9733687, + "closest_pt_y": 33.81246789, + "cokey": 27108933, + "compkind": "Series", + "compname": "randall", + "comppct_r": 80, + "dist_meters": 0, + "elev_r": 1189, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 369864, + "nirrcapcl": 6, + "nirrcapscl": "w", + "nirrcapunit": null, + "slope_r": 0.5, + "taxorder": "Vertisols", + "taxsubgrp": "Ustic Epiaquerts", + "which": "a" + }, + { + "closest_pt_x": -101.9733687, + "closest_pt_y": 33.81246789, + "cokey": 27108934, + "compkind": "Series", + "compname": "mclean", + "comppct_r": 10, + "dist_meters": 0, + "elev_r": 1189, + "irrcapcl": 4, + "irrcapscl": "w", + "irrcapunit": null, + "localphase": "occasionally ponded", + "majcompflag": "No ", + "mukey": 369864, + "nirrcapcl": 4, + "nirrcapscl": "w", + "nirrcapunit": null, + "slope_r": 0.5, + "taxorder": "Vertisols", + "taxsubgrp": "Udic Haplusterts", + "which": "a" + }, + { + "closest_pt_x": -101.9733687, + "closest_pt_y": 33.81246789, + "cokey": 27108935, + "compkind": "Series", + "compname": "lockney", + "comppct_r": 5, + "dist_meters": 0, + "elev_r": 1189, + "irrcapcl": 2, + "irrcapscl": "s", + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 369864, + "nirrcapcl": 3, + "nirrcapscl": "s", + "nirrcapunit": null, + "slope_r": 0.5, + "taxorder": "Vertisols", + "taxsubgrp": "Typic Haplusterts", + "which": "a" + }, + { + "closest_pt_x": -101.97240137382325, + "closest_pt_y": 33.812438254791665, + "cokey": 27108889, + "compkind": "Series", + "compname": "acuff", + "comppct_r": 85, + "dist_meters": 90, + "elev_r": 1097, + "irrcapcl": 3, + "irrcapscl": "e", + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 369839, + "nirrcapcl": 3, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 2, + "taxorder": "Mollisols", + "taxsubgrp": "Aridic Paleustolls", + "which": "b" + }, + { + "closest_pt_x": -101.97240137382325, + "closest_pt_y": 33.812438254791665, + "cokey": 27108891, + "compkind": "Series", + "compname": "estacado", + "comppct_r": 6, + "dist_meters": 90, + "elev_r": 1128, + "irrcapcl": 3, + "irrcapscl": "e", + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 369839, + "nirrcapcl": 3, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 2, + "taxorder": "Mollisols", + "taxsubgrp": "Aridic Paleustolls", + "which": "b" + }, + { + "closest_pt_x": -101.97240137382325, + "closest_pt_y": 33.812438254791665, + "cokey": 27108892, + "compkind": "Series", + "compname": "friona", + "comppct_r": 5, + "dist_meters": 90, + "elev_r": 1219, + "irrcapcl": 3, + "irrcapscl": "e", + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 369839, + "nirrcapcl": 3, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 2, + "taxorder": "Mollisols", + "taxsubgrp": "Petrocalcic Paleustolls", + "which": "b" + }, + { + "closest_pt_x": -101.97240137382325, + "closest_pt_y": 33.812438254791665, + "cokey": 27108890, + "compkind": "Series", + "compname": "amarillo", + "comppct_r": 4, + "dist_meters": 90, + "elev_r": 1097, + "irrcapcl": 3, + "irrcapscl": "e", + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 369839, + "nirrcapcl": 3, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 2, + "taxorder": "Alfisols", + "taxsubgrp": "Aridic Paleustalfs", + "which": "b" + }, + { + "closest_pt_x": -101.972695315399, + "closest_pt_y": 33.810714093642, + "cokey": 27108854, + "compkind": "Series", + "compname": "olton", + "comppct_r": 85, + "dist_meters": 204, + "elev_r": 1120, + "irrcapcl": 1, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 369851, + "nirrcapcl": 2, + "nirrcapscl": "c", + "nirrcapunit": null, + "slope_r": 0.4, + "taxorder": "Mollisols", + "taxsubgrp": "Aridic Paleustolls", + "which": "b" + }, + { + "closest_pt_x": -101.972695315399, + "closest_pt_y": 33.810714093642, + "cokey": 27108856, + "compkind": "Series", + "compname": "pullman", + "comppct_r": 7, + "dist_meters": 204, + "elev_r": 1189, + "irrcapcl": 3, + "irrcapscl": "s", + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 369851, + "nirrcapcl": 3, + "nirrcapscl": "s", + "nirrcapunit": null, + "slope_r": 0.4, + "taxorder": "Mollisols", + "taxsubgrp": "Torrertic Paleustolls", + "which": "b" + }, + { + "closest_pt_x": -101.972695315399, + "closest_pt_y": 33.810714093642, + "cokey": 27108855, + "compkind": "Series", + "compname": "acuff", + "comppct_r": 5, + "dist_meters": 204, + "elev_r": 1097, + "irrcapcl": 2, + "irrcapscl": "s", + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 369851, + "nirrcapcl": 2, + "nirrcapscl": "s", + "nirrcapunit": null, + "slope_r": 0.5, + "taxorder": "Mollisols", + "taxsubgrp": "Aridic Paleustolls", + "which": "b" + }, + { + "closest_pt_x": -101.972695315399, + "closest_pt_y": 33.810714093642, + "cokey": 27108857, + "compkind": "Series", + "compname": "estacado", + "comppct_r": 3, + "dist_meters": 204, + "elev_r": 1128, + "irrcapcl": 1, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 369851, + "nirrcapcl": 2, + "nirrcapscl": "c", + "nirrcapunit": null, + "slope_r": 0.5, + "taxorder": "Mollisols", + "taxsubgrp": "Aridic Paleustolls", + "which": "b" + } + ] + } +} diff --git a/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[34.92816,-114.80764].json b/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[34.92816,-114.80764].json new file mode 100644 index 0000000..82b325e --- /dev/null +++ b/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[34.92816,-114.80764].json @@ -0,0 +1,915 @@ +{ + "elev": { + "location": { + "spatialReference": { + "latestWkid": 4326, + "wkid": 4326 + }, + "x": -114.80764, + "y": 34.92816 + }, + "locationId": 0, + "rasterId": 89161, + "resolution": 1, + "value": "468.679870605" + }, + "soilweb": { + "ESD": [], + "OSD_morph": [], + "OSD_narrative": [], + "hz": [ + { + "cec7_h": 1, + "cec7_l": 0.1, + "cec7_r": 0.9, + "chkey": 81890213, + "claytotal_h": 2, + "claytotal_l": 0, + "claytotal_r": 1, + "cokey": 27420738, + "dbovendry_h": 1.6, + "dbovendry_l": 1.45, + "dbovendry_r": 1.53, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 2, + "hzdept_r": 0, + "hzname": "A", + "lep_h": 0, + "lep_l": 0, + "lep_r": 0, + "mukey": 3457453, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8, + "sandtotal_h": 99, + "sandtotal_l": 96, + "sandtotal_r": 98, + "silttotal_h": 2, + "silttotal_l": 0, + "silttotal_r": 1, + "total_frag_volume": 87, + "wfifteenbar_h": 0.8, + "wfifteenbar_l": 0, + "wfifteenbar_r": 0.1, + "wthirdbar_h": 3.3, + "wthirdbar_l": 0.3, + "wthirdbar_r": 0.7 + }, + { + "cec7_h": 4.7, + "cec7_l": 2.3, + "cec7_r": 3.7, + "chkey": 81890215, + "claytotal_h": 7, + "claytotal_l": 3, + "claytotal_r": 5, + "cokey": 27420738, + "dbovendry_h": 1.61, + "dbovendry_l": 1.46, + "dbovendry_r": 1.54, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 7, + "hzdept_r": 2, + "hzname": "C1", + "lep_h": 0.4, + "lep_l": 0, + "lep_r": 0.2, + "mukey": 3457453, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.8, + "sandtotal_h": 87, + "sandtotal_l": 83, + "sandtotal_r": 85, + "silttotal_h": 12, + "silttotal_l": 8, + "silttotal_r": 10, + "total_frag_volume": 32, + "wfifteenbar_h": 4.7, + "wfifteenbar_l": 1.5, + "wfifteenbar_r": 2.6, + "wthirdbar_h": 12.8, + "wthirdbar_l": 6.6, + "wthirdbar_r": 8.6 + }, + { + "cec7_h": 3.3, + "cec7_l": 0.9, + "cec7_r": 2.4, + "chkey": 81890216, + "claytotal_h": 5, + "claytotal_l": 1, + "claytotal_r": 3, + "cokey": 27420738, + "dbovendry_h": 1.6, + "dbovendry_l": 1.45, + "dbovendry_r": 1.53, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 62, + "hzdept_r": 7, + "hzname": "C2", + "lep_h": 0.2, + "lep_l": 0, + "lep_r": 0, + "mukey": 3457453, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8, + "sandtotal_h": 96, + "sandtotal_l": 88, + "sandtotal_r": 92, + "silttotal_h": 7, + "silttotal_l": 3, + "silttotal_r": 5, + "total_frag_volume": 57, + "wfifteenbar_h": 2.5, + "wfifteenbar_l": 0.3, + "wfifteenbar_r": 0.9, + "wthirdbar_h": 6.8, + "wthirdbar_l": 2.1, + "wthirdbar_r": 3.5 + }, + { + "cec7_h": 3.3, + "cec7_l": 0.9, + "cec7_r": 2.4, + "chkey": 81890214, + "claytotal_h": 5, + "claytotal_l": 1, + "claytotal_r": 3, + "cokey": 27420738, + "dbovendry_h": 1.6, + "dbovendry_l": 1.45, + "dbovendry_r": 1.53, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 150, + "hzdept_r": 62, + "hzname": "Ck", + "lep_h": 0.1, + "lep_l": 0, + "lep_r": 0, + "mukey": 3457453, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8, + "sandtotal_h": 97, + "sandtotal_l": 91, + "sandtotal_r": 95, + "silttotal_h": 4, + "silttotal_l": 1, + "silttotal_r": 2, + "total_frag_volume": 71, + "wfifteenbar_h": 1.5, + "wfifteenbar_l": 0.1, + "wfifteenbar_r": 0.6, + "wthirdbar_h": 4.2, + "wthirdbar_l": 0.6, + "wthirdbar_r": 2.4 + }, + { + "cec7_h": 2.5, + "cec7_l": 1.6, + "cec7_r": 1.8, + "chkey": 81890217, + "claytotal_h": 4, + "claytotal_l": 2, + "claytotal_r": 3, + "cokey": 27420739, + "dbovendry_h": 1.6, + "dbovendry_l": 1.45, + "dbovendry_r": 1.53, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 4, + "hzdept_r": 0, + "hzname": "A", + "lep_h": 0.1, + "lep_l": 0, + "lep_r": 0, + "mukey": 3457453, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.8, + "sandtotal_h": 92, + "sandtotal_l": 88, + "sandtotal_r": 90, + "silttotal_h": 9, + "silttotal_l": 5, + "silttotal_r": 7, + "total_frag_volume": 4, + "wfifteenbar_h": 3.2, + "wfifteenbar_l": 1.3, + "wfifteenbar_r": 2.2, + "wthirdbar_h": 9.5, + "wthirdbar_l": 6.2, + "wthirdbar_r": 8.1 + }, + { + "cec7_h": 4.1, + "cec7_l": 2.9, + "cec7_r": 3.2, + "chkey": 81890218, + "claytotal_h": 5, + "claytotal_l": 4, + "claytotal_r": 4, + "cokey": 27420739, + "dbovendry_h": 1.61, + "dbovendry_l": 1.46, + "dbovendry_r": 1.54, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 31, + "hzdept_r": 4, + "hzname": "C1", + "lep_h": 0.4, + "lep_l": 0.2, + "lep_r": 0.3, + "mukey": 3457453, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8, + "sandtotal_h": 87, + "sandtotal_l": 83, + "sandtotal_r": 85, + "silttotal_h": 12, + "silttotal_l": 9, + "silttotal_r": 11, + "total_frag_volume": 12, + "wfifteenbar_h": 4.1, + "wfifteenbar_l": 2.6, + "wfifteenbar_r": 3, + "wthirdbar_h": 12.7, + "wthirdbar_l": 10, + "wthirdbar_r": 10.9 + }, + { + "cec7_h": 6.7, + "cec7_l": 2.9, + "cec7_r": 5, + "chkey": 81890219, + "claytotal_h": 9, + "claytotal_l": 4, + "claytotal_r": 7, + "cokey": 27420739, + "dbovendry_h": 1.62, + "dbovendry_l": 1.47, + "dbovendry_r": 1.55, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 78, + "hzdept_r": 31, + "hzname": "C2", + "lep_h": 0.7, + "lep_l": 0.2, + "lep_r": 0.5, + "mukey": 3457453, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8, + "sandtotal_h": 87, + "sandtotal_l": 81, + "sandtotal_r": 85, + "silttotal_h": 10, + "silttotal_l": 6, + "silttotal_r": 8, + "total_frag_volume": 12, + "wfifteenbar_h": 6.4, + "wfifteenbar_l": 2.5, + "wfifteenbar_r": 4.5, + "wthirdbar_h": 15.3, + "wthirdbar_l": 9.5, + "wthirdbar_r": 12.8 + }, + { + "cec7_h": 4, + "cec7_l": 2.9, + "cec7_r": 3.7, + "chkey": 81890220, + "claytotal_h": 6, + "claytotal_l": 4, + "claytotal_r": 5, + "cokey": 27420739, + "dbovendry_h": 1.75, + "dbovendry_l": 1.62, + "dbovendry_r": 1.72, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 78, + "hzname": "C3", + "lep_h": 0.3, + "lep_l": 0.1, + "lep_r": 0.3, + "mukey": 3457453, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8.2, + "sandtotal_h": 92, + "sandtotal_l": 88, + "sandtotal_r": 90, + "silttotal_h": 8, + "silttotal_l": 2, + "silttotal_r": 5, + "total_frag_volume": 15, + "wfifteenbar_h": 4.4, + "wfifteenbar_l": 2.3, + "wfifteenbar_r": 3.2, + "wthirdbar_h": 10.5, + "wthirdbar_l": 7.5, + "wthirdbar_r": 8.8 + }, + { + "cec7_h": 6.2, + "cec7_l": 2, + "cec7_r": 4.5, + "chkey": 81890225, + "claytotal_h": 8, + "claytotal_l": 2, + "claytotal_r": 5, + "cokey": 27420740, + "dbovendry_h": 1.73, + "dbovendry_l": 1.63, + "dbovendry_r": 1.68, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 4, + "hzdept_r": 0, + "hzname": "A", + "lep_h": 0.7, + "lep_l": 0, + "lep_r": 0.3, + "mukey": 3457453, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.6, + "sandtotal_h": 87, + "sandtotal_l": 73, + "sandtotal_r": 80, + "silttotal_h": 25, + "silttotal_l": 5, + "silttotal_r": 15, + "total_frag_volume": 7, + "wfifteenbar_h": 6.4, + "wfifteenbar_l": 1.5, + "wfifteenbar_r": 3.9, + "wthirdbar_h": 15.8, + "wthirdbar_l": 7.6, + "wthirdbar_r": 12.3 + }, + { + "cec7_h": 7.6, + "cec7_l": 4.3, + "cec7_r": 7.5, + "chkey": 81890224, + "claytotal_h": 10, + "claytotal_l": 5, + "claytotal_r": 9, + "cokey": 27420740, + "dbovendry_h": 1.66, + "dbovendry_l": 1.62, + "dbovendry_r": 1.65, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 27, + "hzdept_r": 4, + "hzname": "Bw", + "lep_h": 0.9, + "lep_l": 0.3, + "lep_r": 0.7, + "mukey": 3457453, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.8, + "sandtotal_h": 77, + "sandtotal_l": 60, + "sandtotal_r": 70, + "silttotal_h": 32, + "silttotal_l": 13, + "silttotal_r": 21, + "total_frag_volume": 8, + "wfifteenbar_h": 6.9, + "wfifteenbar_l": 2.9, + "wfifteenbar_r": 5.8, + "wthirdbar_h": 16.5, + "wthirdbar_l": 10.2, + "wthirdbar_r": 14.6 + }, + { + "cec7_h": 13.5, + "cec7_l": 8.1, + "cec7_r": 11.2, + "chkey": 81890223, + "claytotal_h": 18, + "claytotal_l": 10, + "claytotal_r": 14, + "cokey": 27420740, + "dbovendry_h": 1.71, + "dbovendry_l": 1.65, + "dbovendry_r": 1.68, + "ec_h": 4, + "ec_l": 0, + "ec_r": 0.5, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 54, + "hzdept_r": 27, + "hzname": "Btk1", + "lep_h": 1.8, + "lep_l": 0.7, + "lep_r": 1.3, + "mukey": 3457453, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 8, + "sandtotal_h": 80, + "sandtotal_l": 60, + "sandtotal_r": 70, + "silttotal_h": 30, + "silttotal_l": 2, + "silttotal_r": 16, + "total_frag_volume": 9, + "wfifteenbar_h": 12.1, + "wfifteenbar_l": 5.1, + "wfifteenbar_r": 8.8, + "wthirdbar_h": 21, + "wthirdbar_l": 12.3, + "wthirdbar_r": 17.6 + }, + { + "cec7_h": 13.5, + "cec7_l": 8.1, + "cec7_r": 11.2, + "chkey": 81890222, + "claytotal_h": 18, + "claytotal_l": 10, + "claytotal_r": 14, + "cokey": 27420740, + "dbovendry_h": 1.72, + "dbovendry_l": 1.65, + "dbovendry_r": 1.68, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.5, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 83, + "hzdept_r": 54, + "hzname": "Btk2", + "lep_h": 1.8, + "lep_l": 0.7, + "lep_r": 1.1, + "mukey": 3457453, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8.2, + "sandtotal_h": 80, + "sandtotal_l": 60, + "sandtotal_r": 70, + "silttotal_h": 30, + "silttotal_l": 2, + "silttotal_r": 16, + "total_frag_volume": 18, + "wfifteenbar_h": 12.1, + "wfifteenbar_l": 5, + "wfifteenbar_r": 8, + "wthirdbar_h": 21, + "wthirdbar_l": 12, + "wthirdbar_r": 15.9 + }, + { + "cec7_h": 7.6, + "cec7_l": 3.5, + "cec7_r": 4.3, + "chkey": 81890221, + "claytotal_h": 10, + "claytotal_l": 4, + "claytotal_r": 5, + "cokey": 27420740, + "dbovendry_h": 1.66, + "dbovendry_l": 1.58, + "dbovendry_r": 1.62, + "ec_h": 4, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 160, + "hzdept_r": 83, + "hzname": "Bkq", + "lep_h": 0.8, + "lep_l": 0.1, + "lep_r": 0.2, + "mukey": 3457453, + "ph1to1h2o_h": 9, + "ph1to1h2o_l": 8.5, + "ph1to1h2o_r": 8.5, + "sandtotal_h": 90, + "sandtotal_l": 75, + "sandtotal_r": 80, + "silttotal_h": 21, + "silttotal_l": 4, + "silttotal_r": 15, + "total_frag_volume": 26, + "wfifteenbar_h": 7.3, + "wfifteenbar_l": 1.6, + "wfifteenbar_r": 2.8, + "wthirdbar_h": 16.7, + "wthirdbar_l": 6.3, + "wthirdbar_r": 9.4 + }, + { + "cec7_h": 12.5, + "cec7_l": 8.2, + "cec7_r": 11.4, + "chkey": 81890226, + "claytotal_h": 18, + "claytotal_l": 12, + "claytotal_r": 17, + "cokey": 27420741, + "dbovendry_h": 1.6, + "dbovendry_l": 1.57, + "dbovendry_r": 1.6, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.5, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 3, + "hzdept_r": 0, + "hzname": "V", + "lep_h": 1.6, + "lep_l": 0.9, + "lep_r": 1.5, + "mukey": 3457453, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8.2, + "sandtotal_h": 38, + "sandtotal_l": 20, + "sandtotal_r": 30, + "silttotal_h": 65, + "silttotal_l": 50, + "silttotal_r": 53, + "total_frag_volume": 8, + "wfifteenbar_h": 10.6, + "wfifteenbar_l": 5.6, + "wfifteenbar_r": 9.6, + "wthirdbar_h": 25.5, + "wthirdbar_l": 17.8, + "wthirdbar_r": 24.1 + }, + { + "cec7_h": 10.8, + "cec7_l": 5.8, + "cec7_r": 9.1, + "chkey": 81890227, + "claytotal_h": 15, + "claytotal_l": 8, + "claytotal_r": 13, + "cokey": 27420741, + "dbovendry_h": 1.75, + "dbovendry_l": 1.68, + "dbovendry_r": 1.73, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 9, + "hzdept_r": 3, + "hzname": "Btk", + "lep_h": 1.2, + "lep_l": 0.4, + "lep_r": 0.9, + "mukey": 3457453, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8.4, + "sandtotal_h": 75, + "sandtotal_l": 60, + "sandtotal_r": 65, + "silttotal_h": 32, + "silttotal_l": 11, + "silttotal_r": 22, + "total_frag_volume": 25, + "wfifteenbar_h": 9.1, + "wfifteenbar_l": 3.3, + "wfifteenbar_r": 6.9, + "wthirdbar_h": 17.2, + "wthirdbar_l": 9, + "wthirdbar_r": 14.1 + }, + { + "cec7_h": 6.4, + "cec7_l": 0.2, + "cec7_r": 4.8, + "chkey": 81890228, + "claytotal_h": 8, + "claytotal_l": 0, + "claytotal_r": 6, + "cokey": 27420741, + "dbovendry_h": 1.65, + "dbovendry_l": 1.62, + "dbovendry_r": 1.63, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 25, + "hzdept_r": 9, + "hzname": "2Bkq1", + "lep_h": 0.6, + "lep_l": 0, + "lep_r": 0.3, + "mukey": 3457453, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8.4, + "sandtotal_h": 98, + "sandtotal_l": 75, + "sandtotal_r": 78, + "silttotal_h": 25, + "silttotal_l": 0, + "silttotal_r": 16, + "total_frag_volume": 30, + "wfifteenbar_h": 5.1, + "wfifteenbar_l": 0, + "wfifteenbar_r": 3.1, + "wthirdbar_h": 13.2, + "wthirdbar_l": 0.8, + "wthirdbar_r": 9.5 + }, + { + "cec7_h": 6.4, + "cec7_l": 0.2, + "cec7_r": 1.9, + "chkey": 81890229, + "claytotal_h": 8, + "claytotal_l": 0, + "claytotal_r": 2, + "cokey": 27420741, + "dbovendry_h": 1.64, + "dbovendry_l": 1.51, + "dbovendry_r": 1.6, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 48, + "hzdept_r": 25, + "hzname": "2Bkq2", + "lep_h": 0.4, + "lep_l": 0, + "lep_r": 0, + "mukey": 3457453, + "ph1to1h2o_h": 9, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8.6, + "sandtotal_h": 100, + "sandtotal_l": 75, + "sandtotal_r": 92, + "silttotal_h": 22, + "silttotal_l": 0, + "silttotal_r": 6, + "total_frag_volume": 37, + "wfifteenbar_h": 3.5, + "wfifteenbar_l": 0, + "wfifteenbar_r": 0.9, + "wthirdbar_h": 8, + "wthirdbar_l": 0.4, + "wthirdbar_r": 4.2 + }, + { + "cec7_h": 6.4, + "cec7_l": 0.2, + "cec7_r": 2.7, + "chkey": 81890230, + "claytotal_h": 8, + "claytotal_l": 0, + "claytotal_r": 3, + "cokey": 27420741, + "dbovendry_h": 1.66, + "dbovendry_l": 1.58, + "dbovendry_r": 1.62, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 89, + "hzdept_r": 48, + "hzname": "2Ckq1", + "lep_h": 0.4, + "lep_l": 0, + "lep_r": 0, + "mukey": 3457453, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.8, + "sandtotal_h": 100, + "sandtotal_l": 75, + "sandtotal_r": 92, + "silttotal_h": 22, + "silttotal_l": 0, + "silttotal_r": 5, + "total_frag_volume": 53, + "wfifteenbar_h": 3.9, + "wfifteenbar_l": 0, + "wfifteenbar_r": 1, + "wthirdbar_h": 8.4, + "wthirdbar_l": 0.4, + "wthirdbar_r": 3.9 + }, + { + "cec7_h": 5, + "cec7_l": 0.2, + "cec7_r": 1.1, + "chkey": 81890231, + "claytotal_h": 6, + "claytotal_l": 0, + "claytotal_r": 1, + "cokey": 27420741, + "dbovendry_h": 1.66, + "dbovendry_l": 1.55, + "dbovendry_r": 1.6, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 150, + "hzdept_r": 89, + "hzname": "2Ckq2", + "lep_h": 0.3, + "lep_l": 0, + "lep_r": 0, + "mukey": 3457453, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.6, + "sandtotal_h": 100, + "sandtotal_l": 87, + "sandtotal_r": 95, + "silttotal_h": 13, + "silttotal_l": 0, + "silttotal_r": 4, + "total_frag_volume": 75, + "wfifteenbar_h": 2.7, + "wfifteenbar_l": 0, + "wfifteenbar_r": 0.2, + "wthirdbar_h": 7, + "wthirdbar_l": 0.3, + "wthirdbar_r": 1.3 + } + ], + "spn": [ + { + "closest_pt_x": -114.80764, + "closest_pt_y": 34.92816, + "cokey": 27420738, + "compkind": "Taxon above family", + "compname": "torriorthents", + "comppct_r": 45, + "dist_meters": 0, + "elev_r": 430, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 3457453, + "nirrcapcl": 7, + "nirrcapscl": "s", + "nirrcapunit": null, + "slope_r": 3, + "taxorder": "Entisols", + "taxsubgrp": null, + "which": "a" + }, + { + "closest_pt_x": -114.80764, + "closest_pt_y": 34.92816, + "cokey": 27420739, + "compkind": "Taxon above family", + "compname": "torripsamments", + "comppct_r": 30, + "dist_meters": 0, + "elev_r": 430, + "irrcapcl": 3, + "irrcapscl": "e", + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 3457453, + "nirrcapcl": 7, + "nirrcapscl": "c", + "nirrcapunit": null, + "slope_r": 2, + "taxorder": "Entisols", + "taxsubgrp": null, + "which": "a" + }, + { + "closest_pt_x": -114.80764, + "closest_pt_y": 34.92816, + "cokey": 27420740, + "compkind": "Taxon above family", + "compname": "haplargids", + "comppct_r": 15, + "dist_meters": 0, + "elev_r": 430, + "irrcapcl": 3, + "irrcapscl": "s", + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 3457453, + "nirrcapcl": 7, + "nirrcapscl": "c", + "nirrcapunit": null, + "slope_r": 1, + "taxorder": "Aridisols", + "taxsubgrp": null, + "which": "a" + }, + { + "closest_pt_x": -114.80764, + "closest_pt_y": 34.92816, + "cokey": 27420741, + "compkind": "Taxon above family", + "compname": "haplocalcids", + "comppct_r": 10, + "dist_meters": 0, + "elev_r": 430, + "irrcapcl": 4, + "irrcapscl": "s", + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 3457453, + "nirrcapcl": 7, + "nirrcapscl": "c", + "nirrcapunit": null, + "slope_r": 3, + "taxorder": "Aridisols", + "taxsubgrp": null, + "which": "a" + } + ] + } +} diff --git a/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[35.59918,-120.491439].json b/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[35.59918,-120.491439].json new file mode 100644 index 0000000..d84e146 --- /dev/null +++ b/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[35.59918,-120.491439].json @@ -0,0 +1,4779 @@ +{ + "elev": { + "location": { + "spatialReference": { + "latestWkid": 4326, + "wkid": 4326 + }, + "x": -120.491439, + "y": 35.59918 + }, + "locationId": 0, + "rasterId": 40361, + "resolution": 1, + "value": "418.948303223" + }, + "soilweb": { + "ESD": [ + { + "cokey": 26734851, + "ecoclassid": "R015XE082CA", + "ecoclassname": "LOAMY SOUTH", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/015X/R015XE082CA" + }, + { + "cokey": 26734852, + "ecoclassid": "R015XE020CA", + "ecoclassname": "Fine Loamy 9-13", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/015X/R015XE020CA" + }, + { + "cokey": 26734862, + "ecoclassid": "R015XE082CA", + "ecoclassname": "LOAMY SOUTH", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/015X/R015XE082CA" + }, + { + "cokey": 26734863, + "ecoclassid": "R015XE020CA", + "ecoclassname": "Fine Loamy 9-13", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/015X/R015XE020CA" + }, + { + "cokey": 26735225, + "ecoclassid": "R015XE020CA", + "ecoclassname": "Fine Loamy 9-13", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/015X/R015XE020CA" + }, + { + "cokey": 26735226, + "ecoclassid": "R015XE020CA", + "ecoclassname": "Fine Loamy 9-13", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/015X/R015XE020CA" + }, + { + "cokey": 26735232, + "ecoclassid": "R015XE020CA", + "ecoclassname": "Fine Loamy 9-13", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/015X/R015XE020CA" + }, + { + "cokey": 26735233, + "ecoclassid": "R015XE020CA", + "ecoclassname": "Fine Loamy 9-13", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/015X/R015XE020CA" + } + ], + "OSD_morph": [ + { + "bottom": 13, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "A1", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "arbuckle", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "sandy loam", + "top": 0 + }, + { + "bottom": 25, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "A2", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "arbuckle", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "sandy loam", + "top": 13 + }, + { + "bottom": 43, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "A3", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "arbuckle", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "sandy loam", + "top": 25 + }, + { + "bottom": 66, + "cf_class": "gravelly", + "cielab_a": 6.58953418555763, + "cielab_b": 25.3982799152076, + "cielab_l": 51.4149149786599, + "hzname": "Bt1", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "arbuckle", + "srgb_b": 0.311115146146663, + "srgb_g": 0.46014971014309, + "srgb_r": 0.577554513328993, + "texture_class": "sandy loam", + "top": 43 + }, + { + "bottom": 86, + "cf_class": "gravelly", + "cielab_a": 6.58953418555763, + "cielab_b": 25.3982799152076, + "cielab_l": 51.4149149786599, + "hzname": "Bt2", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "arbuckle", + "srgb_b": 0.311115146146663, + "srgb_g": 0.46014971014309, + "srgb_r": 0.577554513328993, + "texture_class": "sandy clay loam", + "top": 66 + }, + { + "bottom": 112, + "cf_class": "gravelly", + "cielab_a": 6.58953418555763, + "cielab_b": 25.3982799152076, + "cielab_l": 51.4149149786599, + "hzname": "Btk", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "arbuckle", + "srgb_b": 0.311115146146663, + "srgb_g": 0.46014971014309, + "srgb_r": 0.577554513328993, + "texture_class": "loam", + "top": 86 + }, + { + "bottom": 173, + "cf_class": "very gravelly", + "cielab_a": 6.58953418555763, + "cielab_b": 25.3982799152076, + "cielab_l": 51.4149149786599, + "hzname": "BCk", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "arbuckle", + "srgb_b": 0.311115146146663, + "srgb_g": 0.46014971014309, + "srgb_r": 0.577554513328993, + "texture_class": "sandy clay loam", + "top": 112 + }, + { + "bottom": 2.5, + "cf_class": null, + "cielab_a": 5.75265137752021, + "cielab_b": 11.6701083904344, + "cielab_l": 40.9091053785084, + "hzname": "A1", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 4, + "series": "ayar", + "srgb_b": 0.304639193182857, + "srgb_g": 0.363184577749211, + "srgb_r": 0.441777408935627, + "texture_class": "silty clay", + "top": 0 + }, + { + "bottom": 23, + "cf_class": null, + "cielab_a": 5.75265137752021, + "cielab_b": 11.6701083904344, + "cielab_l": 40.9091053785084, + "hzname": "A2", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 4, + "series": "ayar", + "srgb_b": 0.304639193182857, + "srgb_g": 0.363184577749211, + "srgb_r": 0.441777408935627, + "texture_class": "silty clay", + "top": 2.5 + }, + { + "bottom": 61, + "cf_class": null, + "cielab_a": 5.02551551446223, + "cielab_b": 11.093351114111, + "cielab_l": 51.385189113304, + "hzname": "A3", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 5, + "series": "ayar", + "srgb_b": 0.407097367599501, + "srgb_g": 0.466262487608025, + "srgb_r": 0.54196191608734, + "texture_class": "clay", + "top": 23 + }, + { + "bottom": 99, + "cf_class": null, + "cielab_a": 9.84655820146585, + "cielab_b": 22.5907048453292, + "cielab_l": 51.407225870377, + "hzname": "Bss", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 5, + "series": "ayar", + "srgb_b": 0.330951470562884, + "srgb_g": 0.452732818442716, + "srgb_r": 0.592109859281186, + "texture_class": "clay", + "top": 61 + }, + { + "bottom": 114, + "cf_class": null, + "cielab_a": 9.84655820146585, + "cielab_b": 22.5907048453292, + "cielab_l": 51.407225870377, + "hzname": "Bssk1", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 5, + "series": "ayar", + "srgb_b": 0.330951470562884, + "srgb_g": 0.452732818442716, + "srgb_r": 0.592109859281186, + "texture_class": "clay", + "top": 99 + }, + { + "bottom": 140, + "cf_class": null, + "cielab_a": 9.84655820146585, + "cielab_b": 22.5907048453292, + "cielab_l": 51.407225870377, + "hzname": "Bssk2", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 5, + "series": "ayar", + "srgb_b": 0.330951470562884, + "srgb_g": 0.452732818442716, + "srgb_r": 0.592109859281186, + "texture_class": "silty clay", + "top": 114 + }, + { + "bottom": 155, + "cf_class": null, + "cielab_a": 8.81983377592771, + "cielab_b": 22.7800580194489, + "cielab_l": 71.5566437908835, + "hzname": "C", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 7, + "series": "ayar", + "srgb_b": 0.526731598731362, + "srgb_g": 0.660581064041243, + "srgb_r": 0.805763039818603, + "texture_class": "silty clay", + "top": 140 + }, + { + "bottom": 178, + "cf_class": null, + "cielab_a": 13.6480264347485, + "cielab_b": 34.2977452233407, + "cielab_l": 61.6062158499921, + "hzname": "Cr", + "matrix_dry_color_chroma": 6, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 6, + "series": "ayar", + "srgb_b": 0.346615933782356, + "srgb_g": 0.543083841882347, + "srgb_r": 0.742225824337242, + "texture_class": "sand", + "top": 155 + }, + { + "bottom": 20, + "cf_class": null, + "cielab_a": 1.32004586474704, + "cielab_b": 13.7174249230097, + "cielab_l": 51.3940899501304, + "hzname": "A", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 5, + "series": "balcom", + "srgb_b": 0.389079428537392, + "srgb_g": 0.474084046104631, + "srgb_r": 0.524359621723063, + "texture_class": "loam", + "top": 0 + }, + { + "bottom": 58, + "cf_class": null, + "cielab_a": 0.680039824635603, + "cielab_b": 14.3263472503311, + "cielab_l": 61.5747851305097, + "hzname": "Bk", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 6, + "series": "balcom", + "srgb_b": 0.484462289310216, + "srgb_g": 0.578016804839716, + "srgb_r": 0.626868011624415, + "texture_class": "loam", + "top": 20 + }, + { + "bottom": 152, + "cf_class": null, + "cielab_a": -1.78346305823274, + "cielab_b": 21.7927435741908, + "cielab_l": 61.5933653105813, + "hzname": "Cr", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "5Y", + "matrix_dry_color_value": 6, + "series": "balcom", + "srgb_b": 0.432199162999742, + "srgb_g": 0.58215252463781, + "srgb_r": 0.627010762560015, + "texture_class": "loam", + "top": 58 + }, + { + "bottom": 8, + "cf_class": "channery", + "cielab_a": 2.89064271156414, + "cielab_b": 13.064616880291, + "cielab_l": 61.5701956263403, + "hzname": "A1", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "calleguas", + "srgb_b": 0.493496194704249, + "srgb_g": 0.573230189582846, + "srgb_r": 0.638561136802744, + "texture_class": "clay loam", + "top": 0 + }, + { + "bottom": 41, + "cf_class": "channery", + "cielab_a": 2.89064271156414, + "cielab_b": 13.064616880291, + "cielab_l": 61.5701956263403, + "hzname": "A2", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "calleguas", + "srgb_b": 0.493496194704249, + "srgb_g": 0.573230189582846, + "srgb_r": 0.638561136802744, + "texture_class": "clay loam", + "top": 8 + }, + { + "bottom": 61, + "cf_class": null, + "cielab_a": null, + "cielab_b": null, + "cielab_l": null, + "hzname": "Cr", + "matrix_dry_color_chroma": null, + "matrix_dry_color_hue": null, + "matrix_dry_color_value": null, + "series": "calleguas", + "srgb_b": null, + "srgb_g": null, + "srgb_r": null, + "texture_class": null, + "top": 41 + }, + { + "bottom": 23, + "cf_class": null, + "cielab_a": 3.22690261250264, + "cielab_b": 12.65785928239, + "cielab_l": 51.3902579549971, + "hzname": "A11", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "calodo", + "srgb_b": 0.396431450662527, + "srgb_g": 0.470047004516309, + "srgb_r": 0.534105039939954, + "texture_class": "clay loam", + "top": 0 + }, + { + "bottom": 41, + "cf_class": null, + "cielab_a": 3.22690261250264, + "cielab_b": 12.65785928239, + "cielab_l": 51.3902579549971, + "hzname": "A12ca", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "calodo", + "srgb_b": 0.396431450662527, + "srgb_g": 0.470047004516309, + "srgb_r": 0.534105039939954, + "texture_class": "clay loam", + "top": 23 + }, + { + "bottom": 61, + "cf_class": null, + "cielab_a": null, + "cielab_b": null, + "cielab_l": null, + "hzname": "Cr", + "matrix_dry_color_chroma": null, + "matrix_dry_color_hue": null, + "matrix_dry_color_value": null, + "series": "calodo", + "srgb_b": null, + "srgb_g": null, + "srgb_r": null, + "texture_class": null, + "top": 41 + }, + { + "bottom": 18, + "cf_class": null, + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "Ap", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "camatta", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "loam", + "top": 0 + }, + { + "bottom": 31, + "cf_class": null, + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "A", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "camatta", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "loam", + "top": 18 + }, + { + "bottom": 51, + "cf_class": null, + "cielab_a": 1.04219683490708, + "cielab_b": 7.1047602136578, + "cielab_l": 81.3128871284898, + "hzname": "Bkm", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 8, + "series": "camatta", + "srgb_b": 0.740512439440642, + "srgb_g": 0.787615918671633, + "srgb_r": 0.822320274031211, + "texture_class": null, + "top": 31 + }, + { + "bottom": 152, + "cf_class": null, + "cielab_a": 4.58523895119684, + "cielab_b": 25.9392440290408, + "cielab_l": 81.3568370024647, + "hzname": "Bk", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 8, + "series": "camatta", + "srgb_b": 0.603706186322556, + "srgb_g": 0.775085688364336, + "srgb_r": 0.894364527900181, + "texture_class": "very fine sandy loam", + "top": 51 + }, + { + "bottom": 15, + "cf_class": null, + "cielab_a": -0.521455536413223, + "cielab_b": 6.44793110368402, + "cielab_l": 40.9004243507968, + "hzname": "Ap", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "5Y", + "matrix_dry_color_value": 4, + "series": "diablo", + "srgb_b": 0.336992609458457, + "srgb_g": 0.377644134228003, + "srgb_r": 0.392084084620869, + "texture_class": "silty clay", + "top": 0 + }, + { + "bottom": 38, + "cf_class": null, + "cielab_a": -0.521455536413223, + "cielab_b": 6.44793110368402, + "cielab_l": 40.9004243507968, + "hzname": "A", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "5Y", + "matrix_dry_color_value": 4, + "series": "diablo", + "srgb_b": 0.336992609458457, + "srgb_g": 0.377644134228003, + "srgb_r": 0.392084084620869, + "texture_class": "silty clay", + "top": 15 + }, + { + "bottom": 66, + "cf_class": null, + "cielab_a": -0.547327554136889, + "cielab_b": 7.54027158785877, + "cielab_l": 51.3799259210484, + "hzname": "Bkss1", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "5Y", + "matrix_dry_color_value": 5, + "series": "diablo", + "srgb_b": 0.429867457489482, + "srgb_g": 0.479313155915554, + "srgb_r": 0.497503497652783, + "texture_class": "silty clay", + "top": 38 + }, + { + "bottom": 81, + "cf_class": null, + "cielab_a": -0.547327554136889, + "cielab_b": 7.54027158785877, + "cielab_l": 51.3799259210484, + "hzname": "Bkss2", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "5Y", + "matrix_dry_color_value": 5, + "series": "diablo", + "srgb_b": 0.429867457489482, + "srgb_g": 0.479313155915554, + "srgb_r": 0.497503497652783, + "texture_class": "silty clay", + "top": 66 + }, + { + "bottom": 107, + "cf_class": null, + "cielab_a": -1.35690966378949, + "cielab_b": 14.9988146490422, + "cielab_l": 61.5777755255565, + "hzname": "Bk", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "5Y", + "matrix_dry_color_value": 6, + "series": "diablo", + "srgb_b": 0.479503730070902, + "srgb_g": 0.582422859186915, + "srgb_r": 0.614797600511416, + "texture_class": "silty clay", + "top": 81 + }, + { + "bottom": 127, + "cf_class": null, + "cielab_a": -1.02046841909709, + "cielab_b": 14.3787229099553, + "cielab_l": 51.3972239880884, + "hzname": "C", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "5Y", + "matrix_dry_color_value": 5, + "series": "diablo", + "srgb_b": 0.384301645027413, + "srgb_g": 0.479026579980127, + "srgb_r": 0.510824547640649, + "texture_class": "silty clay loam", + "top": 107 + }, + { + "bottom": 152, + "cf_class": null, + "cielab_a": -1.35690966378949, + "cielab_b": 14.9988146490422, + "cielab_l": 61.5777755255565, + "hzname": "Cr", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "5Y", + "matrix_dry_color_value": 6, + "series": "diablo", + "srgb_b": 0.479503730070902, + "srgb_g": 0.582422859186915, + "srgb_r": 0.614797600511416, + "texture_class": "sand", + "top": 127 + }, + { + "bottom": 58, + "cf_class": null, + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "A1", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "greenfield", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "coarse sandy loam", + "top": 0 + }, + { + "bottom": 94, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "B1", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "greenfield", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "sandy loam", + "top": 58 + }, + { + "bottom": 130, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "B2t", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "greenfield", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "fine sandy loam", + "top": 94 + }, + { + "bottom": 183, + "cf_class": null, + "cielab_a": 9.05135376199706, + "cielab_b": 38.2755840722884, + "cielab_l": 61.6159512418508, + "hzname": "C", + "matrix_dry_color_chroma": 6, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "greenfield", + "srgb_b": 0.316143831212481, + "srgb_g": 0.554310107009307, + "srgb_r": 0.720619336639585, + "texture_class": "fine sandy loam", + "top": 130 + }, + { + "bottom": 23, + "cf_class": null, + "cielab_a": 2.22631909703591, + "cielab_b": 6.22623819927245, + "cielab_l": 30.2411403125398, + "hzname": "Ap", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 3, + "series": "linne", + "srgb_b": 0.24183809974853, + "srgb_g": 0.273363635444249, + "srgb_r": 0.30796985092764, + "texture_class": "clay loam", + "top": 0 + }, + { + "bottom": 36, + "cf_class": null, + "cielab_a": 1.46898546730889, + "cielab_b": 6.1399480339165, + "cielab_l": 40.8982555194042, + "hzname": "A12", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "linne", + "srgb_b": 0.339204032769121, + "srgb_g": 0.373572298991998, + "srgb_r": 0.403971386567422, + "texture_class": "clay loam", + "top": 23 + }, + { + "bottom": 74, + "cf_class": null, + "cielab_a": 1.86260532006871, + "cielab_b": 6.77440192712013, + "cielab_l": 51.3762468196222, + "hzname": "A13", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "linne", + "srgb_b": 0.435259851904397, + "srgb_g": 0.474245896402447, + "srgb_r": 0.511514594063427, + "texture_class": "clay loam", + "top": 36 + }, + { + "bottom": 81, + "cf_class": null, + "cielab_a": 1.86260532006871, + "cielab_b": 6.77440192712013, + "cielab_l": 51.3762468196222, + "hzname": "AC", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "linne", + "srgb_b": 0.435259851904397, + "srgb_g": 0.474245896402447, + "srgb_r": 0.511514594063427, + "texture_class": "sandy clay loam", + "top": 74 + }, + { + "bottom": 91, + "cf_class": null, + "cielab_a": 2.50542437533247, + "cielab_b": 13.2158439165934, + "cielab_l": 71.5385868490813, + "hzname": "C1ca", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 7, + "series": "linne", + "srgb_b": 0.593723155494692, + "srgb_g": 0.677858469484996, + "srgb_r": 0.74282064303885, + "texture_class": "fine sandy loam", + "top": 81 + }, + { + "bottom": 130, + "cf_class": null, + "cielab_a": null, + "cielab_b": null, + "cielab_l": null, + "hzname": "C2r", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "N", + "matrix_dry_color_value": 8, + "series": "linne", + "srgb_b": null, + "srgb_g": null, + "srgb_r": null, + "texture_class": null, + "top": 91 + }, + { + "bottom": 36, + "cf_class": null, + "cielab_a": 4.85456052724254, + "cielab_b": 18.8945154624908, + "cielab_l": 51.4032284580631, + "hzname": "A", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "los osos", + "srgb_b": 0.354980541712737, + "srgb_g": 0.465230900713657, + "srgb_r": 0.556494226652486, + "texture_class": "loam", + "top": 0 + }, + { + "bottom": 61, + "cf_class": null, + "cielab_a": 6.58953418555763, + "cielab_b": 25.3982799152076, + "cielab_l": 51.4149149786599, + "hzname": "Btss1", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "los osos", + "srgb_b": 0.311115146146663, + "srgb_g": 0.46014971014309, + "srgb_r": 0.577554513328993, + "texture_class": "clay", + "top": 36 + }, + { + "bottom": 81, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "Btss2", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "los osos", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "clay loam", + "top": 61 + }, + { + "bottom": 99, + "cf_class": null, + "cielab_a": 1.91744162876556, + "cielab_b": 27.7993253570148, + "cielab_l": 71.5719888050468, + "hzname": "C", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 7, + "series": "los osos", + "srgb_b": 0.489261392683699, + "srgb_g": 0.676503440234562, + "srgb_r": 0.770884448153244, + "texture_class": "sandy loam", + "top": 81 + }, + { + "bottom": 109, + "cf_class": null, + "cielab_a": 6.58953418555763, + "cielab_b": 25.3982799152076, + "cielab_l": 51.4149149786599, + "hzname": "Cr", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "los osos", + "srgb_b": 0.311115146146663, + "srgb_g": 0.46014971014309, + "srgb_r": 0.577554513328993, + "texture_class": "sand", + "top": 99 + }, + { + "bottom": 30, + "cf_class": null, + "cielab_a": 0.680039824635603, + "cielab_b": 14.3263472503311, + "cielab_l": 61.5747851305097, + "hzname": "Ap", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 6, + "series": "metz", + "srgb_b": 0.484462289310216, + "srgb_g": 0.578016804839716, + "srgb_r": 0.626868011624415, + "texture_class": "fine sandy loam", + "top": 0 + }, + { + "bottom": 74, + "cf_class": null, + "cielab_a": 0.680039824635603, + "cielab_b": 14.3263472503311, + "cielab_l": 61.5747851305097, + "hzname": "C1", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 6, + "series": "metz", + "srgb_b": 0.484462289310216, + "srgb_g": 0.578016804839716, + "srgb_r": 0.626868011624415, + "texture_class": "fine sand", + "top": 30 + }, + { + "bottom": 97, + "cf_class": null, + "cielab_a": 0.680039824635603, + "cielab_b": 14.3263472503311, + "cielab_l": 61.5747851305097, + "hzname": "C2", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 6, + "series": "metz", + "srgb_b": 0.484462289310216, + "srgb_g": 0.578016804839716, + "srgb_r": 0.626868011624415, + "texture_class": "silty clay", + "top": 74 + }, + { + "bottom": 132, + "cf_class": null, + "cielab_a": 0.680039824635603, + "cielab_b": 14.3263472503311, + "cielab_l": 61.5747851305097, + "hzname": "C3", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 6, + "series": "metz", + "srgb_b": 0.484462289310216, + "srgb_g": 0.578016804839716, + "srgb_r": 0.626868011624415, + "texture_class": "very fine sandy loam", + "top": 97 + }, + { + "bottom": 300, + "cf_class": null, + "cielab_a": 0.680039824635603, + "cielab_b": 14.3263472503311, + "cielab_l": 61.5747851305097, + "hzname": "C4", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 6, + "series": "metz", + "srgb_b": 0.484462289310216, + "srgb_g": 0.578016804839716, + "srgb_r": 0.626868011624415, + "texture_class": "fine sand", + "top": 132 + }, + { + "bottom": 28, + "cf_class": null, + "cielab_a": 1.32004586474704, + "cielab_b": 13.7174249230097, + "cielab_l": 51.3940899501304, + "hzname": "Ap", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 5, + "series": "mocho", + "srgb_b": 0.389079428537392, + "srgb_g": 0.474084046104631, + "srgb_r": 0.524359621723063, + "texture_class": "loam", + "top": 0 + }, + { + "bottom": 46, + "cf_class": null, + "cielab_a": 1.32004586474704, + "cielab_b": 13.7174249230097, + "cielab_l": 51.3940899501304, + "hzname": "A", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 5, + "series": "mocho", + "srgb_b": 0.389079428537392, + "srgb_g": 0.474084046104631, + "srgb_r": 0.524359621723063, + "texture_class": "loam", + "top": 28 + }, + { + "bottom": 74, + "cf_class": null, + "cielab_a": 0.680039824635603, + "cielab_b": 14.3263472503311, + "cielab_l": 61.5747851305097, + "hzname": "C1", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 6, + "series": "mocho", + "srgb_b": 0.484462289310216, + "srgb_g": 0.578016804839716, + "srgb_r": 0.626868011624415, + "texture_class": "loam", + "top": 46 + }, + { + "bottom": 183, + "cf_class": null, + "cielab_a": 0.680039824635603, + "cielab_b": 14.3263472503311, + "cielab_l": 61.5747851305097, + "hzname": "C2", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 6, + "series": "mocho", + "srgb_b": 0.484462289310216, + "srgb_g": 0.578016804839716, + "srgb_r": 0.626868011624415, + "texture_class": "fine sandy loam", + "top": 74 + }, + { + "bottom": 13, + "cf_class": null, + "cielab_a": 3.65979819919923, + "cielab_b": 13.2199440544513, + "cielab_l": 40.9141543373182, + "hzname": "A1", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "nacimiento", + "srgb_b": 0.294406483459129, + "srgb_g": 0.367561696190658, + "srgb_r": 0.432479607618406, + "texture_class": "silty clay loam", + "top": 0 + }, + { + "bottom": 46, + "cf_class": null, + "cielab_a": 3.65979819919923, + "cielab_b": 13.2199440544513, + "cielab_l": 40.9141543373182, + "hzname": "A2", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "nacimiento", + "srgb_b": 0.294406483459129, + "srgb_g": 0.367561696190658, + "srgb_r": 0.432479607618406, + "texture_class": "silty clay loam", + "top": 13 + }, + { + "bottom": 71, + "cf_class": null, + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "Bk", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "nacimiento", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "silty clay loam", + "top": 46 + }, + { + "bottom": 99, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "Cr", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "nacimiento", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": null, + "top": 71 + }, + { + "bottom": 15, + "cf_class": null, + "cielab_a": 2.89064271156414, + "cielab_b": 13.064616880291, + "cielab_l": 61.5701956263403, + "hzname": "Ap", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "polonio", + "srgb_b": 0.493496194704249, + "srgb_g": 0.573230189582846, + "srgb_r": 0.638561136802744, + "texture_class": "clay loam", + "top": 0 + }, + { + "bottom": 36, + "cf_class": null, + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "A", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "polonio", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "clay loam", + "top": 15 + }, + { + "bottom": 124, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "Bk1", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "polonio", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "clay loam", + "top": 36 + }, + { + "bottom": 175, + "cf_class": null, + "cielab_a": 9.84655820146585, + "cielab_b": 22.5907048453292, + "cielab_l": 51.407225870377, + "hzname": "Bk2", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 5, + "series": "polonio", + "srgb_b": 0.330951470562884, + "srgb_g": 0.452732818442716, + "srgb_r": 0.592109859281186, + "texture_class": "clay loam", + "top": 124 + }, + { + "bottom": 20, + "cf_class": "gravelly", + "cielab_a": 4.85456052724254, + "cielab_b": 18.8945154624908, + "cielab_l": 51.4032284580631, + "hzname": "Ap", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "positas", + "srgb_b": 0.354980541712737, + "srgb_g": 0.465230900713657, + "srgb_r": 0.556494226652486, + "texture_class": "loam", + "top": 0 + }, + { + "bottom": 28, + "cf_class": "gravelly", + "cielab_a": 4.85456052724254, + "cielab_b": 18.8945154624908, + "cielab_l": 51.4032284580631, + "hzname": "A", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "positas", + "srgb_b": 0.354980541712737, + "srgb_g": 0.465230900713657, + "srgb_r": 0.556494226652486, + "texture_class": "loam", + "top": 20 + }, + { + "bottom": 51, + "cf_class": null, + "cielab_a": 10.3935435131671, + "cielab_b": 15.6872611444573, + "cielab_l": 40.9147576587472, + "hzname": "Bt1", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 4, + "series": "positas", + "srgb_b": 0.27970702949296, + "srgb_g": 0.351593386949632, + "srgb_r": 0.475095978452242, + "texture_class": "clay", + "top": 28 + }, + { + "bottom": 74, + "cf_class": null, + "cielab_a": 13.3742743259118, + "cielab_b": 20.7240750460895, + "cielab_l": 40.922656817286, + "hzname": "Bt2", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 4, + "series": "positas", + "srgb_b": 0.247730598344407, + "srgb_g": 0.343312649829985, + "srgb_r": 0.498562877493358, + "texture_class": "clay", + "top": 51 + }, + { + "bottom": 99, + "cf_class": null, + "cielab_a": 12.2894515857245, + "cielab_b": 28.641008023458, + "cielab_l": 51.4165825520227, + "hzname": "Bt3", + "matrix_dry_color_chroma": 5, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 5, + "series": "positas", + "srgb_b": 0.289990827592192, + "srgb_g": 0.445675465122358, + "srgb_r": 0.61456773130222, + "texture_class": "clay loam", + "top": 74 + }, + { + "bottom": 137, + "cf_class": null, + "cielab_a": 7.44190892048435, + "cielab_b": 31.7712099577674, + "cielab_l": 61.6063521148112, + "hzname": "Bt4", + "matrix_dry_color_chroma": 5, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "positas", + "srgb_b": 0.363348955847589, + "srgb_g": 0.559191853495347, + "srgb_r": 0.702207229538416, + "texture_class": "clay loam", + "top": 99 + }, + { + "bottom": 163, + "cf_class": "very gravelly", + "cielab_a": 7.44190892048435, + "cielab_b": 31.7712099577674, + "cielab_l": 61.6063521148112, + "hzname": "2C", + "matrix_dry_color_chroma": 5, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "positas", + "srgb_b": 0.363348955847589, + "srgb_g": 0.559191853495347, + "srgb_r": 0.702207229538416, + "texture_class": "sandy clay loam", + "top": 137 + }, + { + "bottom": 10, + "cf_class": null, + "cielab_a": 1.46898546730889, + "cielab_b": 6.1399480339165, + "cielab_l": 40.8982555194042, + "hzname": "Ap", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "rincon", + "srgb_b": 0.339204032769121, + "srgb_g": 0.373572298991998, + "srgb_r": 0.403971386567422, + "texture_class": "silty clay loam", + "top": 0 + }, + { + "bottom": 41, + "cf_class": null, + "cielab_a": 1.46898546730889, + "cielab_b": 6.1399480339165, + "cielab_l": 40.8982555194042, + "hzname": "A12", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "rincon", + "srgb_b": 0.339204032769121, + "srgb_g": 0.373572298991998, + "srgb_r": 0.403971386567422, + "texture_class": "silty clay loam", + "top": 10 + }, + { + "bottom": 64, + "cf_class": null, + "cielab_a": 3.65979819919923, + "cielab_b": 13.2199440544513, + "cielab_l": 40.9141543373182, + "hzname": "B21t", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "rincon", + "srgb_b": 0.294406483459129, + "srgb_g": 0.367561696190658, + "srgb_r": 0.432479607618406, + "texture_class": "sandy clay", + "top": 41 + }, + { + "bottom": 79, + "cf_class": null, + "cielab_a": 3.65979819919923, + "cielab_b": 13.2199440544513, + "cielab_l": 40.9141543373182, + "hzname": "B22t", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "rincon", + "srgb_b": 0.294406483459129, + "srgb_g": 0.367561696190658, + "srgb_r": 0.432479607618406, + "texture_class": "sandy clay", + "top": 64 + }, + { + "bottom": 102, + "cf_class": null, + "cielab_a": 4.85456052724254, + "cielab_b": 18.8945154624908, + "cielab_l": 51.4032284580631, + "hzname": "B3tca", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "rincon", + "srgb_b": 0.354980541712737, + "srgb_g": 0.465230900713657, + "srgb_r": 0.556494226652486, + "texture_class": "sandy clay loam", + "top": 79 + }, + { + "bottom": 152, + "cf_class": null, + "cielab_a": 6.58953418555763, + "cielab_b": 25.3982799152076, + "cielab_l": 51.4149149786599, + "hzname": "Cca", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "rincon", + "srgb_b": 0.311115146146663, + "srgb_g": 0.46014971014309, + "srgb_r": 0.577554513328993, + "texture_class": "sandy clay loam", + "top": 102 + }, + { + "bottom": 25, + "cf_class": null, + "cielab_a": 1.46898546730889, + "cielab_b": 6.1399480339165, + "cielab_l": 40.8982555194042, + "hzname": "A", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "shimmon", + "srgb_b": 0.339204032769121, + "srgb_g": 0.373572298991998, + "srgb_r": 0.403971386567422, + "texture_class": "loam", + "top": 0 + }, + { + "bottom": 53, + "cf_class": null, + "cielab_a": 6.58953418555763, + "cielab_b": 25.3982799152076, + "cielab_l": 51.4149149786599, + "hzname": "Bt1", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "shimmon", + "srgb_b": 0.311115146146663, + "srgb_g": 0.46014971014309, + "srgb_r": 0.577554513328993, + "texture_class": "clay loam", + "top": 25 + }, + { + "bottom": 74, + "cf_class": null, + "cielab_a": 5.28169511492699, + "cielab_b": 25.8417685709422, + "cielab_l": 71.5656562524201, + "hzname": "Bt2", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 7, + "series": "shimmon", + "srgb_b": 0.504075369797917, + "srgb_g": 0.66878318014695, + "srgb_r": 0.788974560813402, + "texture_class": "clay loam", + "top": 53 + }, + { + "bottom": 99, + "cf_class": null, + "cielab_a": 5.28169511492699, + "cielab_b": 25.8417685709422, + "cielab_l": 71.5656562524201, + "hzname": "Cr", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 7, + "series": "shimmon", + "srgb_b": 0.504075369797917, + "srgb_g": 0.66878318014695, + "srgb_r": 0.788974560813402, + "texture_class": "sand", + "top": 74 + } + ], + "OSD_narrative": [ + { + "brief_narrative": "The Arbuckle series consists of very deep, well drained soils that formed in alluvium from sedimentary and metamorphic rocks. Arbuckle soils are on low terraces, and have slopes of 0 to 75 percent. The mean annual precipitation is about 508 millimeters (20 inches) and the mean annual air temperature is about 16 degrees C (61 degrees F).", + "series": "arbuckle" + }, + { + "brief_narrative": "The Ayar series consists of deep or very deep, well drained soils that formed in material weathered from decomposed alkaline shales and sandstone on rolling hills. Slope is 5 to 75 percent. The mean annual precipitation is about 508 centimeters (20 inches) and the mean annual air temperature is about 16 degrees C (60 degrees F).", + "series": "ayar" + }, + { + "brief_narrative": "The Balcom series consists of moderately deep, well drained soils that formed in material that weathered from soft, calcareous shale and sandstone. Balcom soils are on hills and have slopes of 5 to 75 percent. The mean annual precipitation is about 18 inches and the mean annual air temperature is about 61 degrees F.", + "series": "balcom" + }, + { + "brief_narrative": "The Calleguas series consists of very shallow and shallow, well drained soils formed on uplands, hills and mountains in material weathered from sedimentary rocks. Calleguas soils have slopes of 9 to 75 percent. The mean annual precipitation is about 406 millimeters (16 inches) and the mean annual air temperature is about 16 degrees C (60 degrees F).", + "series": "calleguas" + }, + { + "brief_narrative": "The Calodo series consists of shallow, well drained soils that formed in material weathered from calcareous shale and sandstone. Calodo soils are on uplands and have slopes of 15 to 75 percent. The mean annual precipitation is about 16 inches and the mean annual air temperature is about 60 degrees F.", + "series": "calodo" + }, + { + "brief_narrative": "The Camatta series are very shallow and shallow, well drained soils that formed in alluvial material from calcareous sediments. Camatta soils are on high stream terraces and have slopes of 5 to 30 percent. Mean annual precipitation is about 254 millimeters (10 inches) and the mean annual air temperature is about 16 degrees C (60 degrees F).", + "series": "camatta" + }, + { + "brief_narrative": "The Diablo series is a member of the fine, smectitic, thermic family of Aridic Haploxererts. Typically, Diablo soils have dark gray, neutral and mildly alkaline, silty clay upper A horizons, gray and olive gray, calcareous, silty clay lower A horizons, and light olive gray, silty clay AC and C horizons that rest on shale.", + "series": "diablo" + }, + { + "brief_narrative": "The Greenfield series consists of deep, well drained soils that formed in moderately coarse and coarse textured alluvium derived from granitic and mixed rock sources. Greenfield soils are on alluvial fans and terraces and have slopes of 0 to 30 percent. The mean annual precipitation is about 15 inches and the mean annual air temperature is about 62 degrees F.", + "series": "greenfield" + }, + { + "brief_narrative": "The Linne series consists of moderately deep, well drained soils that formed in material weathered from fairly soft shale and sandstone. Linne soils are on hills and have slopes of 5 to 75 percent. The mean annual precipitation is about 16 inches and the mean annual air temperature is about 59 degrees F.", + "series": "linne" + }, + { + "brief_narrative": "The Los Osos series consists of moderately deep, well drained soils that formed in material weathered from sandstone and shale. Los Osos soils are on uplands and have slopes of 5 to 75 percent. The mean annual precipitation is about 25 inches and the mean annual air temperature is about 60 degrees F.", + "series": "los osos" + }, + { + "brief_narrative": "The Metz series consists of very deep, somewhat excessively drained soils that formed in alluvial material from mixed, but dominantly sedimentary rocks. Metz soils are on floodplains and alluvial fans and have slopes of 0 to 15 percent. The mean annual precipitation is about 15 inches and the mean annual air temperature is about 59 degrees F.", + "series": "metz" + }, + { + "brief_narrative": "The Mocho series consists of very deep, well drained soils that formed in alluvium derived mostly from sandstone and shale rock sources. Mocho soils are on alluvial fans and have slopes of 0 to 9 percent. The mean annual precipitation is about 16 inches and the mean annual air temperature is about 59 degrees F.", + "series": "mocho" + }, + { + "brief_narrative": "The Nacimiento series consists of moderately deep, well drained soils that formed in material weathered from calcareous shale and sandstone. Nacimiento soils are on rolling uplands and have mostly complex slopes of 9 to 75 percent. The mean annual precipitation is about 16 inches and the mean annual air temperature is about 60 degrees F.", + "series": "nacimiento" + }, + { + "brief_narrative": "The Polonio series consists of very deep, well drained soils that formed in calcareous sedimentary alluvium. Polonio soils are on alluvial fans and have slopes of 0 to 9 percent. The mean annual precipitation is about 10 inches, and the mean annual air temperature is about 60 degrees F.", + "series": "polonio" + }, + { + "brief_narrative": "The Positas series consists ofdeep and very deep, moderately well drained soils that formed in alluvial material from mixed rock sources. Positas soils are on stream terraces and have slopes of 2 to 75 percent. The mean annual precipitation is about 20 inches and the mean annual air temperature is about 60 degrees F.", + "series": "positas" + }, + { + "brief_narrative": "The Rincon series consists of deep, well drained soils that formed in alluvium from sedimentary rocks. Rincon soils are on old alluvial fans and both stream and marine terraces, and have slopes of O to 30 percent. The mean annual precipitation is about 16 inches and the mean annual air temperature is about 60 degrees F.", + "series": "rincon" + }, + { + "brief_narrative": "The Shimmon series consists of moderately deep, well drained soils that formed in material weathered from sandstone. Shimmon soils are on hills and mountains and have slopes of 15 to 75 percent. The mean annual precipitation is about 16 inches and the mean annual air temperature is about 60F.", + "series": "shimmon" + } + ], + "hz": [ + { + "cec7_h": 15, + "cec7_l": 10, + "cec7_r": 12.5, + "chkey": 79823179, + "claytotal_h": 27, + "claytotal_l": 18, + "claytotal_r": 22.5, + "cokey": 26734851, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.67, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 30, + "hzdept_r": 0, + "hzname": "H1", + "lep_h": 5.9, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 457217, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8.2, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 39.8, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 37.7, + "total_frag_volume": 10, + "wfifteenbar_h": 17, + "wfifteenbar_l": 9.4, + "wfifteenbar_r": 13, + "wthirdbar_h": 31.1, + "wthirdbar_l": 22.6, + "wthirdbar_r": 27 + }, + { + "cec7_h": 15, + "cec7_l": 10, + "cec7_r": 12.5, + "chkey": 79823185, + "claytotal_h": 27, + "claytotal_l": 18, + "claytotal_r": 22.5, + "cokey": 26734862, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.67, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 30, + "hzdept_r": 0, + "hzname": "H1", + "lep_h": 5.9, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 457218, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8.2, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 39.8, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 37.7, + "total_frag_volume": 10, + "wfifteenbar_h": 17, + "wfifteenbar_l": 9.4, + "wfifteenbar_r": 13, + "wthirdbar_h": 31.1, + "wthirdbar_l": 22.6, + "wthirdbar_r": 27 + }, + { + "cec7_h": 15, + "cec7_l": 10, + "cec7_r": 12.5, + "chkey": 79823180, + "claytotal_h": 27, + "claytotal_l": 18, + "claytotal_r": 22.5, + "cokey": 26734851, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.73, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 71, + "hzdept_r": 30, + "hzname": "H2", + "lep_h": 5.9, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 457217, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8.2, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 39.8, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 37.7, + "total_frag_volume": 10, + "wfifteenbar_h": 17.5, + "wfifteenbar_l": 9.7, + "wfifteenbar_r": 13.4, + "wthirdbar_h": 31.4, + "wthirdbar_l": 22.8, + "wthirdbar_r": 27.2 + }, + { + "cec7_h": 15, + "cec7_l": 10, + "cec7_r": 12.5, + "chkey": 79823186, + "claytotal_h": 27, + "claytotal_l": 18, + "claytotal_r": 22.5, + "cokey": 26734862, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.73, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 71, + "hzdept_r": 30, + "hzname": "H2", + "lep_h": 5.9, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 457218, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8.2, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 39.8, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 37.7, + "total_frag_volume": 10, + "wfifteenbar_h": 17.5, + "wfifteenbar_l": 9.7, + "wfifteenbar_r": 13.4, + "wthirdbar_h": 31.4, + "wthirdbar_l": 22.8, + "wthirdbar_r": 27.2 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79823184, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26734862, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 81, + "hzdept_r": 71, + "hzname": "H3", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 457218, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79823178, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26734851, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 81, + "hzdept_r": 71, + "hzname": "H3", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 457217, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": 25, + "cec7_l": 20, + "cec7_r": 22.5, + "chkey": 79823369, + "claytotal_h": 35, + "claytotal_l": 27, + "claytotal_r": 31, + "cokey": 26735233, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.73, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 46, + "hzdept_r": 0, + "hzname": "H1", + "lep_h": 5.9, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 457283, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8.2, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 18.1, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 50.9, + "total_frag_volume": 13, + "wfifteenbar_h": 27.5, + "wfifteenbar_l": 15.9, + "wfifteenbar_r": 21.5, + "wthirdbar_h": 36.8, + "wthirdbar_l": 27.1, + "wthirdbar_r": 32.1 + }, + { + "cec7_h": 25, + "cec7_l": 20, + "cec7_r": 22.5, + "chkey": 79823362, + "claytotal_h": 35, + "claytotal_l": 27, + "claytotal_r": 31, + "cokey": 26735226, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.73, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 46, + "hzdept_r": 0, + "hzname": "H1", + "lep_h": 5.9, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 457282, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8.2, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 18.1, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 50.9, + "total_frag_volume": 13, + "wfifteenbar_h": 27.5, + "wfifteenbar_l": 15.9, + "wfifteenbar_r": 21.5, + "wthirdbar_h": 36.8, + "wthirdbar_l": 27.1, + "wthirdbar_r": 32.1 + }, + { + "cec7_h": 15, + "cec7_l": 10, + "cec7_r": 12.5, + "chkey": 79823367, + "claytotal_h": 35, + "claytotal_l": 20, + "claytotal_r": 27.5, + "cokey": 26735233, + "dbovendry_h": 1.81, + "dbovendry_l": 1.68, + "dbovendry_r": 1.73, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 71, + "hzdept_r": 46, + "hzname": "H2", + "lep_h": 5.9, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 457283, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8.2, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 34.7, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 37.8, + "total_frag_volume": 13, + "wfifteenbar_h": 21, + "wfifteenbar_l": 10.1, + "wfifteenbar_r": 15.3, + "wthirdbar_h": 33.5, + "wthirdbar_l": 23.1, + "wthirdbar_r": 28.5 + }, + { + "cec7_h": 20, + "cec7_l": 10, + "cec7_r": 15, + "chkey": 79823363, + "claytotal_h": 35, + "claytotal_l": 20, + "claytotal_r": 27.5, + "cokey": 26735226, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.73, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 71, + "hzdept_r": 46, + "hzname": "H2", + "lep_h": 5.9, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 457282, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8.2, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 34.7, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 37.8, + "total_frag_volume": 13, + "wfifteenbar_h": 22.3, + "wfifteenbar_l": 10.7, + "wfifteenbar_r": 16.2, + "wthirdbar_h": 34.2, + "wthirdbar_l": 23.6, + "wthirdbar_r": 29.1 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79823368, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26735233, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 81, + "hzdept_r": 71, + "hzname": "H3", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 457283, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79823361, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26735226, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 81, + "hzdept_r": 71, + "hzname": "H3", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 457282, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": 25, + "cec7_l": 20, + "cec7_r": 22.5, + "chkey": 79823182, + "claytotal_h": 35, + "claytotal_l": 27, + "claytotal_r": 31, + "cokey": 26734852, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.73, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 46, + "hzdept_r": 0, + "hzname": "H1", + "lep_h": 5.9, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 457217, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8.2, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 18.1, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 50.9, + "total_frag_volume": 13, + "wfifteenbar_h": 27.5, + "wfifteenbar_l": 15.9, + "wfifteenbar_r": 21.5, + "wthirdbar_h": 36.8, + "wthirdbar_l": 27.1, + "wthirdbar_r": 32.1 + }, + { + "cec7_h": 30, + "cec7_l": 25, + "cec7_r": 27.5, + "chkey": 79823359, + "claytotal_h": 35, + "claytotal_l": 27, + "claytotal_r": 31, + "cokey": 26735225, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.66, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 36, + "hzdept_r": 0, + "hzname": "H1", + "lep_h": 5.9, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 457282, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.5, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 35.4, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 33.6, + "total_frag_volume": 5, + "wfifteenbar_h": 26.3, + "wfifteenbar_l": 17.9, + "wfifteenbar_r": 22, + "wthirdbar_h": 36.2, + "wthirdbar_l": 30.5, + "wthirdbar_r": 33.4 + }, + { + "cec7_h": 25, + "cec7_l": 20, + "cec7_r": 22.5, + "chkey": 79823188, + "claytotal_h": 35, + "claytotal_l": 27, + "claytotal_r": 31, + "cokey": 26734863, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.73, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 46, + "hzdept_r": 0, + "hzname": "H1", + "lep_h": 5.9, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 457218, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8.2, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 18.1, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 50.9, + "total_frag_volume": 13, + "wfifteenbar_h": 27.5, + "wfifteenbar_l": 15.9, + "wfifteenbar_r": 21.5, + "wthirdbar_h": 36.8, + "wthirdbar_l": 27.1, + "wthirdbar_r": 32.1 + }, + { + "cec7_h": 30, + "cec7_l": 25, + "cec7_r": 27.5, + "chkey": 79823365, + "claytotal_h": 35, + "claytotal_l": 27, + "claytotal_r": 31, + "cokey": 26735232, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.66, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 36, + "hzdept_r": 0, + "hzname": "H1", + "lep_h": 5.9, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 457283, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.5, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 35.4, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 33.6, + "total_frag_volume": 5, + "wfifteenbar_h": 26.3, + "wfifteenbar_l": 17.9, + "wfifteenbar_r": 22, + "wthirdbar_h": 36.2, + "wthirdbar_l": 30.5, + "wthirdbar_r": 33.4 + }, + { + "cec7_h": 35, + "cec7_l": 25, + "cec7_r": 30, + "chkey": 79823366, + "claytotal_h": 50, + "claytotal_l": 35, + "claytotal_r": 42.5, + "cokey": 26735232, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.81, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 61, + "hzdept_r": 36, + "hzname": "H2", + "lep_h": 8.9, + "lep_l": 6, + "lep_r": 7.5, + "mukey": 457283, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 6.7, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 7.7, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 49.8, + "total_frag_volume": 5, + "wfifteenbar_h": 27.8, + "wfifteenbar_l": 18, + "wfifteenbar_r": 22.8, + "wthirdbar_h": 37.9, + "wthirdbar_l": 27.3, + "wthirdbar_r": 35.4 + }, + { + "cec7_h": 35, + "cec7_l": 25, + "cec7_r": 30, + "chkey": 79823360, + "claytotal_h": 50, + "claytotal_l": 35, + "claytotal_r": 42.5, + "cokey": 26735225, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.81, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 61, + "hzdept_r": 36, + "hzname": "H2", + "lep_h": 8.9, + "lep_l": 6, + "lep_r": 7.5, + "mukey": 457282, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 6.7, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 7.7, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 49.8, + "total_frag_volume": 5, + "wfifteenbar_h": 27.8, + "wfifteenbar_l": 18, + "wfifteenbar_r": 22.8, + "wthirdbar_h": 37.9, + "wthirdbar_l": 27.3, + "wthirdbar_r": 35.4 + }, + { + "cec7_h": 20, + "cec7_l": 10, + "cec7_r": 15, + "chkey": 79823183, + "claytotal_h": 35, + "claytotal_l": 20, + "claytotal_r": 27.5, + "cokey": 26734852, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.71, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 71, + "hzdept_r": 46, + "hzname": "H2", + "lep_h": 5.9, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 457217, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8.2, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 34.7, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 37.8, + "total_frag_volume": 13, + "wfifteenbar_h": 22, + "wfifteenbar_l": 10.6, + "wfifteenbar_r": 16, + "wthirdbar_h": 34, + "wthirdbar_l": 23.5, + "wthirdbar_r": 29 + }, + { + "cec7_h": 20, + "cec7_l": 10, + "cec7_r": 15, + "chkey": 79823189, + "claytotal_h": 35, + "claytotal_l": 20, + "claytotal_r": 27.5, + "cokey": 26734863, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.71, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 71, + "hzdept_r": 46, + "hzname": "H2", + "lep_h": 5.9, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 457218, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8.2, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 34.7, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 37.8, + "total_frag_volume": 13, + "wfifteenbar_h": 22, + "wfifteenbar_l": 10.6, + "wfifteenbar_r": 16, + "wthirdbar_h": 34, + "wthirdbar_l": 23.5, + "wthirdbar_r": 29 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79823358, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26735225, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 150, + "hzdept_r": 61, + "hzname": "H3", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 457282, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79823364, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26735232, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 150, + "hzdept_r": 61, + "hzname": "H3", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 457283, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79823187, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26734863, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 81, + "hzdept_r": 71, + "hzname": "H3", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 457218, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79823181, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26734852, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 81, + "hzdept_r": 71, + "hzname": "H3", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 457217, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": null, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26735223, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": null, + "hzdept_r": null, + "hzname": null, + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 457282, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": null, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26735231, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": null, + "hzdept_r": null, + "hzname": null, + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 457283, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": null, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26735230, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": null, + "hzdept_r": null, + "hzname": null, + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 457283, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": null, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26735219, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": null, + "hzdept_r": null, + "hzname": null, + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 457282, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": null, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26735216, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": null, + "hzdept_r": null, + "hzname": null, + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 457282, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": null, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26734857, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": null, + "hzdept_r": null, + "hzname": null, + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 457218, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": null, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26734854, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": null, + "hzdept_r": null, + "hzname": null, + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 457218, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": null, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26734846, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": null, + "hzdept_r": null, + "hzname": null, + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 457217, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": null, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26734843, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": null, + "hzdept_r": null, + "hzname": null, + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 457217, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": null, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26735227, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": null, + "hzdept_r": null, + "hzname": null, + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 457283, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": null, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26735228, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": null, + "hzdept_r": null, + "hzname": null, + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 457283, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": null, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26735229, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": null, + "hzdept_r": null, + "hzname": null, + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 457283, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": null, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26735217, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": null, + "hzdept_r": null, + "hzname": null, + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 457282, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": null, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26735221, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": null, + "hzdept_r": null, + "hzname": null, + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 457282, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": null, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26735215, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": null, + "hzdept_r": null, + "hzname": null, + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 457282, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": null, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26734845, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": null, + "hzdept_r": null, + "hzname": null, + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 457217, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": null, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26734856, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": null, + "hzdept_r": null, + "hzname": null, + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 457218, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": null, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26734842, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": null, + "hzdept_r": null, + "hzname": null, + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 457217, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": null, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26735218, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": null, + "hzdept_r": null, + "hzname": null, + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 457282, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": null, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26735220, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": null, + "hzdept_r": null, + "hzname": null, + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 457282, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": null, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26735214, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": null, + "hzdept_r": null, + "hzname": null, + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 457282, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": null, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26734860, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": null, + "hzdept_r": null, + "hzname": null, + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 457218, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": null, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26734858, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": null, + "hzdept_r": null, + "hzname": null, + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 457218, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": null, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26734859, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": null, + "hzdept_r": null, + "hzname": null, + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 457218, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": null, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26735224, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": null, + "hzdept_r": null, + "hzname": null, + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 457282, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": null, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26734855, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": null, + "hzdept_r": null, + "hzname": null, + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 457218, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": null, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26734853, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": null, + "hzdept_r": null, + "hzname": null, + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 457218, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": null, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26734849, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": null, + "hzdept_r": null, + "hzname": null, + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 457217, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": null, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26734848, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": null, + "hzdept_r": null, + "hzname": null, + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 457217, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": null, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26734847, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": null, + "hzdept_r": null, + "hzname": null, + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 457217, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": null, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26734844, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": null, + "hzdept_r": null, + "hzname": null, + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 457217, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + } + ], + "spn": [ + { + "closest_pt_x": -120.491439, + "closest_pt_y": 35.59918, + "cokey": 26735233, + "compkind": "Series", + "compname": "nacimiento", + "comppct_r": 30, + "dist_meters": 0, + "elev_r": 320.1, + "irrcapcl": 6, + "irrcapscl": "e", + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 457283, + "nirrcapcl": 6, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 40, + "taxorder": "Mollisols", + "taxsubgrp": "Calcic Haploxerolls", + "which": "a" + }, + { + "closest_pt_x": -120.491439, + "closest_pt_y": 35.59918, + "cokey": 26735232, + "compkind": "Series", + "compname": "los osos", + "comppct_r": 20, + "dist_meters": 0, + "elev_r": 320.1, + "irrcapcl": 6, + "irrcapscl": "e", + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 457283, + "nirrcapcl": 6, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 40, + "taxorder": "Mollisols", + "taxsubgrp": "Typic Argixerolls", + "which": "a" + }, + { + "closest_pt_x": -120.491439, + "closest_pt_y": 35.59918, + "cokey": 26735230, + "compkind": "Series", + "compname": "shimmon", + "comppct_r": 10, + "dist_meters": 0, + "elev_r": null, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "loam", + "majcompflag": "No ", + "mukey": 457283, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": null, + "taxorder": null, + "taxsubgrp": null, + "which": "a" + }, + { + "closest_pt_x": -120.491439, + "closest_pt_y": 35.59918, + "cokey": 26735231, + "compkind": "Taxadjunct", + "compname": "unnamed", + "comppct_r": 10, + "dist_meters": 0, + "elev_r": null, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "similar to Los Osos soil", + "majcompflag": "No ", + "mukey": 457283, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": null, + "taxorder": null, + "taxsubgrp": null, + "which": "a" + }, + { + "closest_pt_x": -120.491439, + "closest_pt_y": 35.59918, + "cokey": 26735227, + "compkind": "Series", + "compname": "ayar", + "comppct_r": 5, + "dist_meters": 0, + "elev_r": null, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "silty clay", + "majcompflag": "No ", + "mukey": 457283, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": null, + "taxorder": null, + "taxsubgrp": null, + "which": "a" + }, + { + "closest_pt_x": -120.491439, + "closest_pt_y": 35.59918, + "cokey": 26735229, + "compkind": "Series", + "compname": "linne", + "comppct_r": 5, + "dist_meters": 0, + "elev_r": null, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "shaly clay loam", + "majcompflag": "No ", + "mukey": 457283, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": null, + "taxorder": null, + "taxsubgrp": null, + "which": "a" + }, + { + "closest_pt_x": -120.491439, + "closest_pt_y": 35.59918, + "cokey": 26735228, + "compkind": "Series", + "compname": "balcom", + "comppct_r": 5, + "dist_meters": 0, + "elev_r": null, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "loam", + "majcompflag": "No ", + "mukey": 457283, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": null, + "taxorder": null, + "taxsubgrp": null, + "which": "a" + }, + { + "closest_pt_x": -120.49111430002934, + "closest_pt_y": 35.598873635531426, + "cokey": 26734862, + "compkind": "Series", + "compname": "balcom", + "comppct_r": 45, + "dist_meters": 44, + "elev_r": 320.1, + "irrcapcl": 6, + "irrcapscl": "e", + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 457218, + "nirrcapcl": 6, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 40, + "taxorder": "Inceptisols", + "taxsubgrp": "Calcixerollic Xerochrepts", + "which": "b" + }, + { + "closest_pt_x": -120.49111430002934, + "closest_pt_y": 35.598873635531426, + "cokey": 26734863, + "compkind": "Series", + "compname": "nacimiento", + "comppct_r": 20, + "dist_meters": 44, + "elev_r": 320.1, + "irrcapcl": 6, + "irrcapscl": "e", + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 457218, + "nirrcapcl": 6, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 40, + "taxorder": "Mollisols", + "taxsubgrp": "Calcic Haploxerolls", + "which": "b" + }, + { + "closest_pt_x": -120.49111430002934, + "closest_pt_y": 35.598873635531426, + "cokey": 26734857, + "compkind": "Series", + "compname": "linne", + "comppct_r": 10, + "dist_meters": 44, + "elev_r": null, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "shaly clay loam", + "majcompflag": "No ", + "mukey": 457218, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": null, + "taxorder": null, + "taxsubgrp": null, + "which": "b" + }, + { + "closest_pt_x": -120.49111430002934, + "closest_pt_y": 35.598873635531426, + "cokey": 26734854, + "compkind": "Series", + "compname": "calleguas", + "comppct_r": 10, + "dist_meters": 44, + "elev_r": null, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "shaly loam", + "majcompflag": "No ", + "mukey": 457218, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": null, + "taxorder": null, + "taxsubgrp": null, + "which": "b" + }, + { + "closest_pt_x": -120.49111430002934, + "closest_pt_y": 35.598873635531426, + "cokey": 26734856, + "compkind": "Series", + "compname": "camatta", + "comppct_r": 4, + "dist_meters": 44, + "elev_r": null, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "loam", + "majcompflag": "No ", + "mukey": 457218, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": null, + "taxorder": null, + "taxsubgrp": null, + "which": "b" + }, + { + "closest_pt_x": -120.49111430002934, + "closest_pt_y": 35.598873635531426, + "cokey": 26734858, + "compkind": "Series", + "compname": "metz", + "comppct_r": 1, + "dist_meters": 44, + "elev_r": null, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "loamy sand", + "majcompflag": "No ", + "mukey": 457218, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": null, + "taxorder": null, + "taxsubgrp": null, + "which": "b" + }, + { + "closest_pt_x": -120.49111430002934, + "closest_pt_y": 35.598873635531426, + "cokey": 26734859, + "compkind": "Series", + "compname": "mocho", + "comppct_r": 1, + "dist_meters": 44, + "elev_r": null, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "clay loam", + "majcompflag": "No ", + "mukey": 457218, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": null, + "taxorder": null, + "taxsubgrp": null, + "which": "b" + }, + { + "closest_pt_x": -120.49111430002934, + "closest_pt_y": 35.598873635531426, + "cokey": 26734860, + "compkind": "Series", + "compname": "polonio", + "comppct_r": 1, + "dist_meters": 44, + "elev_r": null, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "clay loam", + "majcompflag": "No ", + "mukey": 457218, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": null, + "taxorder": null, + "taxsubgrp": null, + "which": "b" + }, + { + "closest_pt_x": -120.49111430002934, + "closest_pt_y": 35.598873635531426, + "cokey": 26734853, + "compkind": "Series", + "compname": "ayar", + "comppct_r": 1, + "dist_meters": 44, + "elev_r": null, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "silty clay", + "majcompflag": "No ", + "mukey": 457218, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": null, + "taxorder": null, + "taxsubgrp": null, + "which": "b" + }, + { + "closest_pt_x": -120.49111430002934, + "closest_pt_y": 35.598873635531426, + "cokey": 26734855, + "compkind": "Series", + "compname": "calodo", + "comppct_r": 1, + "dist_meters": 44, + "elev_r": null, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "clay loam", + "majcompflag": "No ", + "mukey": 457218, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": null, + "taxorder": null, + "taxsubgrp": null, + "which": "b" + }, + { + "closest_pt_x": -120.4938641136906, + "closest_pt_y": 35.59624106954586, + "cokey": 26735226, + "compkind": "Series", + "compname": "nacimiento", + "comppct_r": 30, + "dist_meters": 385, + "elev_r": 320.1, + "irrcapcl": 4, + "irrcapscl": "e", + "irrcapunit": 1, + "localphase": null, + "majcompflag": "Yes", + "mukey": 457282, + "nirrcapcl": 4, + "nirrcapscl": "e", + "nirrcapunit": 1, + "slope_r": 20, + "taxorder": "Mollisols", + "taxsubgrp": "Calcic Haploxerolls", + "which": "b" + }, + { + "closest_pt_x": -120.4938641136906, + "closest_pt_y": 35.59624106954586, + "cokey": 26735225, + "compkind": "Series", + "compname": "los osos", + "comppct_r": 20, + "dist_meters": 385, + "elev_r": 320.1, + "irrcapcl": 4, + "irrcapscl": "e", + "irrcapunit": 3, + "localphase": null, + "majcompflag": "Yes", + "mukey": 457282, + "nirrcapcl": 4, + "nirrcapscl": "e", + "nirrcapunit": 3, + "slope_r": 20, + "taxorder": "Mollisols", + "taxsubgrp": "Typic Argixerolls", + "which": "b" + }, + { + "closest_pt_x": -120.4938641136906, + "closest_pt_y": 35.59624106954586, + "cokey": 26735219, + "compkind": "Series", + "compname": "positas", + "comppct_r": 10, + "dist_meters": 385, + "elev_r": null, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "coarse sandly loam", + "majcompflag": "No ", + "mukey": 457282, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": null, + "taxorder": null, + "taxsubgrp": null, + "which": "b" + }, + { + "closest_pt_x": -120.4938641136906, + "closest_pt_y": 35.59624106954586, + "cokey": 26735216, + "compkind": "Series", + "compname": "balcom", + "comppct_r": 10, + "dist_meters": 385, + "elev_r": null, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "loam", + "majcompflag": "No ", + "mukey": 457282, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": null, + "taxorder": null, + "taxsubgrp": null, + "which": "b" + }, + { + "closest_pt_x": -120.4938641136906, + "closest_pt_y": 35.59624106954586, + "cokey": 26735223, + "compkind": "Taxadjunct", + "compname": "unnamed", + "comppct_r": 10, + "dist_meters": 385, + "elev_r": null, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "similar to Los Osos soil", + "majcompflag": "No ", + "mukey": 457282, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": null, + "taxorder": null, + "taxsubgrp": null, + "which": "b" + }, + { + "closest_pt_x": -120.4938641136906, + "closest_pt_y": 35.59624106954586, + "cokey": 26735221, + "compkind": "Series", + "compname": "shimmon", + "comppct_r": 5, + "dist_meters": 385, + "elev_r": null, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "loam", + "majcompflag": "No ", + "mukey": 457282, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": null, + "taxorder": null, + "taxsubgrp": null, + "which": "b" + }, + { + "closest_pt_x": -120.4938641136906, + "closest_pt_y": 35.59624106954586, + "cokey": 26735217, + "compkind": "Series", + "compname": "diablo", + "comppct_r": 5, + "dist_meters": 385, + "elev_r": null, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "clay", + "majcompflag": "No ", + "mukey": 457282, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": null, + "taxorder": null, + "taxsubgrp": null, + "which": "b" + }, + { + "closest_pt_x": -120.4938641136906, + "closest_pt_y": 35.59624106954586, + "cokey": 26735215, + "compkind": "Series", + "compname": "ayar", + "comppct_r": 5, + "dist_meters": 385, + "elev_r": null, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "silty clay", + "majcompflag": "No ", + "mukey": 457282, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": null, + "taxorder": null, + "taxsubgrp": null, + "which": "b" + }, + { + "closest_pt_x": -120.4938641136906, + "closest_pt_y": 35.59624106954586, + "cokey": 26735224, + "compkind": "Series", + "compname": "unnamed", + "comppct_r": 1, + "dist_meters": 385, + "elev_r": null, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "slopes of 30 to 50 percent", + "majcompflag": "No ", + "mukey": 457282, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": null, + "taxorder": null, + "taxsubgrp": null, + "which": "b" + }, + { + "closest_pt_x": -120.4938641136906, + "closest_pt_y": 35.59624106954586, + "cokey": 26735214, + "compkind": "Series", + "compname": "arbuckle", + "comppct_r": 1, + "dist_meters": 385, + "elev_r": null, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "fine sandy loam", + "majcompflag": "No ", + "mukey": 457282, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": null, + "taxorder": null, + "taxsubgrp": null, + "which": "b" + }, + { + "closest_pt_x": -120.4938641136906, + "closest_pt_y": 35.59624106954586, + "cokey": 26735218, + "compkind": "Series", + "compname": "greenfield", + "comppct_r": 1, + "dist_meters": 385, + "elev_r": null, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "fine sandy loam", + "majcompflag": "No ", + "mukey": 457282, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": null, + "taxorder": null, + "taxsubgrp": null, + "which": "b" + }, + { + "closest_pt_x": -120.4938641136906, + "closest_pt_y": 35.59624106954586, + "cokey": 26735220, + "compkind": "Series", + "compname": "rincon", + "comppct_r": 1, + "dist_meters": 385, + "elev_r": null, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "clay loam", + "majcompflag": "No ", + "mukey": 457282, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": null, + "taxorder": null, + "taxsubgrp": null, + "which": "b" + }, + { + "closest_pt_x": -120.4925080100243, + "closest_pt_y": 35.6051593706735, + "cokey": 26734851, + "compkind": "Series", + "compname": "balcom", + "comppct_r": 45, + "dist_meters": 670, + "elev_r": 320.1, + "irrcapcl": 4, + "irrcapscl": "e", + "irrcapunit": 1, + "localphase": null, + "majcompflag": "Yes", + "mukey": 457217, + "nirrcapcl": 4, + "nirrcapscl": "e", + "nirrcapunit": 1, + "slope_r": 20, + "taxorder": "Inceptisols", + "taxsubgrp": "Calcixerollic Xerochrepts", + "which": "b" + }, + { + "closest_pt_x": -120.4925080100243, + "closest_pt_y": 35.6051593706735, + "cokey": 26734852, + "compkind": "Series", + "compname": "nacimiento", + "comppct_r": 20, + "dist_meters": 670, + "elev_r": 320.1, + "irrcapcl": 4, + "irrcapscl": "e", + "irrcapunit": 1, + "localphase": null, + "majcompflag": "Yes", + "mukey": 457217, + "nirrcapcl": 4, + "nirrcapscl": "e", + "nirrcapunit": 1, + "slope_r": 20, + "taxorder": "Mollisols", + "taxsubgrp": "Calcic Haploxerolls", + "which": "b" + }, + { + "closest_pt_x": -120.4925080100243, + "closest_pt_y": 35.6051593706735, + "cokey": 26734843, + "compkind": "Series", + "compname": "calleguas", + "comppct_r": 10, + "dist_meters": 670, + "elev_r": null, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "shaly loam", + "majcompflag": "No ", + "mukey": 457217, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": null, + "taxorder": null, + "taxsubgrp": null, + "which": "b" + }, + { + "closest_pt_x": -120.4925080100243, + "closest_pt_y": 35.6051593706735, + "cokey": 26734846, + "compkind": "Series", + "compname": "linne", + "comppct_r": 10, + "dist_meters": 670, + "elev_r": null, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "shaly clay loam", + "majcompflag": "No ", + "mukey": 457217, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": null, + "taxorder": null, + "taxsubgrp": null, + "which": "b" + }, + { + "closest_pt_x": -120.4925080100243, + "closest_pt_y": 35.6051593706735, + "cokey": 26734845, + "compkind": "Series", + "compname": "camatta", + "comppct_r": 4, + "dist_meters": 670, + "elev_r": null, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "loam", + "majcompflag": "No ", + "mukey": 457217, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": null, + "taxorder": null, + "taxsubgrp": null, + "which": "b" + }, + { + "closest_pt_x": -120.4925080100243, + "closest_pt_y": 35.6051593706735, + "cokey": 26734848, + "compkind": "Series", + "compname": "mocho", + "comppct_r": 1, + "dist_meters": 670, + "elev_r": null, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "clay loam", + "majcompflag": "No ", + "mukey": 457217, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": null, + "taxorder": null, + "taxsubgrp": null, + "which": "b" + }, + { + "closest_pt_x": -120.4925080100243, + "closest_pt_y": 35.6051593706735, + "cokey": 26734847, + "compkind": "Series", + "compname": "metz", + "comppct_r": 1, + "dist_meters": 670, + "elev_r": null, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "loamy sand", + "majcompflag": "No ", + "mukey": 457217, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": null, + "taxorder": null, + "taxsubgrp": null, + "which": "b" + }, + { + "closest_pt_x": -120.4925080100243, + "closest_pt_y": 35.6051593706735, + "cokey": 26734842, + "compkind": "Series", + "compname": "ayar", + "comppct_r": 1, + "dist_meters": 670, + "elev_r": null, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "silty clay", + "majcompflag": "No ", + "mukey": 457217, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": null, + "taxorder": null, + "taxsubgrp": null, + "which": "b" + }, + { + "closest_pt_x": -120.4925080100243, + "closest_pt_y": 35.6051593706735, + "cokey": 26734844, + "compkind": "Series", + "compname": "calodo", + "comppct_r": 1, + "dist_meters": 670, + "elev_r": null, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "clay loam", + "majcompflag": "No ", + "mukey": 457217, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": null, + "taxorder": null, + "taxsubgrp": null, + "which": "b" + }, + { + "closest_pt_x": -120.4925080100243, + "closest_pt_y": 35.6051593706735, + "cokey": 26734849, + "compkind": "Series", + "compname": "polonio", + "comppct_r": 1, + "dist_meters": 670, + "elev_r": null, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "clay loam", + "majcompflag": "No ", + "mukey": 457217, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": null, + "taxorder": null, + "taxsubgrp": null, + "which": "b" + } + ] + } +} diff --git a/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[37.422,-122.084].json b/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[37.422,-122.084].json new file mode 100644 index 0000000..5335d00 --- /dev/null +++ b/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[37.422,-122.084].json @@ -0,0 +1,3734 @@ +{ + "elev": { + "location": { + "spatialReference": { + "latestWkid": 4326, + "wkid": 4326 + }, + "x": -122.084, + "y": 37.422 + }, + "locationId": 0, + "rasterId": 29125, + "resolution": 1, + "value": "7.248882294" + }, + "soilweb": { + "ESD": [ + { + "cokey": 26701930, + "ecoclassid": "R014XG904CA", + "ecoclassname": "Dry Clayey Bottom", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/014X/R014XG904CA" + }, + { + "cokey": 26701950, + "ecoclassid": "R014XG904CA", + "ecoclassname": "Dry Clayey Bottom", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/014X/R014XG904CA" + }, + { + "cokey": 26701975, + "ecoclassid": "R014XG903CA", + "ecoclassname": "Salt Marsh", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/014X/R014XG903CA" + }, + { + "cokey": 26701976, + "ecoclassid": "R014XG903CA", + "ecoclassname": "Salt Marsh", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/014X/R014XG903CA" + }, + { + "cokey": 26701978, + "ecoclassid": "R014XG903CA", + "ecoclassname": "Salt Marsh", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/014X/R014XG903CA" + } + ], + "OSD_morph": [ + { + "bottom": 10, + "cf_class": null, + "cielab_a": 1.46898546730889, + "cielab_b": 6.1399480339165, + "cielab_l": 40.8982555194042, + "hzname": "Ap1", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "bayshore", + "srgb_b": 0.339204032769121, + "srgb_g": 0.373572298991998, + "srgb_r": 0.403971386567422, + "texture_class": "silty clay loam", + "top": 0 + }, + { + "bottom": 43, + "cf_class": null, + "cielab_a": 1.46898546730889, + "cielab_b": 6.1399480339165, + "cielab_l": 40.8982555194042, + "hzname": "Ap2", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "bayshore", + "srgb_b": 0.339204032769121, + "srgb_g": 0.373572298991998, + "srgb_r": 0.403971386567422, + "texture_class": "silty clay loam", + "top": 10 + }, + { + "bottom": 61, + "cf_class": null, + "cielab_a": 1.46898546730889, + "cielab_b": 6.1399480339165, + "cielab_l": 40.8982555194042, + "hzname": "Ak", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "bayshore", + "srgb_b": 0.339204032769121, + "srgb_g": 0.373572298991998, + "srgb_r": 0.403971386567422, + "texture_class": "silty clay loam", + "top": 43 + }, + { + "bottom": 97, + "cf_class": null, + "cielab_a": 3.65979819919923, + "cielab_b": 13.2199440544513, + "cielab_l": 40.9141543373182, + "hzname": "2Ckg1", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "bayshore", + "srgb_b": 0.294406483459129, + "srgb_g": 0.367561696190658, + "srgb_r": 0.432479607618406, + "texture_class": "loam", + "top": 61 + }, + { + "bottom": 142, + "cf_class": null, + "cielab_a": 3.65979819919923, + "cielab_b": 13.2199440544513, + "cielab_l": 40.9141543373182, + "hzname": "2Ckg2", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "bayshore", + "srgb_b": 0.294406483459129, + "srgb_g": 0.367561696190658, + "srgb_r": 0.432479607618406, + "texture_class": "loam", + "top": 97 + }, + { + "bottom": 183, + "cf_class": null, + "cielab_a": 3.65979819919923, + "cielab_b": 13.2199440544513, + "cielab_l": 40.9141543373182, + "hzname": "2Ckg3", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "bayshore", + "srgb_b": 0.294406483459129, + "srgb_g": 0.367561696190658, + "srgb_r": 0.432479607618406, + "texture_class": "loam", + "top": 142 + }, + { + "bottom": 33, + "cf_class": null, + "cielab_a": -0.376057843677599, + "cielab_b": -0.218681789415542, + "cielab_l": 10.0200011128596, + "hzname": "Ag", + "matrix_dry_color_chroma": 0, + "matrix_dry_color_hue": "N", + "matrix_dry_color_value": 4, + "series": "clear lake", + "srgb_b": 0.108966666666667, + "srgb_g": 0.108533333333333, + "srgb_r": 0.105216666666667, + "texture_class": "clay", + "top": 0 + }, + { + "bottom": 48, + "cf_class": null, + "cielab_a": -0.376057843677599, + "cielab_b": -0.218681789415542, + "cielab_l": 10.0200011128596, + "hzname": "Bssg1", + "matrix_dry_color_chroma": 0, + "matrix_dry_color_hue": "N", + "matrix_dry_color_value": 4, + "series": "clear lake", + "srgb_b": 0.108966666666667, + "srgb_g": 0.108533333333333, + "srgb_r": 0.105216666666667, + "texture_class": "clay", + "top": 33 + }, + { + "bottom": 114, + "cf_class": null, + "cielab_a": -0.376057843677599, + "cielab_b": -0.218681789415542, + "cielab_l": 10.0200011128596, + "hzname": "Bssg2", + "matrix_dry_color_chroma": 0, + "matrix_dry_color_hue": "N", + "matrix_dry_color_value": 4, + "series": "clear lake", + "srgb_b": 0.108966666666667, + "srgb_g": 0.108533333333333, + "srgb_r": 0.105216666666667, + "texture_class": "clay", + "top": 48 + }, + { + "bottom": 152, + "cf_class": null, + "cielab_a": 1.32004586474704, + "cielab_b": 13.7174249230097, + "cielab_l": 51.3940899501304, + "hzname": "Bssk", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 5, + "series": "clear lake", + "srgb_b": 0.389079428537392, + "srgb_g": 0.474084046104631, + "srgb_r": 0.524359621723063, + "texture_class": "clay", + "top": 114 + }, + { + "bottom": 18, + "cf_class": null, + "cielab_a": 1.46898546730889, + "cielab_b": 6.1399480339165, + "cielab_l": 40.8982555194042, + "hzname": "A", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "embarcadero", + "srgb_b": 0.339204032769121, + "srgb_g": 0.373572298991998, + "srgb_r": 0.403971386567422, + "texture_class": "clay loam", + "top": 0 + }, + { + "bottom": 41, + "cf_class": null, + "cielab_a": 1.32004586474704, + "cielab_b": 13.7174249230097, + "cielab_l": 51.3940899501304, + "hzname": "Bkn1", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 5, + "series": "embarcadero", + "srgb_b": 0.389079428537392, + "srgb_g": 0.474084046104631, + "srgb_r": 0.524359621723063, + "texture_class": "sand", + "top": 18 + }, + { + "bottom": 66, + "cf_class": null, + "cielab_a": -2.07741148222967, + "cielab_b": 3.40863226918476, + "cielab_l": 30.2365313659417, + "hzname": "Bkn2", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "5GY", + "matrix_dry_color_value": 3, + "series": "embarcadero", + "srgb_b": 0.258298906326277, + "srgb_g": 0.282323522269882, + "srgb_r": 0.275083349788126, + "texture_class": "silty clay", + "top": 41 + }, + { + "bottom": 94, + "cf_class": null, + "cielab_a": 3.57696313566441, + "cielab_b": 27.5996092733465, + "cielab_l": 40.9416120614718, + "hzname": "Bkn3", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 4, + "series": "embarcadero", + "srgb_b": 0.199525257810432, + "srgb_g": 0.365655696782784, + "srgb_r": 0.454263115359297, + "texture_class": "silty clay", + "top": 66 + }, + { + "bottom": 119, + "cf_class": null, + "cielab_a": 1.35288254510624, + "cielab_b": 20.7280825303816, + "cielab_l": 61.5889622491912, + "hzname": "Bkn4", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 6, + "series": "embarcadero", + "srgb_b": 0.440190474142481, + "srgb_g": 0.575322240237554, + "srgb_r": 0.645238061865951, + "texture_class": "silty clay", + "top": 94 + }, + { + "bottom": 155, + "cf_class": null, + "cielab_a": 1.35288254510624, + "cielab_b": 20.7280825303816, + "cielab_l": 61.5889622491912, + "hzname": "Bkn5", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 6, + "series": "embarcadero", + "srgb_b": 0.440190474142481, + "srgb_g": 0.575322240237554, + "srgb_r": 0.645238061865951, + "texture_class": "clay loam", + "top": 119 + }, + { + "bottom": 165, + "cf_class": null, + "cielab_a": 1.35288254510624, + "cielab_b": 20.7280825303816, + "cielab_l": 61.5889622491912, + "hzname": "Bkn6", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 6, + "series": "embarcadero", + "srgb_b": 0.440190474142481, + "srgb_g": 0.575322240237554, + "srgb_r": 0.645238061865951, + "texture_class": "silty clay", + "top": 155 + }, + { + "bottom": 249, + "cf_class": null, + "cielab_a": 2.13842469597725, + "cielab_b": 27.4679800212948, + "cielab_l": 61.6021478744143, + "hzname": "BkCg", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 6, + "series": "embarcadero", + "srgb_b": 0.392947209884661, + "srgb_g": 0.572418528215225, + "srgb_r": 0.662861082252112, + "texture_class": "silty clay", + "top": 165 + }, + { + "bottom": 23, + "cf_class": null, + "cielab_a": 1.46898546730889, + "cielab_b": 6.1399480339165, + "cielab_l": 40.8982555194042, + "hzname": "A1", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "hangerone", + "srgb_b": 0.339204032769121, + "srgb_g": 0.373572298991998, + "srgb_r": 0.403971386567422, + "texture_class": "clay", + "top": 0 + }, + { + "bottom": 43, + "cf_class": null, + "cielab_a": 1.46898546730889, + "cielab_b": 6.1399480339165, + "cielab_l": 40.8982555194042, + "hzname": "A2", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "hangerone", + "srgb_b": 0.339204032769121, + "srgb_g": 0.373572298991998, + "srgb_r": 0.403971386567422, + "texture_class": "clay", + "top": 23 + }, + { + "bottom": 69, + "cf_class": null, + "cielab_a": 1.46898546730889, + "cielab_b": 6.1399480339165, + "cielab_l": 40.8982555194042, + "hzname": "Bw", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "hangerone", + "srgb_b": 0.339204032769121, + "srgb_g": 0.373572298991998, + "srgb_r": 0.403971386567422, + "texture_class": "clay", + "top": 43 + }, + { + "bottom": 89, + "cf_class": null, + "cielab_a": 0.175933118571003, + "cielab_b": 8.38708876930425, + "cielab_l": 61.5600767151494, + "hzname": "Bk", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 6, + "series": "hangerone", + "srgb_b": 0.525237412005536, + "srgb_g": 0.580344597429754, + "srgb_r": 0.60855031545657, + "texture_class": "clay", + "top": 69 + }, + { + "bottom": 114, + "cf_class": null, + "cielab_a": -0.463258887507756, + "cielab_b": 8.07831473274745, + "cielab_l": 71.5271798451197, + "hzname": "Ck", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 7, + "series": "hangerone", + "srgb_b": 0.629636925583279, + "srgb_g": 0.685847947060362, + "srgb_r": 0.708201396027056, + "texture_class": "clay loam", + "top": 89 + }, + { + "bottom": 183, + "cf_class": "very gravelly", + "cielab_a": 0.290344233655371, + "cielab_b": 14.5930724435265, + "cielab_l": 71.5435329739879, + "hzname": "C", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 7, + "series": "hangerone", + "srgb_b": 0.583614021087258, + "srgb_g": 0.682739294769169, + "srgb_r": 0.730975946611561, + "texture_class": "loam", + "top": 114 + }, + { + "bottom": 226, + "cf_class": null, + "cielab_a": 0.371677828127082, + "cielab_b": 6.49715203547466, + "cielab_l": 40.8999498903978, + "hzname": "2Ab", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 4, + "series": "hangerone", + "srgb_b": 0.336794961358172, + "srgb_g": 0.375795400403817, + "srgb_r": 0.397907141385915, + "texture_class": "clay", + "top": 183 + } + ], + "OSD_narrative": [ + { + "brief_narrative": "The Bayshore series consists of very deep, somewhat poorly and poorly drained soils formed in nearly level basins from alluvium. Slopes are 0 to 1 percent. The mean annual precipitation is about 13 to 15 inches and the mean annual temperature is about 59 degrees F.", + "series": "bayshore" + }, + { + "brief_narrative": "The Clear Lake series consists of very deep, poorly drained soils that formed in fine textured alluvium derived from mixed rock sources. Clear Lake soils are in flood basins, flood plains and in swales of drainageways. Slopes are 0 to 5 percent. The mean annual precipitation is about 20 inches and the mean annual air temperature is about 60 degrees F.", + "series": "clear lake" + }, + { + "brief_narrative": "The Embarcadero series consists of very deep, naturally poorly drained soils, now artificially drained that formed in alluvium from mixed rock sources. Embarcadero soils are in basins near the edge of marshes. Slopes range from 0 to 2 percent. The mean annual precipitation is about 13 inches and the mean annual temperature is about 60 degrees F.", + "series": "embarcadero" + }, + { + "brief_narrative": "The Hangerone series consists of very deep, poorly drained soils that formed in alluvium from mixed rock sources. Hangerone soils are in basins. Slopes range from 0 to 2 percent. The mean annual precipitation is about 14 inches and the mean annual temperature is about 60 degrees F.", + "series": "hangerone" + } + ], + "hz": [ + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79721340, + "claytotal_h": 25, + "claytotal_l": 0, + "claytotal_r": 15, + "cokey": 26701975, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 30, + "ecec_l": 20, + "ecec_r": 25, + "hzdepb_r": 4, + "hzdept_r": 0, + "hzname": "Oi", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 1602803, + "ph1to1h2o_h": 5.5, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 5, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 35, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 50, + "total_frag_volume": 0, + "wfifteenbar_h": 19.2, + "wfifteenbar_l": 13.6, + "wfifteenbar_r": 15.5, + "wthirdbar_h": 54.2, + "wthirdbar_l": 46.8, + "wthirdbar_r": 49.4 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79721297, + "claytotal_h": 25, + "claytotal_l": 0, + "claytotal_r": 15, + "cokey": 26701976, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 30, + "ecec_l": 20, + "ecec_r": 25, + "hzdepb_r": 4, + "hzdept_r": 0, + "hzname": "Oi", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 1602804, + "ph1to1h2o_h": 5.5, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 5, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 35, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 50, + "total_frag_volume": 0, + "wfifteenbar_h": 19.2, + "wfifteenbar_l": 13.6, + "wfifteenbar_r": 15.5, + "wthirdbar_h": 54.2, + "wthirdbar_l": 46.8, + "wthirdbar_r": 49.4 + }, + { + "cec7_h": 27.9, + "cec7_l": 16.2, + "cec7_r": 20.3, + "chkey": 79721339, + "claytotal_h": 35, + "claytotal_l": 20, + "claytotal_r": 25, + "cokey": 26701975, + "dbovendry_h": 1.91, + "dbovendry_l": 1.65, + "dbovendry_r": 1.75, + "ec_h": 15, + "ec_l": 1, + "ec_r": 4, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 25, + "hzdept_r": 4, + "hzname": "^A", + "lep_h": 6, + "lep_l": 0, + "lep_r": 3, + "mukey": 1602803, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 8, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 38.5, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 36.5, + "total_frag_volume": 0, + "wfifteenbar_h": 24.5, + "wfifteenbar_l": 11.5, + "wfifteenbar_r": 17.4, + "wthirdbar_h": 35.4, + "wthirdbar_l": 24.3, + "wthirdbar_r": 31.4 + }, + { + "cec7_h": 27.9, + "cec7_l": 16.2, + "cec7_r": 20.3, + "chkey": 79721292, + "claytotal_h": 35, + "claytotal_l": 20, + "claytotal_r": 25, + "cokey": 26701976, + "dbovendry_h": 1.91, + "dbovendry_l": 1.65, + "dbovendry_r": 1.75, + "ec_h": 15, + "ec_l": 1, + "ec_r": 4, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 25, + "hzdept_r": 4, + "hzname": "^A", + "lep_h": 6, + "lep_l": 0, + "lep_r": 3, + "mukey": 1602804, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 8, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 38.5, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 36.5, + "total_frag_volume": 0, + "wfifteenbar_h": 24.5, + "wfifteenbar_l": 11.5, + "wfifteenbar_r": 17.4, + "wthirdbar_h": 35.4, + "wthirdbar_l": 24.3, + "wthirdbar_r": 31.4 + }, + { + "cec7_h": 34.5, + "cec7_l": 15.7, + "cec7_r": 25.1, + "chkey": 79721293, + "claytotal_h": 45, + "claytotal_l": 20, + "claytotal_r": 32, + "cokey": 26701976, + "dbovendry_h": 1.91, + "dbovendry_l": 1.65, + "dbovendry_r": 1.75, + "ec_h": 15, + "ec_l": 1, + "ec_r": 4, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 47, + "hzdept_r": 25, + "hzname": "^C1", + "lep_h": 6, + "lep_l": 0, + "lep_r": 3, + "mukey": 1602804, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 8, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 34.8, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 33.2, + "total_frag_volume": 0, + "wfifteenbar_h": 31.5, + "wfifteenbar_l": 11.7, + "wfifteenbar_r": 22.5, + "wthirdbar_h": 38.7, + "wthirdbar_l": 24.5, + "wthirdbar_r": 34.3 + }, + { + "cec7_h": 34.5, + "cec7_l": 15.7, + "cec7_r": 25.1, + "chkey": 79721335, + "claytotal_h": 45, + "claytotal_l": 20, + "claytotal_r": 32, + "cokey": 26701975, + "dbovendry_h": 1.91, + "dbovendry_l": 1.65, + "dbovendry_r": 1.75, + "ec_h": 15, + "ec_l": 1, + "ec_r": 4, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 47, + "hzdept_r": 25, + "hzname": "^C1", + "lep_h": 6, + "lep_l": 0, + "lep_r": 3, + "mukey": 1602803, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 8, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 34.8, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 33.2, + "total_frag_volume": 0, + "wfifteenbar_h": 31.5, + "wfifteenbar_l": 11.7, + "wfifteenbar_r": 22.5, + "wthirdbar_h": 38.7, + "wthirdbar_l": 24.5, + "wthirdbar_r": 34.3 + }, + { + "cec7_h": 34.1, + "cec7_l": 15.7, + "cec7_r": 24.7, + "chkey": 79721336, + "claytotal_h": 45, + "claytotal_l": 20, + "claytotal_r": 32, + "cokey": 26701975, + "dbovendry_h": 1.91, + "dbovendry_l": 1.65, + "dbovendry_r": 1.75, + "ec_h": 15, + "ec_l": 1, + "ec_r": 4, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 73, + "hzdept_r": 47, + "hzname": "^C2", + "lep_h": 6, + "lep_l": 0, + "lep_r": 3, + "mukey": 1602803, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.8, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 34.8, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 33.2, + "total_frag_volume": 0, + "wfifteenbar_h": 31.2, + "wfifteenbar_l": 11.7, + "wfifteenbar_r": 22.2, + "wthirdbar_h": 38.5, + "wthirdbar_l": 24.5, + "wthirdbar_r": 34.2 + }, + { + "cec7_h": 34.1, + "cec7_l": 15.7, + "cec7_r": 24.7, + "chkey": 79721294, + "claytotal_h": 45, + "claytotal_l": 20, + "claytotal_r": 32, + "cokey": 26701976, + "dbovendry_h": 1.91, + "dbovendry_l": 1.65, + "dbovendry_r": 1.75, + "ec_h": 15, + "ec_l": 1, + "ec_r": 4, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 73, + "hzdept_r": 47, + "hzname": "^C2", + "lep_h": 6, + "lep_l": 0, + "lep_r": 3, + "mukey": 1602804, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.8, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 34.8, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 33.2, + "total_frag_volume": 0, + "wfifteenbar_h": 31.2, + "wfifteenbar_l": 11.7, + "wfifteenbar_r": 22.2, + "wthirdbar_h": 38.5, + "wthirdbar_l": 24.5, + "wthirdbar_r": 34.2 + }, + { + "cec7_h": 34.1, + "cec7_l": 15.7, + "cec7_r": 26.7, + "chkey": 79721295, + "claytotal_h": 45, + "claytotal_l": 20, + "claytotal_r": 35, + "cokey": 26701976, + "dbovendry_h": 1.91, + "dbovendry_l": 1.65, + "dbovendry_r": 1.75, + "ec_h": 15, + "ec_l": 1, + "ec_r": 4, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 85, + "hzdept_r": 73, + "hzname": "^C3", + "lep_h": 6, + "lep_l": 0, + "lep_r": 3, + "mukey": 1602804, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 8, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 33.3, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 31.7, + "total_frag_volume": 0, + "wfifteenbar_h": 31.2, + "wfifteenbar_l": 11.7, + "wfifteenbar_r": 24.2, + "wthirdbar_h": 38.5, + "wthirdbar_l": 24.5, + "wthirdbar_r": 35.2 + }, + { + "cec7_h": 34.1, + "cec7_l": 15.7, + "cec7_r": 26.7, + "chkey": 79721338, + "claytotal_h": 45, + "claytotal_l": 20, + "claytotal_r": 35, + "cokey": 26701975, + "dbovendry_h": 1.91, + "dbovendry_l": 1.65, + "dbovendry_r": 1.75, + "ec_h": 15, + "ec_l": 1, + "ec_r": 4, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 85, + "hzdept_r": 73, + "hzname": "^C3", + "lep_h": 6, + "lep_l": 0, + "lep_r": 3, + "mukey": 1602803, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 8, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 33.3, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 31.7, + "total_frag_volume": 0, + "wfifteenbar_h": 31.2, + "wfifteenbar_l": 11.7, + "wfifteenbar_r": 24.2, + "wthirdbar_h": 38.5, + "wthirdbar_l": 24.5, + "wthirdbar_r": 35.2 + }, + { + "cec7_h": 34.1, + "cec7_l": 15.7, + "cec7_r": 21.9, + "chkey": 79721296, + "claytotal_h": 45, + "claytotal_l": 20, + "claytotal_r": 28, + "cokey": 26701976, + "dbovendry_h": 1.91, + "dbovendry_l": 1.65, + "dbovendry_r": 1.75, + "ec_h": 15, + "ec_l": 1, + "ec_r": 4, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 133, + "hzdept_r": 85, + "hzname": "^C4", + "lep_h": 6, + "lep_l": 0, + "lep_r": 3, + "mukey": 1602804, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 8, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 54.7, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 17.3, + "total_frag_volume": 0, + "wfifteenbar_h": 31.2, + "wfifteenbar_l": 11.7, + "wfifteenbar_r": 19.5, + "wthirdbar_h": 32.8, + "wthirdbar_l": 19.2, + "wthirdbar_r": 26.6 + }, + { + "cec7_h": 34.1, + "cec7_l": 15.7, + "cec7_r": 21.9, + "chkey": 79721337, + "claytotal_h": 45, + "claytotal_l": 20, + "claytotal_r": 28, + "cokey": 26701975, + "dbovendry_h": 1.91, + "dbovendry_l": 1.65, + "dbovendry_r": 1.75, + "ec_h": 15, + "ec_l": 1, + "ec_r": 4, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 133, + "hzdept_r": 85, + "hzname": "^C4", + "lep_h": 6, + "lep_l": 0, + "lep_r": 3, + "mukey": 1602803, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 8, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 54.7, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 17.3, + "total_frag_volume": 0, + "wfifteenbar_h": 31.2, + "wfifteenbar_l": 11.7, + "wfifteenbar_r": 19.5, + "wthirdbar_h": 32.8, + "wthirdbar_l": 19.2, + "wthirdbar_r": 26.6 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79721334, + "claytotal_h": 0, + "claytotal_l": 0, + "claytotal_r": 0, + "cokey": 26701975, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 152, + "hzdept_r": 133, + "hzname": "2^Cdu", + "lep_h": 0, + "lep_l": 0, + "lep_r": 0, + "mukey": 1602803, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 0, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 0, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79721291, + "claytotal_h": 0, + "claytotal_l": 0, + "claytotal_r": 0, + "cokey": 26701976, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 150, + "hzdept_r": 133, + "hzname": "2^Cdu", + "lep_h": 0, + "lep_l": 0, + "lep_r": 0, + "mukey": 1602804, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 0, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 0, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": 18.6, + "cec7_l": 7.9, + "cec7_r": 9.6, + "chkey": 79721302, + "claytotal_h": 35, + "claytotal_l": 15, + "claytotal_r": 18, + "cokey": 26701978, + "dbovendry_h": 1.89, + "dbovendry_l": 1.59, + "dbovendry_r": 1.69, + "ec_h": 3, + "ec_l": 0.2, + "ec_r": 0.2, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 22, + "hzdept_r": 0, + "hzname": "^A", + "lep_h": 6, + "lep_l": 0, + "lep_r": 3, + "mukey": 1602806, + "ph1to1h2o_h": 8.5, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.8, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 66.8, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 15.2, + "total_frag_volume": 25, + "wfifteenbar_h": 23.3, + "wfifteenbar_l": 6.2, + "wfifteenbar_r": 9, + "wthirdbar_h": 28.8, + "wthirdbar_l": 12.4, + "wthirdbar_r": 15.9 + }, + { + "cec7_h": 18.6, + "cec7_l": 7.9, + "cec7_r": 8.5, + "chkey": 79721299, + "claytotal_h": 35, + "claytotal_l": 15, + "claytotal_r": 16, + "cokey": 26701978, + "dbovendry_h": 1.96, + "dbovendry_l": 1.62, + "dbovendry_r": 1.72, + "ec_h": 4, + "ec_l": 0.5, + "ec_r": 0.5, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 70, + "hzdept_r": 22, + "hzname": "^C1", + "lep_h": 6, + "lep_l": 0, + "lep_r": 3, + "mukey": 1602806, + "ph1to1h2o_h": 8.5, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 8.2, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 65.1, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 18.9, + "total_frag_volume": 35, + "wfifteenbar_h": 23.3, + "wfifteenbar_l": 5.2, + "wfifteenbar_r": 6.9, + "wthirdbar_h": 28.8, + "wthirdbar_l": 10.3, + "wthirdbar_r": 13.1 + }, + { + "cec7_h": 18.6, + "cec7_l": 7.9, + "cec7_r": 11.7, + "chkey": 79721300, + "claytotal_h": 35, + "claytotal_l": 15, + "claytotal_r": 22, + "cokey": 26701978, + "dbovendry_h": 1.86, + "dbovendry_l": 1.58, + "dbovendry_r": 1.68, + "ec_h": 9, + "ec_l": 1.8, + "ec_r": 1.8, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 89, + "hzdept_r": 70, + "hzname": "^C2", + "lep_h": 6, + "lep_l": 0, + "lep_r": 3, + "mukey": 1602806, + "ph1to1h2o_h": 8.5, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 8.2, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 59.9, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 18.1, + "total_frag_volume": 20, + "wfifteenbar_h": 23.3, + "wfifteenbar_l": 6.3, + "wfifteenbar_r": 11.6, + "wthirdbar_h": 28.8, + "wthirdbar_l": 12.6, + "wthirdbar_r": 18.5 + }, + { + "cec7_h": 32.1, + "cec7_l": 18.4, + "cec7_r": 23.9, + "chkey": 79721298, + "claytotal_h": 60, + "claytotal_l": 35, + "claytotal_r": 45, + "cokey": 26701978, + "dbovendry_h": 1.55, + "dbovendry_l": 1.33, + "dbovendry_r": 1.43, + "ec_h": 15, + "ec_l": 10, + "ec_r": 10, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 130, + "hzdept_r": 89, + "hzname": "2Cb1", + "lep_h": 9, + "lep_l": 3, + "lep_r": 6, + "mukey": 1602806, + "ph1to1h2o_h": 8.5, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.6, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 7.2, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 47.8, + "total_frag_volume": 0, + "wfifteenbar_h": 32.3, + "wfifteenbar_l": 18.3, + "wfifteenbar_r": 23.8, + "wthirdbar_h": 35.8, + "wthirdbar_l": 28.4, + "wthirdbar_r": 31.7 + }, + { + "cec7_h": 32.1, + "cec7_l": 18.4, + "cec7_r": 26.5, + "chkey": 79721301, + "claytotal_h": 60, + "claytotal_l": 35, + "claytotal_r": 50, + "cokey": 26701978, + "dbovendry_h": 1.55, + "dbovendry_l": 1.33, + "dbovendry_r": 1.43, + "ec_h": 30, + "ec_l": 15, + "ec_r": 21.5, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 150, + "hzdept_r": 130, + "hzname": "2Cb2", + "lep_h": 9, + "lep_l": 3, + "lep_r": 6, + "mukey": 1602806, + "ph1to1h2o_h": 8.5, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.3, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 5.3, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 44.7, + "total_frag_volume": 0, + "wfifteenbar_h": 32.3, + "wfifteenbar_l": 18.3, + "wfifteenbar_r": 26.3, + "wthirdbar_h": 35.8, + "wthirdbar_l": 28.4, + "wthirdbar_r": 33 + }, + { + "cec7_h": 34.9, + "cec7_l": 21.5, + "cec7_r": 32, + "chkey": 79721007, + "claytotal_h": 45, + "claytotal_l": 27, + "claytotal_r": 41.8, + "cokey": 26701930, + "dbovendry_h": 1.89, + "dbovendry_l": 1.76, + "dbovendry_r": 1.81, + "ec_h": 4, + "ec_l": 0.2, + "ec_r": 2, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 24, + "hzdept_r": 0, + "hzname": "A1", + "lep_h": 9, + "lep_l": 6, + "lep_r": 7.5, + "mukey": 1882928, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 8.3, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 20.6, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 37.6, + "total_frag_volume": 2, + "wfifteenbar_h": 29.3, + "wfifteenbar_l": 15.2, + "wfifteenbar_r": 24.7, + "wthirdbar_h": 36.9, + "wthirdbar_l": 25.6, + "wthirdbar_r": 35.5 + }, + { + "cec7_h": 40.5, + "cec7_l": 21.2, + "cec7_r": 37, + "chkey": 79721011, + "claytotal_h": 55, + "claytotal_l": 27, + "claytotal_r": 50.7, + "cokey": 26701930, + "dbovendry_h": 1.88, + "dbovendry_l": 1.76, + "dbovendry_r": 1.81, + "ec_h": 4, + "ec_l": 0.2, + "ec_r": 2, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 42, + "hzdept_r": 24, + "hzname": "A2", + "lep_h": 9, + "lep_l": 6, + "lep_r": 7.5, + "mukey": 1882928, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 8.3, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 15.8, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 33.5, + "total_frag_volume": 1, + "wfifteenbar_h": 32.3, + "wfifteenbar_l": 14.9, + "wfifteenbar_r": 28.6, + "wthirdbar_h": 38.7, + "wthirdbar_l": 25.3, + "wthirdbar_r": 37.6 + }, + { + "cec7_h": 43.7, + "cec7_l": 26.6, + "cec7_r": 36.3, + "chkey": 79721008, + "claytotal_h": 60, + "claytotal_l": 35, + "claytotal_r": 49.6, + "cokey": 26701930, + "dbovendry_h": 1.97, + "dbovendry_l": 1.84, + "dbovendry_r": 1.89, + "ec_h": 4, + "ec_l": 0.2, + "ec_r": 2, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 68, + "hzdept_r": 42, + "hzname": "Bw", + "lep_h": 12, + "lep_l": 9, + "lep_r": 10.5, + "mukey": 1882928, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 8.4, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 16, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 34.4, + "total_frag_volume": 0, + "wfifteenbar_h": 34.5, + "wfifteenbar_l": 17.9, + "wfifteenbar_r": 28, + "wthirdbar_h": 40.6, + "wthirdbar_l": 26.5, + "wthirdbar_r": 38.9 + }, + { + "cec7_h": 43.2, + "cec7_l": 26.2, + "cec7_r": 32.4, + "chkey": 79721009, + "claytotal_h": 60, + "claytotal_l": 35, + "claytotal_r": 43.8, + "cokey": 26701930, + "dbovendry_h": 1.97, + "dbovendry_l": 1.84, + "dbovendry_r": 1.89, + "ec_h": 4, + "ec_l": 0.2, + "ec_r": 2, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 88, + "hzdept_r": 68, + "hzname": "Bk", + "lep_h": 12, + "lep_l": 9, + "lep_r": 10.5, + "mukey": 1882928, + "ph1to1h2o_h": 8.6, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 8.6, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 18.5, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 37.7, + "total_frag_volume": 0, + "wfifteenbar_h": 34, + "wfifteenbar_l": 17.6, + "wfifteenbar_r": 24.7, + "wthirdbar_h": 40.6, + "wthirdbar_l": 26.3, + "wthirdbar_r": 37.7 + }, + { + "cec7_h": 42.3, + "cec7_l": 22.8, + "cec7_r": 25.5, + "chkey": 79721012, + "claytotal_h": 60, + "claytotal_l": 30, + "claytotal_r": 33.7, + "cokey": 26701930, + "dbovendry_h": 1.97, + "dbovendry_l": 1.84, + "dbovendry_r": 1.89, + "ec_h": 4, + "ec_l": 0.2, + "ec_r": 2, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 115, + "hzdept_r": 88, + "hzname": "Ck", + "lep_h": 12, + "lep_l": 9, + "lep_r": 10.5, + "mukey": 1882928, + "ph1to1h2o_h": 8.6, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 8.5, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 24.7, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 41.6, + "total_frag_volume": 0, + "wfifteenbar_h": 36.1, + "wfifteenbar_l": 16.4, + "wfifteenbar_r": 20.5, + "wthirdbar_h": 40.5, + "wthirdbar_l": 28.7, + "wthirdbar_r": 33.2 + }, + { + "cec7_h": 26.2, + "cec7_l": 15.4, + "cec7_r": 18.9, + "chkey": 79721013, + "claytotal_h": 35, + "claytotal_l": 20, + "claytotal_r": 24.4, + "cokey": 26701930, + "dbovendry_h": 1.87, + "dbovendry_l": 1.79, + "dbovendry_r": 1.82, + "ec_h": 4, + "ec_l": 0.2, + "ec_r": 2, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 183, + "hzdept_r": 115, + "hzname": "C", + "lep_h": 9, + "lep_l": 0, + "lep_r": 3, + "mukey": 1882928, + "ph1to1h2o_h": 8.6, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 8.6, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 44.1, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 31.5, + "total_frag_volume": 30, + "wfifteenbar_h": 23.8, + "wfifteenbar_l": 8.7, + "wfifteenbar_r": 11.6, + "wthirdbar_h": 35, + "wthirdbar_l": 18.7, + "wthirdbar_r": 21.5 + }, + { + "cec7_h": 34.8, + "cec7_l": 15.4, + "cec7_r": 33, + "chkey": 79721010, + "claytotal_h": 50, + "claytotal_l": 20, + "claytotal_r": 48.6, + "cokey": 26701930, + "dbovendry_h": 1.94, + "dbovendry_l": 1.74, + "dbovendry_r": 1.79, + "ec_h": 4, + "ec_l": 0.2, + "ec_r": 2, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 225, + "hzdept_r": 183, + "hzname": "2Ab", + "lep_h": 9, + "lep_l": 3, + "lep_r": 6, + "mukey": 1882928, + "ph1to1h2o_h": 8.6, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 8.2, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 22, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 29.4, + "total_frag_volume": 0, + "wfifteenbar_h": 27.8, + "wfifteenbar_l": 7.2, + "wfifteenbar_r": 26.8, + "wthirdbar_h": 36.8, + "wthirdbar_l": 15.1, + "wthirdbar_r": 36.5 + }, + { + "cec7_h": 34.9, + "cec7_l": 21.5, + "cec7_r": 32, + "chkey": 79721101, + "claytotal_h": 45, + "claytotal_l": 27, + "claytotal_r": 41.8, + "cokey": 26701950, + "dbovendry_h": 1.89, + "dbovendry_l": 1.76, + "dbovendry_r": 1.81, + "ec_h": 4, + "ec_l": 0.2, + "ec_r": 2, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 24, + "hzdept_r": 0, + "hzname": "A1", + "lep_h": 9, + "lep_l": 6, + "lep_r": 7.5, + "mukey": 1543362, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 8.3, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 20.6, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 37.6, + "total_frag_volume": 2, + "wfifteenbar_h": 29.3, + "wfifteenbar_l": 15.2, + "wfifteenbar_r": 24.7, + "wthirdbar_h": 36.9, + "wthirdbar_l": 25.6, + "wthirdbar_r": 35.5 + }, + { + "cec7_h": 40.5, + "cec7_l": 21.2, + "cec7_r": 37, + "chkey": 79721102, + "claytotal_h": 55, + "claytotal_l": 27, + "claytotal_r": 50.7, + "cokey": 26701950, + "dbovendry_h": 1.88, + "dbovendry_l": 1.76, + "dbovendry_r": 1.81, + "ec_h": 4, + "ec_l": 0.2, + "ec_r": 2, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 42, + "hzdept_r": 24, + "hzname": "A2", + "lep_h": 9, + "lep_l": 6, + "lep_r": 7.5, + "mukey": 1543362, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 8.3, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 15.8, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 33.5, + "total_frag_volume": 1, + "wfifteenbar_h": 32.3, + "wfifteenbar_l": 14.9, + "wfifteenbar_r": 28.6, + "wthirdbar_h": 38.7, + "wthirdbar_l": 25.3, + "wthirdbar_r": 37.6 + }, + { + "cec7_h": 43.7, + "cec7_l": 26.6, + "cec7_r": 36.3, + "chkey": 79721103, + "claytotal_h": 60, + "claytotal_l": 35, + "claytotal_r": 49.6, + "cokey": 26701950, + "dbovendry_h": 1.97, + "dbovendry_l": 1.84, + "dbovendry_r": 1.89, + "ec_h": 4, + "ec_l": 0.2, + "ec_r": 2, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 68, + "hzdept_r": 42, + "hzname": "Bw", + "lep_h": 12, + "lep_l": 9, + "lep_r": 10.5, + "mukey": 1543362, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 8.4, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 16, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 34.4, + "total_frag_volume": 0, + "wfifteenbar_h": 34.5, + "wfifteenbar_l": 17.9, + "wfifteenbar_r": 28, + "wthirdbar_h": 40.6, + "wthirdbar_l": 26.5, + "wthirdbar_r": 38.9 + }, + { + "cec7_h": 43.2, + "cec7_l": 26.2, + "cec7_r": 32.4, + "chkey": 79721104, + "claytotal_h": 60, + "claytotal_l": 35, + "claytotal_r": 43.8, + "cokey": 26701950, + "dbovendry_h": 1.97, + "dbovendry_l": 1.84, + "dbovendry_r": 1.89, + "ec_h": 4, + "ec_l": 0.2, + "ec_r": 2, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 88, + "hzdept_r": 68, + "hzname": "Bk", + "lep_h": 12, + "lep_l": 9, + "lep_r": 10.5, + "mukey": 1543362, + "ph1to1h2o_h": 8.6, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 8.6, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 18.5, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 37.7, + "total_frag_volume": 0, + "wfifteenbar_h": 34, + "wfifteenbar_l": 17.6, + "wfifteenbar_r": 24.7, + "wthirdbar_h": 40.6, + "wthirdbar_l": 26.3, + "wthirdbar_r": 37.7 + }, + { + "cec7_h": 42.3, + "cec7_l": 22.8, + "cec7_r": 25.5, + "chkey": 79721105, + "claytotal_h": 60, + "claytotal_l": 30, + "claytotal_r": 33.7, + "cokey": 26701950, + "dbovendry_h": 1.97, + "dbovendry_l": 1.84, + "dbovendry_r": 1.89, + "ec_h": 4, + "ec_l": 0.2, + "ec_r": 2, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 115, + "hzdept_r": 88, + "hzname": "Ck", + "lep_h": 12, + "lep_l": 9, + "lep_r": 10.5, + "mukey": 1543362, + "ph1to1h2o_h": 8.6, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 8.5, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 24.7, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 41.6, + "total_frag_volume": 0, + "wfifteenbar_h": 36.1, + "wfifteenbar_l": 16.4, + "wfifteenbar_r": 20.5, + "wthirdbar_h": 40.5, + "wthirdbar_l": 28.7, + "wthirdbar_r": 33.2 + }, + { + "cec7_h": 26.2, + "cec7_l": 15.4, + "cec7_r": 18.9, + "chkey": 79721106, + "claytotal_h": 35, + "claytotal_l": 20, + "claytotal_r": 24.4, + "cokey": 26701950, + "dbovendry_h": 1.87, + "dbovendry_l": 1.79, + "dbovendry_r": 1.82, + "ec_h": 4, + "ec_l": 0.2, + "ec_r": 2, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 183, + "hzdept_r": 115, + "hzname": "C", + "lep_h": 9, + "lep_l": 0, + "lep_r": 3, + "mukey": 1543362, + "ph1to1h2o_h": 8.6, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 8.6, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 44.1, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 31.5, + "total_frag_volume": 30, + "wfifteenbar_h": 23.8, + "wfifteenbar_l": 8.7, + "wfifteenbar_r": 11.6, + "wthirdbar_h": 35, + "wthirdbar_l": 18.7, + "wthirdbar_r": 21.5 + }, + { + "cec7_h": 34.8, + "cec7_l": 15.4, + "cec7_r": 33, + "chkey": 79721100, + "claytotal_h": 50, + "claytotal_l": 20, + "claytotal_r": 48.6, + "cokey": 26701950, + "dbovendry_h": 1.94, + "dbovendry_l": 1.74, + "dbovendry_r": 1.79, + "ec_h": 4, + "ec_l": 0.2, + "ec_r": 2, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 225, + "hzdept_r": 183, + "hzname": "2Ab", + "lep_h": 9, + "lep_l": 3, + "lep_r": 6, + "mukey": 1543362, + "ph1to1h2o_h": 8.6, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 8.2, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 22, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 29.4, + "total_frag_volume": 0, + "wfifteenbar_h": 27.8, + "wfifteenbar_l": 7.2, + "wfifteenbar_r": 26.8, + "wthirdbar_h": 36.8, + "wthirdbar_l": 15.1, + "wthirdbar_r": 36.5 + }, + { + "cec7_h": 37.3, + "cec7_l": 26.8, + "cec7_r": 30.5, + "chkey": 79720996, + "claytotal_h": 50, + "claytotal_l": 35, + "claytotal_r": 45, + "cokey": 26701928, + "dbovendry_h": 2.04, + "dbovendry_l": 1.86, + "dbovendry_r": 1.96, + "ec_h": 3, + "ec_l": 0.1, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 23, + "hzdept_r": 0, + "hzname": "Ap1", + "lep_h": 12, + "lep_l": 9, + "lep_r": 10.5, + "mukey": 1882928, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.3, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 8, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 47, + "total_frag_volume": 0, + "wfifteenbar_h": 29.6, + "wfifteenbar_l": 18.3, + "wfifteenbar_r": 26.3, + "wthirdbar_h": 34.6, + "wthirdbar_l": 26.7, + "wthirdbar_r": 33 + }, + { + "cec7_h": 37.3, + "cec7_l": 26.8, + "cec7_r": 30.5, + "chkey": 79720999, + "claytotal_h": 50, + "claytotal_l": 35, + "claytotal_r": 45, + "cokey": 26701928, + "dbovendry_h": 2.04, + "dbovendry_l": 1.86, + "dbovendry_r": 1.96, + "ec_h": 3, + "ec_l": 0.1, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 36, + "hzdept_r": 23, + "hzname": "Ap2", + "lep_h": 12, + "lep_l": 9, + "lep_r": 10.5, + "mukey": 1882928, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.2, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 8, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 47, + "total_frag_volume": 0, + "wfifteenbar_h": 29.6, + "wfifteenbar_l": 18.3, + "wfifteenbar_r": 26.3, + "wthirdbar_h": 34.6, + "wthirdbar_l": 26.7, + "wthirdbar_r": 33 + }, + { + "cec7_h": 37.3, + "cec7_l": 26.8, + "cec7_r": 30.5, + "chkey": 79720997, + "claytotal_h": 50, + "claytotal_l": 35, + "claytotal_r": 47, + "cokey": 26701928, + "dbovendry_h": 2.04, + "dbovendry_l": 1.86, + "dbovendry_r": 1.96, + "ec_h": 3, + "ec_l": 0.1, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 82, + "hzdept_r": 36, + "hzname": "Bw", + "lep_h": 12, + "lep_l": 9, + "lep_r": 10.5, + "mukey": 1882928, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.2, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 8, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 45, + "total_frag_volume": 0, + "wfifteenbar_h": 29.6, + "wfifteenbar_l": 18.3, + "wfifteenbar_r": 27.4, + "wthirdbar_h": 34.6, + "wthirdbar_l": 26.7, + "wthirdbar_r": 33.5 + }, + { + "cec7_h": 36.5, + "cec7_l": 26.2, + "cec7_r": 28.5, + "chkey": 79720998, + "claytotal_h": 50, + "claytotal_l": 35, + "claytotal_r": 48, + "cokey": 26701928, + "dbovendry_h": 2.04, + "dbovendry_l": 1.86, + "dbovendry_r": 1.96, + "ec_h": 3, + "ec_l": 0.1, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 127, + "hzdept_r": 82, + "hzname": "Bss", + "lep_h": 12, + "lep_l": 9, + "lep_r": 10.5, + "mukey": 1882928, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.4, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 8.3, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 43.7, + "total_frag_volume": 0, + "wfifteenbar_h": 28.4, + "wfifteenbar_l": 17.7, + "wfifteenbar_r": 27.1, + "wthirdbar_h": 34, + "wthirdbar_l": 26.4, + "wthirdbar_r": 33.3 + }, + { + "cec7_h": 33, + "cec7_l": 22.4, + "cec7_r": 26.2, + "chkey": 79721000, + "claytotal_h": 45, + "claytotal_l": 30, + "claytotal_r": 40, + "cokey": 26701928, + "dbovendry_h": 1.9, + "dbovendry_l": 1.72, + "dbovendry_r": 1.82, + "ec_h": 3, + "ec_l": 0.1, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 167, + "hzdept_r": 127, + "hzname": "C", + "lep_h": 12, + "lep_l": 9, + "lep_r": 10.5, + "mukey": 1882928, + "ph1to1h2o_h": 8.2, + "ph1to1h2o_l": 7.3, + "ph1to1h2o_r": 7.9, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 8.8, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 51.2, + "total_frag_volume": 0, + "wfifteenbar_h": 24.8, + "wfifteenbar_l": 14.7, + "wfifteenbar_r": 21.9, + "wthirdbar_h": 32.2, + "wthirdbar_l": 24.4, + "wthirdbar_r": 30.6 + }, + { + "cec7_h": 37.3, + "cec7_l": 26.8, + "cec7_r": 30.5, + "chkey": 79721107, + "claytotal_h": 50, + "claytotal_l": 35, + "claytotal_r": 45, + "cokey": 26701951, + "dbovendry_h": 2.04, + "dbovendry_l": 1.86, + "dbovendry_r": 1.96, + "ec_h": 3, + "ec_l": 0.1, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 23, + "hzdept_r": 0, + "hzname": "Ap1", + "lep_h": 12, + "lep_l": 9, + "lep_r": 10.5, + "mukey": 1543362, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.3, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 8, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 47, + "total_frag_volume": 0, + "wfifteenbar_h": 29.6, + "wfifteenbar_l": 18.3, + "wfifteenbar_r": 26.3, + "wthirdbar_h": 34.6, + "wthirdbar_l": 26.7, + "wthirdbar_r": 33 + }, + { + "cec7_h": 25.2, + "cec7_l": 15.1, + "cec7_r": 17, + "chkey": 79721123, + "claytotal_h": 30, + "claytotal_l": 18, + "claytotal_r": 20, + "cokey": 26701953, + "dbovendry_h": 1.76, + "dbovendry_l": 1.63, + "dbovendry_r": 1.68, + "ec_h": 0.3, + "ec_l": 0.1, + "ec_r": 0.2, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 7, + "hzdept_r": 0, + "hzname": "A1", + "lep_h": 6, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 1543362, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.4, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 42.1, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 37.9, + "total_frag_volume": 10, + "wfifteenbar_h": 22, + "wfifteenbar_l": 9.5, + "wfifteenbar_r": 12.8, + "wthirdbar_h": 33.6, + "wthirdbar_l": 21.9, + "wthirdbar_r": 26.3 + }, + { + "cec7_h": 21.6, + "cec7_l": 14.4, + "cec7_r": 15.1, + "chkey": 79721014, + "claytotal_h": 40, + "claytotal_l": 27, + "claytotal_r": 39, + "cokey": 26701931, + "dbovendry_h": 1.94, + "dbovendry_l": 1.76, + "dbovendry_r": 1.86, + "ec_h": 8, + "ec_l": 1, + "ec_r": 1.6, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 19, + "hzdept_r": 0, + "hzname": "An", + "lep_h": 9, + "lep_l": 6, + "lep_r": 7.5, + "mukey": 1882928, + "ph1to1h2o_h": 9.5, + "ph1to1h2o_l": 7.8, + "ph1to1h2o_r": 9, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 30.3, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 30.7, + "total_frag_volume": 0, + "wfifteenbar_h": 28.9, + "wfifteenbar_l": 18.3, + "wfifteenbar_r": 27.1, + "wthirdbar_h": 37.5, + "wthirdbar_l": 31.9, + "wthirdbar_r": 36.6 + }, + { + "cec7_h": 25.2, + "cec7_l": 15.1, + "cec7_r": 17, + "chkey": 79721001, + "claytotal_h": 30, + "claytotal_l": 18, + "claytotal_r": 20, + "cokey": 26701929, + "dbovendry_h": 1.76, + "dbovendry_l": 1.63, + "dbovendry_r": 1.68, + "ec_h": 0.3, + "ec_l": 0.1, + "ec_r": 0.2, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 7, + "hzdept_r": 0, + "hzname": "A1", + "lep_h": 6, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 1882928, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.4, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 42.1, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 37.9, + "total_frag_volume": 10, + "wfifteenbar_h": 22, + "wfifteenbar_l": 9.5, + "wfifteenbar_r": 12.8, + "wthirdbar_h": 33.6, + "wthirdbar_l": 21.9, + "wthirdbar_r": 26.3 + }, + { + "cec7_h": 24.6, + "cec7_l": 14.9, + "cec7_r": 18.1, + "chkey": 79721124, + "claytotal_h": 30, + "claytotal_l": 18, + "claytotal_r": 22, + "cokey": 26701953, + "dbovendry_h": 1.76, + "dbovendry_l": 1.63, + "dbovendry_r": 1.68, + "ec_h": 0.3, + "ec_l": 0.1, + "ec_r": 0.2, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 30, + "hzdept_r": 7, + "hzname": "A2", + "lep_h": 6, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 1543362, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.4, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 41.1, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 36.9, + "total_frag_volume": 10, + "wfifteenbar_h": 19.5, + "wfifteenbar_l": 9.2, + "wfifteenbar_r": 12.8, + "wthirdbar_h": 32.2, + "wthirdbar_l": 21.7, + "wthirdbar_r": 26.2 + }, + { + "cec7_h": 24.6, + "cec7_l": 14.9, + "cec7_r": 18.1, + "chkey": 79721005, + "claytotal_h": 30, + "claytotal_l": 18, + "claytotal_r": 22, + "cokey": 26701929, + "dbovendry_h": 1.76, + "dbovendry_l": 1.63, + "dbovendry_r": 1.68, + "ec_h": 0.3, + "ec_l": 0.1, + "ec_r": 0.2, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 30, + "hzdept_r": 7, + "hzname": "A2", + "lep_h": 6, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 1882928, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.4, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 41.1, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 36.9, + "total_frag_volume": 10, + "wfifteenbar_h": 19.5, + "wfifteenbar_l": 9.2, + "wfifteenbar_r": 12.8, + "wthirdbar_h": 32.2, + "wthirdbar_l": 21.7, + "wthirdbar_r": 26.2 + }, + { + "cec7_h": 26.9, + "cec7_l": 18.6, + "cec7_r": 20.3, + "chkey": 79721017, + "claytotal_h": 50, + "claytotal_l": 35, + "claytotal_r": 45, + "cokey": 26701931, + "dbovendry_h": 1.94, + "dbovendry_l": 1.76, + "dbovendry_r": 1.86, + "ec_h": 8, + "ec_l": 2, + "ec_r": 2.2, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 40, + "hzdept_r": 19, + "hzname": "Bkn1", + "lep_h": 9, + "lep_l": 6, + "lep_r": 7.5, + "mukey": 1882928, + "ph1to1h2o_h": 10, + "ph1to1h2o_l": 7.8, + "ph1to1h2o_r": 9.9, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 26.1, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 28.9, + "total_frag_volume": 0, + "wfifteenbar_h": 30.6, + "wfifteenbar_l": 20.5, + "wfifteenbar_r": 26.6, + "wthirdbar_h": 36.8, + "wthirdbar_l": 29.8, + "wthirdbar_r": 35.9 + }, + { + "cec7_h": 37.3, + "cec7_l": 26.8, + "cec7_r": 30.5, + "chkey": 79721108, + "claytotal_h": 50, + "claytotal_l": 35, + "claytotal_r": 45, + "cokey": 26701951, + "dbovendry_h": 2.04, + "dbovendry_l": 1.86, + "dbovendry_r": 1.96, + "ec_h": 3, + "ec_l": 0.1, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 36, + "hzdept_r": 23, + "hzname": "Ap2", + "lep_h": 12, + "lep_l": 9, + "lep_r": 10.5, + "mukey": 1543362, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.2, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 8, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 47, + "total_frag_volume": 0, + "wfifteenbar_h": 29.6, + "wfifteenbar_l": 18.3, + "wfifteenbar_r": 26.3, + "wthirdbar_h": 34.6, + "wthirdbar_l": 26.7, + "wthirdbar_r": 33 + }, + { + "cec7_h": 28.2, + "cec7_l": 14.9, + "cec7_r": 21.1, + "chkey": 79721125, + "claytotal_h": 35, + "claytotal_l": 18, + "claytotal_r": 26, + "cokey": 26701953, + "dbovendry_h": 1.74, + "dbovendry_l": 1.62, + "dbovendry_r": 1.67, + "ec_h": 0.3, + "ec_l": 0.1, + "ec_r": 0.2, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 66, + "hzdept_r": 30, + "hzname": "ABt", + "lep_h": 6, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 1543362, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.4, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 38, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 36, + "total_frag_volume": 5, + "wfifteenbar_h": 22.5, + "wfifteenbar_l": 9.8, + "wfifteenbar_r": 15.7, + "wthirdbar_h": 34.1, + "wthirdbar_l": 23.1, + "wthirdbar_r": 29.2 + }, + { + "cec7_h": 28.2, + "cec7_l": 14.9, + "cec7_r": 21.1, + "chkey": 79721002, + "claytotal_h": 35, + "claytotal_l": 18, + "claytotal_r": 26, + "cokey": 26701929, + "dbovendry_h": 1.74, + "dbovendry_l": 1.62, + "dbovendry_r": 1.67, + "ec_h": 0.3, + "ec_l": 0.1, + "ec_r": 0.2, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 66, + "hzdept_r": 30, + "hzname": "ABt", + "lep_h": 6, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 1882928, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.4, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 38, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 36, + "total_frag_volume": 5, + "wfifteenbar_h": 22.5, + "wfifteenbar_l": 9.8, + "wfifteenbar_r": 15.7, + "wthirdbar_h": 34.1, + "wthirdbar_l": 23.1, + "wthirdbar_r": 29.2 + }, + { + "cec7_h": 37.3, + "cec7_l": 26.8, + "cec7_r": 30.5, + "chkey": 79721109, + "claytotal_h": 50, + "claytotal_l": 35, + "claytotal_r": 47, + "cokey": 26701951, + "dbovendry_h": 2.04, + "dbovendry_l": 1.86, + "dbovendry_r": 1.96, + "ec_h": 3, + "ec_l": 0.1, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 82, + "hzdept_r": 36, + "hzname": "Bw", + "lep_h": 12, + "lep_l": 9, + "lep_r": 10.5, + "mukey": 1543362, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.2, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 8, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 45, + "total_frag_volume": 0, + "wfifteenbar_h": 29.6, + "wfifteenbar_l": 18.3, + "wfifteenbar_r": 27.4, + "wthirdbar_h": 34.6, + "wthirdbar_l": 26.7, + "wthirdbar_r": 33.5 + }, + { + "cec7_h": 26.5, + "cec7_l": 18.4, + "cec7_r": 20.1, + "chkey": 79721015, + "claytotal_h": 50, + "claytotal_l": 35, + "claytotal_r": 43, + "cokey": 26701931, + "dbovendry_h": 1.94, + "dbovendry_l": 1.76, + "dbovendry_r": 1.86, + "ec_h": 8, + "ec_l": 2, + "ec_r": 3.3, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 66, + "hzdept_r": 40, + "hzname": "Bkn2", + "lep_h": 9, + "lep_l": 6, + "lep_r": 7.5, + "mukey": 1882928, + "ph1to1h2o_h": 10, + "ph1to1h2o_l": 7.8, + "ph1to1h2o_r": 10, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 7.7, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 49.3, + "total_frag_volume": 0, + "wfifteenbar_h": 28.7, + "wfifteenbar_l": 19.9, + "wfifteenbar_r": 24.6, + "wthirdbar_h": 34.2, + "wthirdbar_l": 29.4, + "wthirdbar_r": 32.1 + }, + { + "cec7_h": 27.9, + "cec7_l": 14.7, + "cec7_r": 21.7, + "chkey": 79721003, + "claytotal_h": 35, + "claytotal_l": 18, + "claytotal_r": 27, + "cokey": 26701929, + "dbovendry_h": 1.73, + "dbovendry_l": 1.61, + "dbovendry_r": 1.66, + "ec_h": 0.3, + "ec_l": 0.1, + "ec_r": 0.2, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 96, + "hzdept_r": 66, + "hzname": "ABtk", + "lep_h": 6, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 1882928, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.4, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 55.4, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 17.6, + "total_frag_volume": 1, + "wfifteenbar_h": 22.9, + "wfifteenbar_l": 9.9, + "wfifteenbar_r": 17.4, + "wthirdbar_h": 28.4, + "wthirdbar_l": 17.9, + "wthirdbar_r": 25.1 + }, + { + "cec7_h": 27.9, + "cec7_l": 14.7, + "cec7_r": 21.7, + "chkey": 79721122, + "claytotal_h": 35, + "claytotal_l": 18, + "claytotal_r": 27, + "cokey": 26701953, + "dbovendry_h": 1.73, + "dbovendry_l": 1.61, + "dbovendry_r": 1.66, + "ec_h": 0.3, + "ec_l": 0.1, + "ec_r": 0.2, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 96, + "hzdept_r": 66, + "hzname": "ABtk", + "lep_h": 6, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 1543362, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.4, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 55.4, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 17.6, + "total_frag_volume": 1, + "wfifteenbar_h": 22.9, + "wfifteenbar_l": 9.9, + "wfifteenbar_r": 17.4, + "wthirdbar_h": 28.4, + "wthirdbar_l": 17.9, + "wthirdbar_r": 25.1 + }, + { + "cec7_h": 26.5, + "cec7_l": 18.4, + "cec7_r": 20.1, + "chkey": 79721018, + "claytotal_h": 50, + "claytotal_l": 35, + "claytotal_r": 49, + "cokey": 26701931, + "dbovendry_h": 1.94, + "dbovendry_l": 1.76, + "dbovendry_r": 1.86, + "ec_h": 8, + "ec_l": 2, + "ec_r": 3, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 95, + "hzdept_r": 66, + "hzname": "Bkn3", + "lep_h": 9, + "lep_l": 6, + "lep_r": 7.5, + "mukey": 1882928, + "ph1to1h2o_h": 10, + "ph1to1h2o_l": 7.8, + "ph1to1h2o_r": 9.7, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 5.4, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 45.6, + "total_frag_volume": 0, + "wfifteenbar_h": 28.7, + "wfifteenbar_l": 19.9, + "wfifteenbar_r": 27.9, + "wthirdbar_h": 34.2, + "wthirdbar_l": 29.4, + "wthirdbar_r": 33.7 + }, + { + "cec7_h": 36.5, + "cec7_l": 26.2, + "cec7_r": 28.5, + "chkey": 79721110, + "claytotal_h": 50, + "claytotal_l": 35, + "claytotal_r": 48, + "cokey": 26701951, + "dbovendry_h": 2.04, + "dbovendry_l": 1.86, + "dbovendry_r": 1.96, + "ec_h": 3, + "ec_l": 0.1, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 127, + "hzdept_r": 82, + "hzname": "Bss", + "lep_h": 12, + "lep_l": 9, + "lep_r": 10.5, + "mukey": 1543362, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.4, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 8.3, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 43.7, + "total_frag_volume": 0, + "wfifteenbar_h": 28.4, + "wfifteenbar_l": 17.7, + "wfifteenbar_r": 27.1, + "wthirdbar_h": 34, + "wthirdbar_l": 26.4, + "wthirdbar_r": 33.3 + }, + { + "cec7_h": 26.5, + "cec7_l": 18.4, + "cec7_r": 21.2, + "chkey": 79721020, + "claytotal_h": 50, + "claytotal_l": 35, + "claytotal_r": 48, + "cokey": 26701931, + "dbovendry_h": 1.94, + "dbovendry_l": 1.76, + "dbovendry_r": 1.86, + "ec_h": 8, + "ec_l": 2, + "ec_r": 2.9, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 120, + "hzdept_r": 95, + "hzname": "Bkn4", + "lep_h": 9, + "lep_l": 6, + "lep_r": 7.5, + "mukey": 1882928, + "ph1to1h2o_h": 10, + "ph1to1h2o_l": 7.8, + "ph1to1h2o_r": 9.6, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 5.4, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 46.6, + "total_frag_volume": 0, + "wfifteenbar_h": 28.7, + "wfifteenbar_l": 19.9, + "wfifteenbar_r": 27.3, + "wthirdbar_h": 34.2, + "wthirdbar_l": 29.4, + "wthirdbar_r": 33.5 + }, + { + "cec7_h": 27.2, + "cec7_l": 13.1, + "cec7_r": 19.2, + "chkey": 79721004, + "claytotal_h": 35, + "claytotal_l": 16, + "claytotal_r": 24, + "cokey": 26701929, + "dbovendry_h": 1.73, + "dbovendry_l": 1.61, + "dbovendry_r": 1.66, + "ec_h": 0.3, + "ec_l": 0.1, + "ec_r": 0.2, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 129, + "hzdept_r": 96, + "hzname": "Ck", + "lep_h": 6, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 1882928, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.6, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 58.2, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 17.8, + "total_frag_volume": 1, + "wfifteenbar_h": 22, + "wfifteenbar_l": 8.8, + "wfifteenbar_r": 15.2, + "wthirdbar_h": 27.9, + "wthirdbar_l": 16.9, + "wthirdbar_r": 23.6 + }, + { + "cec7_h": 27.2, + "cec7_l": 13.1, + "cec7_r": 19.2, + "chkey": 79721121, + "claytotal_h": 35, + "claytotal_l": 16, + "claytotal_r": 24, + "cokey": 26701953, + "dbovendry_h": 1.73, + "dbovendry_l": 1.61, + "dbovendry_r": 1.66, + "ec_h": 0.3, + "ec_l": 0.1, + "ec_r": 0.2, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 129, + "hzdept_r": 96, + "hzname": "Ck", + "lep_h": 6, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 1543362, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.6, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 58.2, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 17.8, + "total_frag_volume": 1, + "wfifteenbar_h": 22, + "wfifteenbar_l": 8.8, + "wfifteenbar_r": 15.2, + "wthirdbar_h": 27.9, + "wthirdbar_l": 16.9, + "wthirdbar_r": 23.6 + }, + { + "cec7_h": 26.4, + "cec7_l": 18.3, + "cec7_r": 22.1, + "chkey": 79721016, + "claytotal_h": 50, + "claytotal_l": 35, + "claytotal_r": 39, + "cokey": 26701931, + "dbovendry_h": 1.94, + "dbovendry_l": 1.76, + "dbovendry_r": 1.86, + "ec_h": 8, + "ec_l": 2, + "ec_r": 2.9, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 155, + "hzdept_r": 120, + "hzname": "Bkn5", + "lep_h": 9, + "lep_l": 6, + "lep_r": 7.5, + "mukey": 1882928, + "ph1to1h2o_h": 9.5, + "ph1to1h2o_l": 7.8, + "ph1to1h2o_r": 9.4, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 30.3, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 30.7, + "total_frag_volume": 0, + "wfifteenbar_h": 32.4, + "wfifteenbar_l": 22.4, + "wfifteenbar_r": 25.2, + "wthirdbar_h": 39, + "wthirdbar_l": 34.3, + "wthirdbar_r": 35.7 + }, + { + "cec7_h": 33, + "cec7_l": 22.4, + "cec7_r": 26.2, + "chkey": 79721111, + "claytotal_h": 45, + "claytotal_l": 30, + "claytotal_r": 40, + "cokey": 26701951, + "dbovendry_h": 1.9, + "dbovendry_l": 1.72, + "dbovendry_r": 1.82, + "ec_h": 3, + "ec_l": 0.1, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 167, + "hzdept_r": 127, + "hzname": "C", + "lep_h": 12, + "lep_l": 9, + "lep_r": 10.5, + "mukey": 1543362, + "ph1to1h2o_h": 8.2, + "ph1to1h2o_l": 7.3, + "ph1to1h2o_r": 7.9, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 8.8, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 51.2, + "total_frag_volume": 0, + "wfifteenbar_h": 24.8, + "wfifteenbar_l": 14.7, + "wfifteenbar_r": 21.9, + "wthirdbar_h": 32.2, + "wthirdbar_l": 24.4, + "wthirdbar_r": 30.6 + }, + { + "cec7_h": 26.7, + "cec7_l": 12.4, + "cec7_r": 12.9, + "chkey": 79721006, + "claytotal_h": 35, + "claytotal_l": 16, + "claytotal_r": 16, + "cokey": 26701929, + "dbovendry_h": 1.78, + "dbovendry_l": 1.64, + "dbovendry_r": 1.69, + "ec_h": 0.3, + "ec_l": 0.1, + "ec_r": 0.2, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 154, + "hzdept_r": 129, + "hzname": "C", + "lep_h": 6, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 1882928, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.6, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 65.1, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 18.9, + "total_frag_volume": 15, + "wfifteenbar_h": 21.7, + "wfifteenbar_l": 8.4, + "wfifteenbar_r": 8.7, + "wthirdbar_h": 27.7, + "wthirdbar_l": 16.6, + "wthirdbar_r": 16.8 + }, + { + "cec7_h": 26.7, + "cec7_l": 12.4, + "cec7_r": 12.9, + "chkey": 79721120, + "claytotal_h": 35, + "claytotal_l": 16, + "claytotal_r": 16, + "cokey": 26701953, + "dbovendry_h": 1.78, + "dbovendry_l": 1.64, + "dbovendry_r": 1.69, + "ec_h": 0.3, + "ec_l": 0.1, + "ec_r": 0.2, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 154, + "hzdept_r": 129, + "hzname": "C", + "lep_h": 6, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 1543362, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.6, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 65.1, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 18.9, + "total_frag_volume": 15, + "wfifteenbar_h": 21.7, + "wfifteenbar_l": 8.4, + "wfifteenbar_r": 8.7, + "wthirdbar_h": 27.7, + "wthirdbar_l": 16.6, + "wthirdbar_r": 16.8 + }, + { + "cec7_h": 31.6, + "cec7_l": 20.8, + "cec7_r": 26.2, + "chkey": 79721019, + "claytotal_h": 60, + "claytotal_l": 30, + "claytotal_r": 51, + "cokey": 26701931, + "dbovendry_h": 1.94, + "dbovendry_l": 1.76, + "dbovendry_r": 1.86, + "ec_h": 8, + "ec_l": 2, + "ec_r": 2.9, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 164, + "hzdept_r": 155, + "hzname": "Bkn6", + "lep_h": 9, + "lep_l": 6, + "lep_r": 7.5, + "mukey": 1882928, + "ph1to1h2o_h": 9.5, + "ph1to1h2o_l": 7.8, + "ph1to1h2o_r": 9.3, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 5.2, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 43.8, + "total_frag_volume": 0, + "wfifteenbar_h": 33.9, + "wfifteenbar_l": 16.8, + "wfifteenbar_r": 28.6, + "wthirdbar_h": 36.5, + "wthirdbar_l": 27.5, + "wthirdbar_r": 34.1 + }, + { + "cec7_h": 31.6, + "cec7_l": 20.8, + "cec7_r": 26.2, + "chkey": 79721021, + "claytotal_h": 60, + "claytotal_l": 30, + "claytotal_r": 56, + "cokey": 26701931, + "dbovendry_h": 1.94, + "dbovendry_l": 1.76, + "dbovendry_r": 1.86, + "ec_h": 8, + "ec_l": 2, + "ec_r": 2.4, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 250, + "hzdept_r": 164, + "hzname": "BC", + "lep_h": 9, + "lep_l": 6, + "lep_r": 7.5, + "mukey": 1882928, + "ph1to1h2o_h": 9.5, + "ph1to1h2o_l": 7.8, + "ph1to1h2o_r": 9.2, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 3, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 41, + "total_frag_volume": 0, + "wfifteenbar_h": 33.9, + "wfifteenbar_l": 16.8, + "wfifteenbar_r": 31.4, + "wthirdbar_h": 36.5, + "wthirdbar_l": 27.5, + "wthirdbar_r": 35.4 + }, + { + "cec7_h": 21.6, + "cec7_l": 14.4, + "cec7_r": 15.1, + "chkey": 79721116, + "claytotal_h": 40, + "claytotal_l": 27, + "claytotal_r": 39, + "cokey": 26701952, + "dbovendry_h": 1.94, + "dbovendry_l": 1.76, + "dbovendry_r": 1.86, + "ec_h": 8, + "ec_l": 1, + "ec_r": 1.6, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 19, + "hzdept_r": 0, + "hzname": "An", + "lep_h": 9, + "lep_l": 6, + "lep_r": 7.5, + "mukey": 1543362, + "ph1to1h2o_h": 9.5, + "ph1to1h2o_l": 7.8, + "ph1to1h2o_r": 9, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 30.3, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 30.7, + "total_frag_volume": 0, + "wfifteenbar_h": 28.9, + "wfifteenbar_l": 18.3, + "wfifteenbar_r": 27.1, + "wthirdbar_h": 37.5, + "wthirdbar_l": 31.9, + "wthirdbar_r": 36.6 + }, + { + "cec7_h": 26.9, + "cec7_l": 18.6, + "cec7_r": 20.3, + "chkey": 79721117, + "claytotal_h": 50, + "claytotal_l": 35, + "claytotal_r": 45, + "cokey": 26701952, + "dbovendry_h": 1.94, + "dbovendry_l": 1.76, + "dbovendry_r": 1.86, + "ec_h": 8, + "ec_l": 2, + "ec_r": 2.2, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 40, + "hzdept_r": 19, + "hzname": "Bkn1", + "lep_h": 9, + "lep_l": 6, + "lep_r": 7.5, + "mukey": 1543362, + "ph1to1h2o_h": 10, + "ph1to1h2o_l": 7.8, + "ph1to1h2o_r": 9.9, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 26.1, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 28.9, + "total_frag_volume": 0, + "wfifteenbar_h": 30.6, + "wfifteenbar_l": 20.5, + "wfifteenbar_r": 26.6, + "wthirdbar_h": 36.8, + "wthirdbar_l": 29.8, + "wthirdbar_r": 35.9 + }, + { + "cec7_h": 26.5, + "cec7_l": 18.4, + "cec7_r": 20.1, + "chkey": 79721118, + "claytotal_h": 50, + "claytotal_l": 35, + "claytotal_r": 43, + "cokey": 26701952, + "dbovendry_h": 1.94, + "dbovendry_l": 1.76, + "dbovendry_r": 1.86, + "ec_h": 8, + "ec_l": 2, + "ec_r": 3.3, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 66, + "hzdept_r": 40, + "hzname": "Bkn2", + "lep_h": 9, + "lep_l": 6, + "lep_r": 7.5, + "mukey": 1543362, + "ph1to1h2o_h": 10, + "ph1to1h2o_l": 7.8, + "ph1to1h2o_r": 10, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 7.7, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 49.3, + "total_frag_volume": 0, + "wfifteenbar_h": 28.7, + "wfifteenbar_l": 19.9, + "wfifteenbar_r": 24.6, + "wthirdbar_h": 34.2, + "wthirdbar_l": 29.4, + "wthirdbar_r": 32.1 + }, + { + "cec7_h": 26.5, + "cec7_l": 18.4, + "cec7_r": 20.1, + "chkey": 79721114, + "claytotal_h": 50, + "claytotal_l": 35, + "claytotal_r": 49, + "cokey": 26701952, + "dbovendry_h": 1.94, + "dbovendry_l": 1.76, + "dbovendry_r": 1.86, + "ec_h": 8, + "ec_l": 2, + "ec_r": 3, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 95, + "hzdept_r": 66, + "hzname": "Bkn3", + "lep_h": 9, + "lep_l": 6, + "lep_r": 7.5, + "mukey": 1543362, + "ph1to1h2o_h": 10, + "ph1to1h2o_l": 7.8, + "ph1to1h2o_r": 9.7, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 5.4, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 45.6, + "total_frag_volume": 0, + "wfifteenbar_h": 28.7, + "wfifteenbar_l": 19.9, + "wfifteenbar_r": 27.9, + "wthirdbar_h": 34.2, + "wthirdbar_l": 29.4, + "wthirdbar_r": 33.7 + }, + { + "cec7_h": 26.5, + "cec7_l": 18.4, + "cec7_r": 21.2, + "chkey": 79721112, + "claytotal_h": 50, + "claytotal_l": 35, + "claytotal_r": 48, + "cokey": 26701952, + "dbovendry_h": 1.94, + "dbovendry_l": 1.76, + "dbovendry_r": 1.86, + "ec_h": 8, + "ec_l": 2, + "ec_r": 2.9, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 120, + "hzdept_r": 95, + "hzname": "Bkn4", + "lep_h": 9, + "lep_l": 6, + "lep_r": 7.5, + "mukey": 1543362, + "ph1to1h2o_h": 10, + "ph1to1h2o_l": 7.8, + "ph1to1h2o_r": 9.6, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 5.4, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 46.6, + "total_frag_volume": 0, + "wfifteenbar_h": 28.7, + "wfifteenbar_l": 19.9, + "wfifteenbar_r": 27.3, + "wthirdbar_h": 34.2, + "wthirdbar_l": 29.4, + "wthirdbar_r": 33.5 + }, + { + "cec7_h": 26.4, + "cec7_l": 18.3, + "cec7_r": 22.1, + "chkey": 79721119, + "claytotal_h": 50, + "claytotal_l": 35, + "claytotal_r": 39, + "cokey": 26701952, + "dbovendry_h": 1.94, + "dbovendry_l": 1.76, + "dbovendry_r": 1.86, + "ec_h": 8, + "ec_l": 2, + "ec_r": 2.9, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 155, + "hzdept_r": 120, + "hzname": "Bkn5", + "lep_h": 9, + "lep_l": 6, + "lep_r": 7.5, + "mukey": 1543362, + "ph1to1h2o_h": 9.5, + "ph1to1h2o_l": 7.8, + "ph1to1h2o_r": 9.4, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 30.3, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 30.7, + "total_frag_volume": 0, + "wfifteenbar_h": 32.4, + "wfifteenbar_l": 22.4, + "wfifteenbar_r": 25.2, + "wthirdbar_h": 39, + "wthirdbar_l": 34.3, + "wthirdbar_r": 35.7 + }, + { + "cec7_h": 31.6, + "cec7_l": 20.8, + "cec7_r": 26.2, + "chkey": 79721115, + "claytotal_h": 60, + "claytotal_l": 30, + "claytotal_r": 51, + "cokey": 26701952, + "dbovendry_h": 1.94, + "dbovendry_l": 1.76, + "dbovendry_r": 1.86, + "ec_h": 8, + "ec_l": 2, + "ec_r": 2.9, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 164, + "hzdept_r": 155, + "hzname": "Bkn6", + "lep_h": 9, + "lep_l": 6, + "lep_r": 7.5, + "mukey": 1543362, + "ph1to1h2o_h": 9.5, + "ph1to1h2o_l": 7.8, + "ph1to1h2o_r": 9.3, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 5.2, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 43.8, + "total_frag_volume": 0, + "wfifteenbar_h": 33.9, + "wfifteenbar_l": 16.8, + "wfifteenbar_r": 28.6, + "wthirdbar_h": 36.5, + "wthirdbar_l": 27.5, + "wthirdbar_r": 34.1 + }, + { + "cec7_h": 31.6, + "cec7_l": 20.8, + "cec7_r": 26.2, + "chkey": 79721113, + "claytotal_h": 60, + "claytotal_l": 30, + "claytotal_r": 56, + "cokey": 26701952, + "dbovendry_h": 1.94, + "dbovendry_l": 1.76, + "dbovendry_r": 1.86, + "ec_h": 8, + "ec_l": 2, + "ec_r": 2.4, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 250, + "hzdept_r": 164, + "hzname": "BC", + "lep_h": 9, + "lep_l": 6, + "lep_r": 7.5, + "mukey": 1543362, + "ph1to1h2o_h": 9.5, + "ph1to1h2o_l": 7.8, + "ph1to1h2o_r": 9.2, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 3, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 41, + "total_frag_volume": 0, + "wfifteenbar_h": 33.9, + "wfifteenbar_l": 16.8, + "wfifteenbar_r": 31.4, + "wthirdbar_h": 36.5, + "wthirdbar_l": 27.5, + "wthirdbar_r": 35.4 + } + ], + "spn": [ + { + "closest_pt_x": -122.084, + "closest_pt_y": 37.422, + "cokey": 26701950, + "compkind": "Series", + "compname": "hangerone", + "comppct_r": 25, + "dist_meters": 0, + "elev_r": 16, + "irrcapcl": 2, + "irrcapscl": "s", + "irrcapunit": 5, + "localphase": "drained", + "majcompflag": "Yes", + "mukey": 1543362, + "nirrcapcl": 3, + "nirrcapscl": "s", + "nirrcapunit": 5, + "slope_r": 1, + "taxorder": "Mollisols", + "taxsubgrp": "Cumulic Vertic Endoaquolls", + "which": "a" + }, + { + "closest_pt_x": -122.084, + "closest_pt_y": 37.422, + "cokey": 26701951, + "compkind": "Series", + "compname": "clear lake", + "comppct_r": 2, + "dist_meters": 0, + "elev_r": 16, + "irrcapcl": 2, + "irrcapscl": "s", + "irrcapunit": 5, + "localphase": null, + "majcompflag": "No ", + "mukey": 1543362, + "nirrcapcl": 3, + "nirrcapscl": "s", + "nirrcapunit": 5, + "slope_r": 1, + "taxorder": "Vertisols", + "taxsubgrp": "Xeric Endoaquerts", + "which": "a" + }, + { + "closest_pt_x": -122.084, + "closest_pt_y": 37.422, + "cokey": 26701953, + "compkind": "Taxadjunct", + "compname": "bayshore", + "comppct_r": 2, + "dist_meters": 0, + "elev_r": 16, + "irrcapcl": 1, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 1543362, + "nirrcapcl": 3, + "nirrcapscl": "s", + "nirrcapunit": null, + "slope_r": 1, + "taxorder": "Mollisols", + "taxsubgrp": "Typic Argiaquolls", + "which": "a" + }, + { + "closest_pt_x": -122.084, + "closest_pt_y": 37.422, + "cokey": 26701952, + "compkind": "Series", + "compname": "embarcadero", + "comppct_r": 1, + "dist_meters": 0, + "elev_r": 3, + "irrcapcl": 4, + "irrcapscl": "s", + "irrcapunit": 6, + "localphase": null, + "majcompflag": "No ", + "mukey": 1543362, + "nirrcapcl": 4, + "nirrcapscl": "s", + "nirrcapunit": 6, + "slope_r": 1, + "taxorder": "Mollisols", + "taxsubgrp": "Fluvaquentic Endoaquolls", + "which": "a" + }, + { + "closest_pt_x": -122.082637466711, + "closest_pt_y": 37.4224959225603, + "cokey": 26701930, + "compkind": "Series", + "compname": "hangerone", + "comppct_r": 90, + "dist_meters": 133, + "elev_r": 25, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "DRAINED", + "majcompflag": "Yes", + "mukey": 1882928, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": 1, + "taxorder": "Mollisols", + "taxsubgrp": "Cumulic Vertic Endoaquolls", + "which": "b" + }, + { + "closest_pt_x": -122.082637466711, + "closest_pt_y": 37.4224959225603, + "cokey": 26701928, + "compkind": "Series", + "compname": "clear lake", + "comppct_r": 6, + "dist_meters": 133, + "elev_r": 25, + "irrcapcl": 2, + "irrcapscl": "s", + "irrcapunit": 5, + "localphase": "DRAINED", + "majcompflag": "No ", + "mukey": 1882928, + "nirrcapcl": 3, + "nirrcapscl": "s", + "nirrcapunit": 5, + "slope_r": 1, + "taxorder": "Vertisols", + "taxsubgrp": "Xeric Endoaquerts", + "which": "b" + }, + { + "closest_pt_x": -122.082637466711, + "closest_pt_y": 37.4224959225603, + "cokey": 26701931, + "compkind": "Series", + "compname": "embarcadero", + "comppct_r": 2, + "dist_meters": 133, + "elev_r": 3, + "irrcapcl": 4, + "irrcapscl": "s", + "irrcapunit": 6, + "localphase": null, + "majcompflag": "No ", + "mukey": 1882928, + "nirrcapcl": 4, + "nirrcapscl": "s", + "nirrcapunit": 6, + "slope_r": 1, + "taxorder": "Mollisols", + "taxsubgrp": "Fluvaquentic Endoaquolls", + "which": "b" + }, + { + "closest_pt_x": -122.082637466711, + "closest_pt_y": 37.4224959225603, + "cokey": 26701929, + "compkind": "Taxadjunct", + "compname": "bayshore", + "comppct_r": 2, + "dist_meters": 133, + "elev_r": 25, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 1882928, + "nirrcapcl": 3, + "nirrcapscl": "s", + "nirrcapunit": 1, + "slope_r": 1, + "taxorder": "Mollisols", + "taxsubgrp": "Typic Argiaquolls", + "which": "b" + }, + { + "closest_pt_x": -122.08398728524836, + "closest_pt_y": 37.42334136118937, + "cokey": 26701975, + "compkind": "Taxon above family", + "compname": "xerorthents", + "comppct_r": 100, + "dist_meters": 149, + "elev_r": 1, + "irrcapcl": 4, + "irrcapscl": "e", + "irrcapunit": 9, + "localphase": "trash substrata", + "majcompflag": "Yes", + "mukey": 1602803, + "nirrcapcl": 4, + "nirrcapscl": "e", + "nirrcapunit": 9, + "slope_r": 22, + "taxorder": "Entisols", + "taxsubgrp": null, + "which": "b" + }, + { + "closest_pt_x": -122.0839684242397, + "closest_pt_y": 37.42845776243514, + "cokey": 26701978, + "compkind": "Family", + "compname": "aquic xerorthents", + "comppct_r": 95, + "dist_meters": 717, + "elev_r": 1, + "irrcapcl": 3, + "irrcapscl": "w", + "irrcapunit": 2, + "localphase": "bay mud substratum", + "majcompflag": "Yes", + "mukey": 1602806, + "nirrcapcl": 3, + "nirrcapscl": "w", + "nirrcapunit": 2, + "slope_r": 4, + "taxorder": "Entisols", + "taxsubgrp": "Aquic Xerorthents", + "which": "b" + }, + { + "closest_pt_x": -122.07615855519269, + "closest_pt_y": 37.425146616794265, + "cokey": 26701976, + "compkind": "Taxon above family", + "compname": "xerorthents", + "comppct_r": 100, + "dist_meters": 776, + "elev_r": 2, + "irrcapcl": 6, + "irrcapscl": "e", + "irrcapunit": 9, + "localphase": "trash substrata", + "majcompflag": "Yes", + "mukey": 1602804, + "nirrcapcl": 6, + "nirrcapscl": "e", + "nirrcapunit": 9, + "slope_r": 40, + "taxorder": "Entisols", + "taxsubgrp": null, + "which": "b" + } + ] + } +} diff --git a/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[37.48216451,-99.55016693].json b/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[37.48216451,-99.55016693].json new file mode 100644 index 0000000..6d64ec8 --- /dev/null +++ b/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[37.48216451,-99.55016693].json @@ -0,0 +1,3805 @@ +{ + "elev": { + "location": { + "spatialReference": { + "latestWkid": 4326, + "wkid": 4326 + }, + "x": -99.55016693, + "y": 37.48216451 + }, + "locationId": 0, + "rasterId": 59998, + "resolution": 1, + "value": "742.626464844" + }, + "soilweb": { + "ESD": [ + { + "cokey": 26356232, + "ecoclassid": "R073XY101KS", + "ecoclassname": "Limy Slopes", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/073X/R073XY101KS" + }, + { + "cokey": 26356233, + "ecoclassid": "R073XY100KS", + "ecoclassname": "Loamy Plains", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/073X/R073XY100KS" + }, + { + "cokey": 26356234, + "ecoclassid": "R073XY100KS", + "ecoclassname": "Loamy Plains", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/073X/R073XY100KS" + }, + { + "cokey": 26356377, + "ecoclassid": "R073XY100KS", + "ecoclassname": "Loamy Plains", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/073X/R073XY100KS" + }, + { + "cokey": 26356378, + "ecoclassid": "R073XY108KS", + "ecoclassname": "Loamy Floodplain", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/073X/R073XY108KS" + }, + { + "cokey": 26356379, + "ecoclassid": "R073XY101KS", + "ecoclassname": "Limy Slopes", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/073X/R073XY101KS" + }, + { + "cokey": 26356380, + "ecoclassid": "R079XY112KS", + "ecoclassname": "Limy Plains", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/079X/R079XY112KS" + }, + { + "cokey": 26356404, + "ecoclassid": "R073XY108KS", + "ecoclassname": "Loamy Floodplain", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/073X/R073XY108KS" + }, + { + "cokey": 26356405, + "ecoclassid": "R073XY112KS", + "ecoclassname": "Shallow Limy", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/073X/R073XY112KS" + }, + { + "cokey": 26356406, + "ecoclassid": "R073XY101KS", + "ecoclassname": "Limy Slopes", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/073X/R073XY101KS" + }, + { + "cokey": 26356407, + "ecoclassid": "R073XY100KS", + "ecoclassname": "Loamy Plains", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/073X/R073XY100KS" + }, + { + "cokey": 26356408, + "ecoclassid": "R073XY100KS", + "ecoclassname": "Loamy Plains", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/073X/R073XY100KS" + }, + { + "cokey": 26356435, + "ecoclassid": "R073XY101KS", + "ecoclassname": "Limy Slopes", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/073X/R073XY101KS" + }, + { + "cokey": 26356436, + "ecoclassid": "R073XY100KS", + "ecoclassname": "Loamy Plains", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/073X/R073XY100KS" + }, + { + "cokey": 26356437, + "ecoclassid": "R073XY103KS", + "ecoclassname": "Subirrigated", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/073X/R073XY103KS" + } + ], + "OSD_morph": [ + { + "bottom": 30, + "cf_class": null, + "cielab_a": 3.65979819919923, + "cielab_b": 13.2199440544513, + "cielab_l": 40.9141543373182, + "hzname": "A", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "bridgeport", + "srgb_b": 0.294406483459129, + "srgb_g": 0.367561696190658, + "srgb_r": 0.432479607618406, + "texture_class": "silt loam", + "top": 0 + }, + { + "bottom": 56, + "cf_class": null, + "cielab_a": 3.22690261250264, + "cielab_b": 12.65785928239, + "cielab_l": 51.3902579549971, + "hzname": "AC", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "bridgeport", + "srgb_b": 0.396431450662527, + "srgb_g": 0.470047004516309, + "srgb_r": 0.534105039939954, + "texture_class": "silt loam", + "top": 30 + }, + { + "bottom": 152, + "cf_class": null, + "cielab_a": 2.89064271156414, + "cielab_b": 13.064616880291, + "cielab_l": 61.5701956263403, + "hzname": "C", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "bridgeport", + "srgb_b": 0.493496194704249, + "srgb_g": 0.573230189582846, + "srgb_r": 0.638561136802744, + "texture_class": "sandy loam", + "top": 56 + }, + { + "bottom": 10, + "cf_class": null, + "cielab_a": 3.22690261250264, + "cielab_b": 12.65785928239, + "cielab_l": 51.3902579549971, + "hzname": "A1", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "canlon", + "srgb_b": 0.396431450662527, + "srgb_g": 0.470047004516309, + "srgb_r": 0.534105039939954, + "texture_class": "loam", + "top": 0 + }, + { + "bottom": 20, + "cf_class": null, + "cielab_a": 2.89064271156414, + "cielab_b": 13.064616880291, + "cielab_l": 61.5701956263403, + "hzname": "AC", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "canlon", + "srgb_b": 0.493496194704249, + "srgb_g": 0.573230189582846, + "srgb_r": 0.638561136802744, + "texture_class": "loam", + "top": 10 + }, + { + "bottom": 33, + "cf_class": null, + "cielab_a": 2.07036613546147, + "cielab_b": 13.480465071941, + "cielab_l": 81.3291807011949, + "hzname": "C", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 8, + "series": "canlon", + "srgb_b": 0.694393524433754, + "srgb_g": 0.783723585369036, + "srgb_r": 0.847672409409098, + "texture_class": "loam", + "top": 20 + }, + { + "bottom": 48, + "cf_class": null, + "cielab_a": null, + "cielab_b": null, + "cielab_l": null, + "hzname": "R", + "matrix_dry_color_chroma": null, + "matrix_dry_color_hue": null, + "matrix_dry_color_value": null, + "series": "canlon", + "srgb_b": null, + "srgb_g": null, + "srgb_r": null, + "texture_class": null, + "top": 33 + }, + { + "bottom": 15, + "cf_class": null, + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "Ap", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "case", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "clay loam", + "top": 0 + }, + { + "bottom": 51, + "cf_class": null, + "cielab_a": 3.8855918773385, + "cielab_b": 19.5237210898253, + "cielab_l": 71.5528118511221, + "hzname": "Bk1", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 7, + "series": "case", + "srgb_b": 0.549113835485318, + "srgb_g": 0.673315953150733, + "srgb_r": 0.766909809664938, + "texture_class": "clay loam", + "top": 15 + }, + { + "bottom": 89, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "Bk2", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "case", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "clay loam", + "top": 51 + }, + { + "bottom": 152, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "C", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "case", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "clay loam", + "top": 89 + }, + { + "bottom": 10, + "cf_class": null, + "cielab_a": 3.86763232791851, + "cielab_b": 12.0707341532888, + "cielab_l": 30.2538633743581, + "hzname": "A", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 3, + "series": "coly", + "srgb_b": 0.20664306477238, + "srgb_g": 0.268954612150501, + "srgb_r": 0.328393328197016, + "texture_class": "silt loam", + "top": 0 + }, + { + "bottom": 20, + "cf_class": null, + "cielab_a": 3.65979819919923, + "cielab_b": 13.2199440544513, + "cielab_l": 40.9141543373182, + "hzname": "AC", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "coly", + "srgb_b": 0.294406483459129, + "srgb_g": 0.367561696190658, + "srgb_r": 0.432479607618406, + "texture_class": "silt loam", + "top": 10 + }, + { + "bottom": 37, + "cf_class": null, + "cielab_a": 3.22690261250264, + "cielab_b": 12.65785928239, + "cielab_l": 51.3902579549971, + "hzname": "C1", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "coly", + "srgb_b": 0.396431450662527, + "srgb_g": 0.470047004516309, + "srgb_r": 0.534105039939954, + "texture_class": "silt loam", + "top": 20 + }, + { + "bottom": 86, + "cf_class": null, + "cielab_a": 3.22690261250264, + "cielab_b": 12.65785928239, + "cielab_l": 51.3902579549971, + "hzname": "C2", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "coly", + "srgb_b": 0.396431450662527, + "srgb_g": 0.470047004516309, + "srgb_r": 0.534105039939954, + "texture_class": "silt loam", + "top": 37 + }, + { + "bottom": 121, + "cf_class": null, + "cielab_a": 4.85456052724254, + "cielab_b": 18.8945154624908, + "cielab_l": 51.4032284580631, + "hzname": "C3", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "coly", + "srgb_b": 0.354980541712737, + "srgb_g": 0.465230900713657, + "srgb_r": 0.556494226652486, + "texture_class": "silt loam", + "top": 86 + }, + { + "bottom": 153, + "cf_class": null, + "cielab_a": 4.85456052724254, + "cielab_b": 18.8945154624908, + "cielab_l": 51.4032284580631, + "hzname": "C4", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "coly", + "srgb_b": 0.354980541712737, + "srgb_g": 0.465230900713657, + "srgb_r": 0.556494226652486, + "texture_class": "silt loam", + "top": 121 + }, + { + "bottom": 23, + "cf_class": null, + "cielab_a": 3.65979819919923, + "cielab_b": 13.2199440544513, + "cielab_l": 40.9141543373182, + "hzname": "Ap", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "harney", + "srgb_b": 0.294406483459129, + "srgb_g": 0.367561696190658, + "srgb_r": 0.432479607618406, + "texture_class": "silt loam", + "top": 0 + }, + { + "bottom": 30, + "cf_class": null, + "cielab_a": 3.65979819919923, + "cielab_b": 13.2199440544513, + "cielab_l": 40.9141543373182, + "hzname": "AB", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "harney", + "srgb_b": 0.294406483459129, + "srgb_g": 0.367561696190658, + "srgb_r": 0.432479607618406, + "texture_class": "silt loam", + "top": 23 + }, + { + "bottom": 46, + "cf_class": null, + "cielab_a": 3.22690261250264, + "cielab_b": 12.65785928239, + "cielab_l": 51.3902579549971, + "hzname": "Bt1", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "harney", + "srgb_b": 0.396431450662527, + "srgb_g": 0.470047004516309, + "srgb_r": 0.534105039939954, + "texture_class": "silty clay loam", + "top": 30 + }, + { + "bottom": 71, + "cf_class": null, + "cielab_a": 3.22690261250264, + "cielab_b": 12.65785928239, + "cielab_l": 51.3902579549971, + "hzname": "Bt2", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "harney", + "srgb_b": 0.396431450662527, + "srgb_g": 0.470047004516309, + "srgb_r": 0.534105039939954, + "texture_class": "silty clay loam", + "top": 46 + }, + { + "bottom": 89, + "cf_class": null, + "cielab_a": 4.85456052724254, + "cielab_b": 18.8945154624908, + "cielab_l": 51.4032284580631, + "hzname": "BCk", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "harney", + "srgb_b": 0.354980541712737, + "srgb_g": 0.465230900713657, + "srgb_r": 0.556494226652486, + "texture_class": "silty clay loam", + "top": 71 + }, + { + "bottom": 119, + "cf_class": null, + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "Ck", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "harney", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "silt loam", + "top": 89 + }, + { + "bottom": 152, + "cf_class": null, + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "C", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "harney", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "silt loam", + "top": 119 + }, + { + "bottom": 15, + "cf_class": null, + "cielab_a": 3.65979819919923, + "cielab_b": 13.2199440544513, + "cielab_l": 40.9141543373182, + "hzname": "Ap", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "holdrege", + "srgb_b": 0.294406483459129, + "srgb_g": 0.367561696190658, + "srgb_r": 0.432479607618406, + "texture_class": "silt loam", + "top": 0 + }, + { + "bottom": 30, + "cf_class": null, + "cielab_a": 3.65979819919923, + "cielab_b": 13.2199440544513, + "cielab_l": 40.9141543373182, + "hzname": "A", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "holdrege", + "srgb_b": 0.294406483459129, + "srgb_g": 0.367561696190658, + "srgb_r": 0.432479607618406, + "texture_class": "silty clay loam", + "top": 15 + }, + { + "bottom": 38, + "cf_class": null, + "cielab_a": 3.65979819919923, + "cielab_b": 13.2199440544513, + "cielab_l": 40.9141543373182, + "hzname": "Bt1", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "holdrege", + "srgb_b": 0.294406483459129, + "srgb_g": 0.367561696190658, + "srgb_r": 0.432479607618406, + "texture_class": "silty clay loam", + "top": 30 + }, + { + "bottom": 61, + "cf_class": null, + "cielab_a": 3.22690261250264, + "cielab_b": 12.65785928239, + "cielab_l": 51.3902579549971, + "hzname": "Bt2", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "holdrege", + "srgb_b": 0.396431450662527, + "srgb_g": 0.470047004516309, + "srgb_r": 0.534105039939954, + "texture_class": "silty clay loam", + "top": 38 + }, + { + "bottom": 76, + "cf_class": null, + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "BC", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "holdrege", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "silt loam", + "top": 61 + }, + { + "bottom": 203, + "cf_class": null, + "cielab_a": 5.28169511492699, + "cielab_b": 25.8417685709422, + "cielab_l": 71.5656562524201, + "hzname": "C", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 7, + "series": "holdrege", + "srgb_b": 0.504075369797917, + "srgb_g": 0.66878318014695, + "srgb_r": 0.788974560813402, + "texture_class": "silt loam", + "top": 76 + }, + { + "bottom": 23, + "cf_class": null, + "cielab_a": 3.22690261250264, + "cielab_b": 12.65785928239, + "cielab_l": 51.3902579549971, + "hzname": "A1", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "penden", + "srgb_b": 0.396431450662527, + "srgb_g": 0.470047004516309, + "srgb_r": 0.534105039939954, + "texture_class": "clay loam", + "top": 0 + }, + { + "bottom": 38, + "cf_class": null, + "cielab_a": 3.22690261250264, + "cielab_b": 12.65785928239, + "cielab_l": 51.3902579549971, + "hzname": "A2", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "penden", + "srgb_b": 0.396431450662527, + "srgb_g": 0.470047004516309, + "srgb_r": 0.534105039939954, + "texture_class": "coarse sand", + "top": 23 + }, + { + "bottom": 86, + "cf_class": null, + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "Bk", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "penden", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "clay loam", + "top": 38 + }, + { + "bottom": 152, + "cf_class": null, + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "C", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "penden", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "clay loam", + "top": 86 + }, + { + "bottom": 51, + "cf_class": null, + "cielab_a": 3.65979819919923, + "cielab_b": 13.2199440544513, + "cielab_l": 40.9141543373182, + "hzname": "A1", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "tobin", + "srgb_b": 0.294406483459129, + "srgb_g": 0.367561696190658, + "srgb_r": 0.432479607618406, + "texture_class": "silt loam", + "top": 0 + }, + { + "bottom": 81, + "cf_class": null, + "cielab_a": 3.65979819919923, + "cielab_b": 13.2199440544513, + "cielab_l": 40.9141543373182, + "hzname": "A2", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "tobin", + "srgb_b": 0.294406483459129, + "srgb_g": 0.367561696190658, + "srgb_r": 0.432479607618406, + "texture_class": "silt loam", + "top": 51 + }, + { + "bottom": 152, + "cf_class": null, + "cielab_a": 3.22690261250264, + "cielab_b": 12.65785928239, + "cielab_l": 51.3902579549971, + "hzname": "C", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "tobin", + "srgb_b": 0.396431450662527, + "srgb_g": 0.470047004516309, + "srgb_r": 0.534105039939954, + "texture_class": "silty clay loam", + "top": 81 + }, + { + "bottom": 25, + "cf_class": null, + "cielab_a": 3.65979819919923, + "cielab_b": 13.2199440544513, + "cielab_l": 40.9141543373182, + "hzname": "A", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "uly", + "srgb_b": 0.294406483459129, + "srgb_g": 0.367561696190658, + "srgb_r": 0.432479607618406, + "texture_class": "silt loam", + "top": 0 + }, + { + "bottom": 38, + "cf_class": null, + "cielab_a": 3.22690261250264, + "cielab_b": 12.65785928239, + "cielab_l": 51.3902579549971, + "hzname": "BA", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "uly", + "srgb_b": 0.396431450662527, + "srgb_g": 0.470047004516309, + "srgb_r": 0.534105039939954, + "texture_class": "silt loam", + "top": 25 + }, + { + "bottom": 53, + "cf_class": null, + "cielab_a": 2.89064271156414, + "cielab_b": 13.064616880291, + "cielab_l": 61.5701956263403, + "hzname": "Bw", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "uly", + "srgb_b": 0.493496194704249, + "srgb_g": 0.573230189582846, + "srgb_r": 0.638561136802744, + "texture_class": "silt loam", + "top": 38 + }, + { + "bottom": 64, + "cf_class": null, + "cielab_a": 2.50542437533247, + "cielab_b": 13.2158439165934, + "cielab_l": 71.5385868490813, + "hzname": "BC", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 7, + "series": "uly", + "srgb_b": 0.593723155494692, + "srgb_g": 0.677858469484996, + "srgb_r": 0.74282064303885, + "texture_class": "silt loam", + "top": 53 + }, + { + "bottom": 203, + "cf_class": null, + "cielab_a": 2.07036613546147, + "cielab_b": 13.480465071941, + "cielab_l": 81.3291807011949, + "hzname": "C", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 8, + "series": "uly", + "srgb_b": 0.694393524433754, + "srgb_g": 0.783723585369036, + "srgb_r": 0.847672409409098, + "texture_class": "silt loam", + "top": 64 + }, + { + "bottom": 30, + "cf_class": null, + "cielab_a": 2.22631909703591, + "cielab_b": 6.22623819927245, + "cielab_l": 30.2411403125398, + "hzname": "A", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 3, + "series": "wakeen", + "srgb_b": 0.24183809974853, + "srgb_g": 0.273363635444249, + "srgb_r": 0.30796985092764, + "texture_class": "silty clay loam", + "top": 0 + }, + { + "bottom": 58, + "cf_class": null, + "cielab_a": 3.22690261250264, + "cielab_b": 12.65785928239, + "cielab_l": 51.3902579549971, + "hzname": "Bw", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "wakeen", + "srgb_b": 0.396431450662527, + "srgb_g": 0.470047004516309, + "srgb_r": 0.534105039939954, + "texture_class": "silty clay loam", + "top": 30 + }, + { + "bottom": 91, + "cf_class": null, + "cielab_a": 3.26960128448811, + "cielab_b": 19.7434065294437, + "cielab_l": 81.3437456089251, + "hzname": "BC", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 8, + "series": "wakeen", + "srgb_b": 0.648937163870167, + "srgb_g": 0.779512783101728, + "srgb_r": 0.871689449401639, + "texture_class": "silty clay loam", + "top": 58 + }, + { + "bottom": 106, + "cf_class": null, + "cielab_a": 2.07036613546147, + "cielab_b": 13.480465071941, + "cielab_l": 81.3291807011949, + "hzname": "Cr", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 8, + "series": "wakeen", + "srgb_b": 0.694393524433754, + "srgb_g": 0.783723585369036, + "srgb_r": 0.847672409409098, + "texture_class": null, + "top": 91 + } + ], + "OSD_narrative": [ + { + "brief_narrative": "The Bridgeport series consists of deep, well drained, moderately permeable soils that formed in calcareous alluvial sediments. These soils are on flood plains or low stream terraces.", + "series": "bridgeport" + }, + { + "brief_narrative": "The Canlon series consist of shallow, well drained and somewhat excessively drained, moderately permeable soils on uplands. They formed in residuum weathered from lime-cemented sandstone or caliche and have slopes ranging from 2 to 50 percent. The average annual precipitation is about 24 inches, and the mean annual temperature is about 54 degrees F.", + "series": "canlon" + }, + { + "brief_narrative": "The Case series consists of very deep, well drained, moderately permeable soils formed in calcareous old alluvium of Tertiary age on uplands of the Southern High Plains Breaks (MLRA-77E). Slopes range from 1 to 15 percent. Mean annual temperature is about 58 degrees F, and mean annual precipitation is about 24 inches.", + "series": "case" + }, + { + "brief_narrative": "The Coly series consists of very deep, well drained, moderately permeable soils formed in loess. Coly soils are on sideslopes of uplands in MLRA 73-Rolling Plains and Breaks. Slopes range from 1 to 60 percent. Mean annual temperature is 10 degrees C ( 50 degrees F), and mean annual precipitation is 53 centimeters ( 21 inches) at the type location.", + "series": "coly" + }, + { + "brief_narrative": "The Harney series consists of deep, well drained, moderately slowly permeable soils that formed in loess. These soils are on uplands on slopes that range from 0 to 8 percent.", + "series": "harney" + }, + { + "brief_narrative": "The Holdrege series consists of very deep, well drained, moderately permeable soils formed in calcareous loess. These upland soils have slopes ranging from 0 to 15 percent. Mean annual temperature is about 54 degrees F, and mean annual precipitation is about 23 inches at the type location.", + "series": "holdrege" + }, + { + "brief_narrative": "The Penden series consists of deep, well drained soils formed in calcareous loamy sediments on uplands. Slope ranges from 0 to 15 percent. Mean annual temperature is 13 degrees C. (56 degrees F.), and mean annual precipitation is 48 centimeters (19 inches).", + "series": "penden" + }, + { + "brief_narrative": "The Tobin series consists of very deep, well drained soils that formed in silty alluvium. Tobin soils are on flood plains on river valleys in MLRA 73, Rolling Plains and Breaks. Slopes range from 0 to 2 percent. Mean annual precipitation is about 740 millimeters (29 inches) and the mean annual temperature is about 12 degrees C (54 degrees F).", + "series": "tobin" + }, + { + "brief_narrative": "The Uly series includes very deep, well drained formed in loess on uplands. Slopes range from 0 to 30 percent. Mean annual temperature is 10 degrees C. (50 degrees F), and mean annual precipitation is 53 centimeters (21 inches) at the type location.", + "series": "uly" + }, + { + "brief_narrative": "The Wakeen series consists of well drained soils that are moderately deep over chalky limestone. These soils are on plains, knolls and ridgetops in the Rolling Plains and Breaks (MLRA 73). Slopes range from 1 to 20 percent. Mean annual temperature is about 12 degrees C. (54 degrees F.), and mean annual precipitation is about 58 centimeters (23 inches).", + "series": "wakeen" + } + ], + "hz": [ + { + "cec7_h": 22.2, + "cec7_l": 17.3, + "cec7_r": 19.8, + "chkey": 78614560, + "claytotal_h": 27, + "claytotal_l": 21, + "claytotal_r": 24, + "cokey": 26356436, + "dbovendry_h": 1.6, + "dbovendry_l": 1.53, + "dbovendry_r": 1.57, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 15, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 3.5, + "lep_l": 2.4, + "lep_r": 2.9, + "mukey": 2605949, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.7, + "sandtotal_h": 11, + "sandtotal_l": 5, + "sandtotal_r": 9, + "silttotal_h": 73, + "silttotal_l": 62, + "silttotal_r": 67, + "total_frag_volume": 0, + "wfifteenbar_h": 19.4, + "wfifteenbar_l": 13.4, + "wfifteenbar_r": 16.4, + "wthirdbar_h": 32.6, + "wthirdbar_l": 28.6, + "wthirdbar_r": 30.7 + }, + { + "cec7_h": 23.7, + "cec7_l": 19.4, + "cec7_r": 21.2, + "chkey": 78614561, + "claytotal_h": 29, + "claytotal_l": 24, + "claytotal_r": 26, + "cokey": 26356436, + "dbovendry_h": 1.47, + "dbovendry_l": 1.38, + "dbovendry_r": 1.44, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 23, + "hzdept_r": 15, + "hzname": "A", + "lep_h": 3.9, + "lep_l": 2.9, + "lep_r": 3.3, + "mukey": 2605949, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.7, + "sandtotal_h": 11, + "sandtotal_l": 4, + "sandtotal_r": 7, + "silttotal_h": 72, + "silttotal_l": 61, + "silttotal_r": 67, + "total_frag_volume": 0, + "wfifteenbar_h": 18.7, + "wfifteenbar_l": 13.8, + "wfifteenbar_r": 16, + "wthirdbar_h": 32.1, + "wthirdbar_l": 28.9, + "wthirdbar_r": 30.4 + }, + { + "cec7_h": 30.8, + "cec7_l": 22.8, + "cec7_r": 26.8, + "chkey": 78614564, + "claytotal_h": 40, + "claytotal_l": 29, + "claytotal_r": 35, + "cokey": 26356436, + "dbovendry_h": 1.71, + "dbovendry_l": 1.62, + "dbovendry_r": 1.64, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 33, + "hzdept_r": 23, + "hzname": "Bt1", + "lep_h": 7.4, + "lep_l": 3.8, + "lep_r": 6, + "mukey": 2605949, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 7.2, + "sandtotal_h": 7, + "sandtotal_l": 2, + "sandtotal_r": 5, + "silttotal_h": 68, + "silttotal_l": 53, + "silttotal_r": 60, + "total_frag_volume": 0, + "wfifteenbar_h": 24.8, + "wfifteenbar_l": 17.5, + "wfifteenbar_r": 20.8, + "wthirdbar_h": 35.5, + "wthirdbar_l": 31.4, + "wthirdbar_r": 33.4 + }, + { + "cec7_h": 32.8, + "cec7_l": 26.2, + "cec7_r": 29.2, + "chkey": 78614563, + "claytotal_h": 43, + "claytotal_l": 35, + "claytotal_r": 39, + "cokey": 26356436, + "dbovendry_h": 1.75, + "dbovendry_l": 1.69, + "dbovendry_r": 1.69, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 66, + "hzdept_r": 33, + "hzname": "Bt2", + "lep_h": 8.2, + "lep_l": 5.9, + "lep_r": 7, + "mukey": 2605949, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 7.3, + "sandtotal_h": 6, + "sandtotal_l": 2, + "sandtotal_r": 5, + "silttotal_h": 62, + "silttotal_l": 51, + "silttotal_r": 56, + "total_frag_volume": 0, + "wfifteenbar_h": 26.4, + "wfifteenbar_l": 20.2, + "wfifteenbar_r": 22.7, + "wthirdbar_h": 36.3, + "wthirdbar_l": 33, + "wthirdbar_r": 34.4 + }, + { + "cec7_h": 26.8, + "cec7_l": 18.5, + "cec7_r": 23, + "chkey": 78614565, + "claytotal_h": 35, + "claytotal_l": 24, + "claytotal_r": 30, + "cokey": 26356436, + "dbovendry_h": 1.69, + "dbovendry_l": 1.57, + "dbovendry_r": 1.6, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 92, + "hzdept_r": 66, + "hzname": "Bk", + "lep_h": 6, + "lep_l": 2.8, + "lep_r": 4, + "mukey": 2605949, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.9, + "sandtotal_h": 8, + "sandtotal_l": 4, + "sandtotal_r": 6, + "silttotal_h": 71, + "silttotal_l": 57, + "silttotal_r": 64, + "total_frag_volume": 0, + "wfifteenbar_h": 21.1, + "wfifteenbar_l": 14, + "wfifteenbar_r": 17.7, + "wthirdbar_h": 33.6, + "wthirdbar_l": 29, + "wthirdbar_r": 31.5 + }, + { + "cec7_h": 22.3, + "cec7_l": 15.1, + "cec7_r": 19.6, + "chkey": 78614562, + "claytotal_h": 29, + "claytotal_l": 21, + "claytotal_r": 25, + "cokey": 26356436, + "dbovendry_h": 1.59, + "dbovendry_l": 1.53, + "dbovendry_r": 1.55, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 92, + "hzname": "C", + "lep_h": 3.8, + "lep_l": 2.1, + "lep_r": 3, + "mukey": 2605949, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.9, + "sandtotal_h": 10, + "sandtotal_l": 5, + "sandtotal_r": 6, + "silttotal_h": 74, + "silttotal_l": 61, + "silttotal_r": 69, + "total_frag_volume": 0, + "wfifteenbar_h": 17.1, + "wfifteenbar_l": 11.9, + "wfifteenbar_r": 14.8, + "wthirdbar_h": 31.2, + "wthirdbar_l": 27.4, + "wthirdbar_r": 29.6 + }, + { + "cec7_h": 21.2, + "cec7_l": 14.3, + "cec7_r": 18.6, + "chkey": 78614130, + "claytotal_h": 25, + "claytotal_l": 17, + "claytotal_r": 22, + "cokey": 26356233, + "dbovendry_h": 1.69, + "dbovendry_l": 1.48, + "dbovendry_r": 1.54, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.7, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 18, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 5.9, + "lep_l": 0, + "lep_r": 2.8, + "mukey": 2669027, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 6.6, + "sandtotal_h": 22, + "sandtotal_l": 8, + "sandtotal_r": 14, + "silttotal_h": 75, + "silttotal_l": 53, + "silttotal_r": 64, + "total_frag_volume": 0, + "wfifteenbar_h": 18, + "wfifteenbar_l": 11, + "wfifteenbar_r": 15.1, + "wthirdbar_h": 31.7, + "wthirdbar_l": 26.6, + "wthirdbar_r": 29.8 + }, + { + "cec7_h": 21.2, + "cec7_l": 14.3, + "cec7_r": 20.8, + "chkey": 78614127, + "claytotal_h": 27, + "claytotal_l": 17, + "claytotal_r": 26, + "cokey": 26356233, + "dbovendry_h": 1.62, + "dbovendry_l": 1.44, + "dbovendry_r": 1.5, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.4, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 31, + "hzdept_r": 18, + "hzname": "A", + "lep_h": 5.9, + "lep_l": 0, + "lep_r": 3.3, + "mukey": 2669027, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 7, + "sandtotal_h": 20, + "sandtotal_l": 7, + "sandtotal_r": 12, + "silttotal_h": 76, + "silttotal_l": 53, + "silttotal_r": 62, + "total_frag_volume": 0, + "wfifteenbar_h": 18.3, + "wfifteenbar_l": 10.4, + "wfifteenbar_r": 16.6, + "wthirdbar_h": 31.9, + "wthirdbar_l": 26.1, + "wthirdbar_r": 30.8 + }, + { + "cec7_h": 18.7, + "cec7_l": 14.7, + "cec7_r": 16.4, + "chkey": 78614128, + "claytotal_h": 30, + "claytotal_l": 18, + "claytotal_r": 24, + "cokey": 26356233, + "dbovendry_h": 1.66, + "dbovendry_l": 1.44, + "dbovendry_r": 1.5, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.3, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 54, + "hzdept_r": 31, + "hzname": "Bk", + "lep_h": 5.9, + "lep_l": 0, + "lep_r": 2.4, + "mukey": 2669027, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 8.2, + "sandtotal_h": 25, + "sandtotal_l": 7, + "sandtotal_r": 13, + "silttotal_h": 75, + "silttotal_l": 45, + "silttotal_r": 63, + "total_frag_volume": 0, + "wfifteenbar_h": 17.9, + "wfifteenbar_l": 10.7, + "wfifteenbar_r": 14.3, + "wthirdbar_h": 31.7, + "wthirdbar_l": 26.4, + "wthirdbar_r": 29.3 + }, + { + "cec7_h": 14.1, + "cec7_l": 12, + "cec7_r": 12.5, + "chkey": 78614129, + "claytotal_h": 27, + "claytotal_l": 15, + "claytotal_r": 18, + "cokey": 26356233, + "dbovendry_h": 1.64, + "dbovendry_l": 1.42, + "dbovendry_r": 1.44, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.3, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 54, + "hzname": "C", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 2669027, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 8.3, + "sandtotal_h": 25, + "sandtotal_l": 9, + "sandtotal_r": 14, + "silttotal_h": 76, + "silttotal_l": 48, + "silttotal_r": 68, + "total_frag_volume": 0, + "wfifteenbar_h": 15.6, + "wfifteenbar_l": 8.5, + "wfifteenbar_r": 10.6, + "wthirdbar_h": 30.2, + "wthirdbar_l": 24.4, + "wthirdbar_r": 26.3 + }, + { + "cec7_h": 20.4, + "cec7_l": 14.3, + "cec7_r": 18.6, + "chkey": 78614941, + "claytotal_h": 25, + "claytotal_l": 17, + "claytotal_r": 22, + "cokey": 26356406, + "dbovendry_h": 1.53, + "dbovendry_l": 1.46, + "dbovendry_r": 1.5, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.7, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 13, + "hzdept_r": 0, + "hzname": "A", + "lep_h": 3.5, + "lep_l": 1.7, + "lep_r": 2.8, + "mukey": 1380504, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 7.9, + "sandtotal_h": 22, + "sandtotal_l": 8, + "sandtotal_r": 14, + "silttotal_h": 75, + "silttotal_l": 53, + "silttotal_r": 64, + "total_frag_volume": 0, + "wfifteenbar_h": 17.5, + "wfifteenbar_l": 10.7, + "wfifteenbar_r": 14.7, + "wthirdbar_h": 31.4, + "wthirdbar_l": 26.4, + "wthirdbar_r": 29.5 + }, + { + "cec7_h": 18.7, + "cec7_l": 14.7, + "cec7_r": 16.4, + "chkey": 78614942, + "claytotal_h": 30, + "claytotal_l": 18, + "claytotal_r": 24, + "cokey": 26356406, + "dbovendry_h": 1.59, + "dbovendry_l": 1.45, + "dbovendry_r": 1.52, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.3, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 30, + "hzdept_r": 13, + "hzname": "AC", + "lep_h": 3.9, + "lep_l": 1.4, + "lep_r": 2.3, + "mukey": 1380504, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 8.2, + "sandtotal_h": 25, + "sandtotal_l": 7, + "sandtotal_r": 13, + "silttotal_h": 75, + "silttotal_l": 45, + "silttotal_r": 63, + "total_frag_volume": 0, + "wfifteenbar_h": 18.2, + "wfifteenbar_l": 10.9, + "wfifteenbar_r": 14.5, + "wthirdbar_h": 31.8, + "wthirdbar_l": 26.6, + "wthirdbar_r": 29.4 + }, + { + "cec7_h": 16.2, + "cec7_l": 12, + "cec7_r": 14.1, + "chkey": 78614943, + "claytotal_h": 27, + "claytotal_l": 15, + "claytotal_r": 23, + "cokey": 26356406, + "dbovendry_h": 1.52, + "dbovendry_l": 1.44, + "dbovendry_r": 1.46, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.3, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 30, + "hzname": "C", + "lep_h": 3.2, + "lep_l": 0.9, + "lep_r": 2, + "mukey": 1380504, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 8.3, + "sandtotal_h": 25, + "sandtotal_l": 9, + "sandtotal_r": 14, + "silttotal_h": 76, + "silttotal_l": 48, + "silttotal_r": 63, + "total_frag_volume": 0, + "wfifteenbar_h": 15.6, + "wfifteenbar_l": 8.5, + "wfifteenbar_r": 13.3, + "wthirdbar_h": 30.2, + "wthirdbar_l": 24.4, + "wthirdbar_r": 28.5 + }, + { + "cec7_h": 22.7, + "cec7_l": 14.3, + "cec7_r": 20.1, + "chkey": 78614875, + "claytotal_h": 27, + "claytotal_l": 17, + "claytotal_r": 24, + "cokey": 26356377, + "dbovendry_h": 1.64, + "dbovendry_l": 1.58, + "dbovendry_r": 1.61, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.3, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 12, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 4, + "lep_l": 1.8, + "lep_r": 3.3, + "mukey": 1380503, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.8, + "sandtotal_h": 13, + "sandtotal_l": 7, + "sandtotal_r": 10, + "silttotal_h": 72, + "silttotal_l": 60, + "silttotal_r": 66, + "total_frag_volume": 0, + "wfifteenbar_h": 19.7, + "wfifteenbar_l": 11.3, + "wfifteenbar_r": 16.7, + "wthirdbar_h": 32.7, + "wthirdbar_l": 26.9, + "wthirdbar_r": 30.9 + }, + { + "cec7_h": 27.8, + "cec7_l": 22.2, + "cec7_r": 26.2, + "chkey": 78614876, + "claytotal_h": 35, + "claytotal_l": 28, + "claytotal_r": 33, + "cokey": 26356377, + "dbovendry_h": 1.67, + "dbovendry_l": 1.59, + "dbovendry_r": 1.65, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.3, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 24, + "hzdept_r": 12, + "hzname": "Bt1", + "lep_h": 5.8, + "lep_l": 4.1, + "lep_r": 5.3, + "mukey": 1380503, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.1, + "sandtotal_h": 11, + "sandtotal_l": 5, + "sandtotal_r": 8, + "silttotal_h": 66, + "silttotal_l": 54, + "silttotal_r": 59, + "total_frag_volume": 0, + "wfifteenbar_h": 21.3, + "wfifteenbar_l": 16.7, + "wfifteenbar_r": 20, + "wthirdbar_h": 33.7, + "wthirdbar_l": 30.9, + "wthirdbar_r": 32.9 + }, + { + "cec7_h": 27.4, + "cec7_l": 21.9, + "cec7_r": 23, + "chkey": 78614877, + "claytotal_h": 35, + "claytotal_l": 28, + "claytotal_r": 29, + "cokey": 26356377, + "dbovendry_h": 1.75, + "dbovendry_l": 1.66, + "dbovendry_r": 1.68, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.3, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 50, + "hzdept_r": 24, + "hzname": "Bt2", + "lep_h": 5.7, + "lep_l": 4.1, + "lep_r": 4.3, + "mukey": 1380503, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.4, + "sandtotal_h": 13, + "sandtotal_l": 6, + "sandtotal_r": 9, + "silttotal_h": 66, + "silttotal_l": 55, + "silttotal_r": 62, + "total_frag_volume": 0, + "wfifteenbar_h": 21.9, + "wfifteenbar_l": 17.2, + "wfifteenbar_r": 18.2, + "wthirdbar_h": 34, + "wthirdbar_l": 31.2, + "wthirdbar_r": 31.9 + }, + { + "cec7_h": 22.2, + "cec7_l": 14.7, + "cec7_r": 18.4, + "chkey": 78614878, + "claytotal_h": 30, + "claytotal_l": 18, + "claytotal_r": 24, + "cokey": 26356377, + "dbovendry_h": 1.62, + "dbovendry_l": 1.53, + "dbovendry_r": 1.55, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.4, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 70, + "hzdept_r": 50, + "hzname": "BC", + "lep_h": 4.4, + "lep_l": 1.8, + "lep_r": 2.9, + "mukey": 1380503, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 8.1, + "sandtotal_h": 13, + "sandtotal_l": 7, + "sandtotal_r": 12, + "silttotal_h": 73, + "silttotal_l": 57, + "silttotal_r": 64, + "total_frag_volume": 0, + "wfifteenbar_h": 17.9, + "wfifteenbar_l": 10.9, + "wfifteenbar_r": 14.4, + "wthirdbar_h": 31.7, + "wthirdbar_l": 26.6, + "wthirdbar_r": 29.3 + }, + { + "cec7_h": 14.7, + "cec7_l": 10.9, + "cec7_r": 13.7, + "chkey": 78614879, + "claytotal_h": 20, + "claytotal_l": 15, + "claytotal_r": 18, + "cokey": 26356377, + "dbovendry_h": 1.44, + "dbovendry_l": 1.41, + "dbovendry_r": 1.43, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.7, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 70, + "hzname": "C", + "lep_h": 2, + "lep_l": 1.3, + "lep_r": 1.8, + "mukey": 1380503, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 8.2, + "sandtotal_h": 17, + "sandtotal_l": 9, + "sandtotal_r": 13, + "silttotal_h": 76, + "silttotal_l": 63, + "silttotal_r": 69, + "total_frag_volume": 0, + "wfifteenbar_h": 11.5, + "wfifteenbar_l": 8.2, + "wfifteenbar_r": 10.2, + "wthirdbar_h": 27.1, + "wthirdbar_l": 24, + "wthirdbar_r": 25.9 + }, + { + "cec7_h": 20.4, + "cec7_l": 14.3, + "cec7_r": 18.6, + "chkey": 78614872, + "claytotal_h": 25, + "claytotal_l": 17, + "claytotal_r": 22, + "cokey": 26356379, + "dbovendry_h": 1.57, + "dbovendry_l": 1.48, + "dbovendry_r": 1.54, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.7, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 12, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 3.5, + "lep_l": 1.7, + "lep_r": 2.8, + "mukey": 1380503, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 7.9, + "sandtotal_h": 22, + "sandtotal_l": 8, + "sandtotal_r": 14, + "silttotal_h": 75, + "silttotal_l": 53, + "silttotal_r": 64, + "total_frag_volume": 0, + "wfifteenbar_h": 18, + "wfifteenbar_l": 11, + "wfifteenbar_r": 15.1, + "wthirdbar_h": 31.7, + "wthirdbar_l": 26.6, + "wthirdbar_r": 29.8 + }, + { + "cec7_h": 18.7, + "cec7_l": 14.7, + "cec7_r": 16.4, + "chkey": 78614873, + "claytotal_h": 30, + "claytotal_l": 18, + "claytotal_r": 24, + "cokey": 26356379, + "dbovendry_h": 1.59, + "dbovendry_l": 1.45, + "dbovendry_r": 1.52, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.3, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 25, + "hzdept_r": 12, + "hzname": "AC", + "lep_h": 3.9, + "lep_l": 1.4, + "lep_r": 2.3, + "mukey": 1380503, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 8.2, + "sandtotal_h": 25, + "sandtotal_l": 7, + "sandtotal_r": 13, + "silttotal_h": 75, + "silttotal_l": 45, + "silttotal_r": 63, + "total_frag_volume": 0, + "wfifteenbar_h": 18.2, + "wfifteenbar_l": 10.9, + "wfifteenbar_r": 14.5, + "wthirdbar_h": 31.8, + "wthirdbar_l": 26.6, + "wthirdbar_r": 29.4 + }, + { + "cec7_h": 14.1, + "cec7_l": 12, + "cec7_r": 12.5, + "chkey": 78614874, + "claytotal_h": 27, + "claytotal_l": 15, + "claytotal_r": 18, + "cokey": 26356379, + "dbovendry_h": 1.5, + "dbovendry_l": 1.42, + "dbovendry_r": 1.44, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.3, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 25, + "hzname": "C", + "lep_h": 2.9, + "lep_l": 0.9, + "lep_r": 1.5, + "mukey": 1380503, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 8.3, + "sandtotal_h": 25, + "sandtotal_l": 9, + "sandtotal_r": 14, + "silttotal_h": 76, + "silttotal_l": 48, + "silttotal_r": 68, + "total_frag_volume": 0, + "wfifteenbar_h": 15.6, + "wfifteenbar_l": 8.5, + "wfifteenbar_r": 10.6, + "wthirdbar_h": 30.2, + "wthirdbar_l": 24.4, + "wthirdbar_r": 26.3 + }, + { + "cec7_h": 22.2, + "cec7_l": 15.5, + "cec7_r": 18.9, + "chkey": 78614944, + "claytotal_h": 26, + "claytotal_l": 18, + "claytotal_r": 22, + "cokey": 26356404, + "dbovendry_h": 1.48, + "dbovendry_l": 1.37, + "dbovendry_r": 1.44, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 20, + "hzdept_r": 0, + "hzname": "A1", + "lep_h": 3.8, + "lep_l": 1.9, + "lep_r": 2.9, + "mukey": 1380504, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.5, + "sandtotal_h": 20, + "sandtotal_l": 5, + "sandtotal_r": 10, + "silttotal_h": 77, + "silttotal_l": 56, + "silttotal_r": 68, + "total_frag_volume": 0, + "wfifteenbar_h": 16.5, + "wfifteenbar_l": 11.6, + "wfifteenbar_r": 14.1, + "wthirdbar_h": 37.8, + "wthirdbar_l": 29.3, + "wthirdbar_r": 33.5 + }, + { + "cec7_h": 25, + "cec7_l": 15.1, + "cec7_r": 20.1, + "chkey": 78614945, + "claytotal_h": 30, + "claytotal_l": 18, + "claytotal_r": 24, + "cokey": 26356404, + "dbovendry_h": 1.54, + "dbovendry_l": 1.44, + "dbovendry_r": 1.48, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 64, + "hzdept_r": 20, + "hzname": "A2", + "lep_h": 4.7, + "lep_l": 1.9, + "lep_r": 3.3, + "mukey": 1380504, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 7, + "sandtotal_h": 20, + "sandtotal_l": 5, + "sandtotal_r": 10, + "silttotal_h": 77, + "silttotal_l": 56, + "silttotal_r": 66, + "total_frag_volume": 0, + "wfifteenbar_h": 18.8, + "wfifteenbar_l": 11.5, + "wfifteenbar_r": 15.2, + "wthirdbar_h": 38.3, + "wthirdbar_l": 29.9, + "wthirdbar_r": 34.2 + }, + { + "cec7_h": 26.8, + "cec7_l": 15.1, + "cec7_r": 21.4, + "chkey": 78614946, + "claytotal_h": 34, + "claytotal_l": 18, + "claytotal_r": 26, + "cokey": 26356404, + "dbovendry_h": 1.61, + "dbovendry_l": 1.48, + "dbovendry_r": 1.53, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.2, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 84, + "hzdept_r": 64, + "hzname": "A3", + "lep_h": 5.5, + "lep_l": 1.8, + "lep_r": 3.7, + "mukey": 1380504, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.9, + "sandtotal_h": 20, + "sandtotal_l": 5, + "sandtotal_r": 10, + "silttotal_h": 77, + "silttotal_l": 48, + "silttotal_r": 64, + "total_frag_volume": 0, + "wfifteenbar_h": 21.1, + "wfifteenbar_l": 11.8, + "wfifteenbar_r": 16.5, + "wthirdbar_h": 39.3, + "wthirdbar_l": 30.1, + "wthirdbar_r": 34.8 + }, + { + "cec7_h": 25.3, + "cec7_l": 14.4, + "cec7_r": 20, + "chkey": 78614947, + "claytotal_h": 34, + "claytotal_l": 18, + "claytotal_r": 26, + "cokey": 26356404, + "dbovendry_h": 1.65, + "dbovendry_l": 1.51, + "dbovendry_r": 1.56, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.2, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 84, + "hzname": "C", + "lep_h": 5.3, + "lep_l": 1.7, + "lep_r": 3.4, + "mukey": 1380504, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8, + "sandtotal_h": 30, + "sandtotal_l": 5, + "sandtotal_r": 10, + "silttotal_h": 77, + "silttotal_l": 44, + "silttotal_r": 64, + "total_frag_volume": 0, + "wfifteenbar_h": 21.2, + "wfifteenbar_l": 11.9, + "wfifteenbar_r": 16.6, + "wthirdbar_h": 39.6, + "wthirdbar_l": 28.6, + "wthirdbar_r": 35.1 + }, + { + "cec7_h": 25.3, + "cec7_l": 21.2, + "cec7_r": 23.2, + "chkey": 78614883, + "claytotal_h": 32, + "claytotal_l": 27, + "claytotal_r": 29, + "cokey": 26356380, + "dbovendry_h": 1.62, + "dbovendry_l": 1.53, + "dbovendry_r": 1.58, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.5, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 16, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 5, + "lep_l": 3.3, + "lep_r": 4.1, + "mukey": 1380503, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.9, + "sandtotal_h": 40, + "sandtotal_l": 20, + "sandtotal_r": 33, + "silttotal_h": 50, + "silttotal_l": 28, + "silttotal_r": 38, + "total_frag_volume": 6, + "wfifteenbar_h": 21.2, + "wfifteenbar_l": 14.6, + "wfifteenbar_r": 17.2, + "wthirdbar_h": 33.6, + "wthirdbar_l": 27.2, + "wthirdbar_r": 29.9 + }, + { + "cec7_h": 25.3, + "cec7_l": 13.8, + "cec7_r": 22.6, + "chkey": 78614884, + "claytotal_h": 35, + "claytotal_l": 18, + "claytotal_r": 30, + "cokey": 26356380, + "dbovendry_h": 1.78, + "dbovendry_l": 1.54, + "dbovendry_r": 1.72, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.4, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 89, + "hzdept_r": 16, + "hzname": "Bk", + "lep_h": 5.5, + "lep_l": 1.5, + "lep_r": 4, + "mukey": 1380503, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 8, + "sandtotal_h": 45, + "sandtotal_l": 20, + "sandtotal_r": 35, + "silttotal_h": 53, + "silttotal_l": 20, + "silttotal_r": 35, + "total_frag_volume": 6, + "wfifteenbar_h": 23.8, + "wfifteenbar_l": 10.3, + "wfifteenbar_r": 18.7, + "wthirdbar_h": 35, + "wthirdbar_l": 24, + "wthirdbar_r": 30.9 + }, + { + "cec7_h": 25.1, + "cec7_l": 12.9, + "cec7_r": 21.4, + "chkey": 78614885, + "claytotal_h": 35, + "claytotal_l": 18, + "claytotal_r": 29, + "cokey": 26356380, + "dbovendry_h": 1.78, + "dbovendry_l": 1.53, + "dbovendry_r": 1.71, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.4, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 89, + "hzname": "C", + "lep_h": 5.4, + "lep_l": 1.4, + "lep_r": 3.7, + "mukey": 1380503, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 8.1, + "sandtotal_h": 45, + "sandtotal_l": 20, + "sandtotal_r": 35, + "silttotal_h": 53, + "silttotal_l": 20, + "silttotal_r": 36, + "total_frag_volume": 6, + "wfifteenbar_h": 23.5, + "wfifteenbar_l": 10.2, + "wfifteenbar_r": 17.9, + "wthirdbar_h": 34.9, + "wthirdbar_l": 23.9, + "wthirdbar_r": 30.4 + }, + { + "cec7_h": 20.6, + "cec7_l": 15.1, + "cec7_r": 17, + "chkey": 78614880, + "claytotal_h": 34, + "claytotal_l": 18, + "claytotal_r": 21, + "cokey": 26356378, + "dbovendry_h": 1.53, + "dbovendry_l": 1.33, + "dbovendry_r": 1.39, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.3, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 33, + "hzdept_r": 0, + "hzname": "A", + "lep_h": 4.7, + "lep_l": 1.7, + "lep_r": 2.3, + "mukey": 1380503, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.9, + "sandtotal_h": 30, + "sandtotal_l": 4, + "sandtotal_r": 10, + "silttotal_h": 78, + "silttotal_l": 50, + "silttotal_r": 69, + "total_frag_volume": 0, + "wfifteenbar_h": 22, + "wfifteenbar_l": 10.5, + "wfifteenbar_r": 13.2, + "wthirdbar_h": 34.1, + "wthirdbar_l": 26.2, + "wthirdbar_r": 28.4 + }, + { + "cec7_h": 19.9, + "cec7_l": 14.9, + "cec7_r": 15.1, + "chkey": 78614124, + "claytotal_h": 26, + "claytotal_l": 18, + "claytotal_r": 19, + "cokey": 26356232, + "dbovendry_h": 1.71, + "dbovendry_l": 1.44, + "dbovendry_r": 1.52, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.7, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 18, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.8, + "mukey": 2669027, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.9, + "sandtotal_h": 50, + "sandtotal_l": 25, + "sandtotal_r": 39, + "silttotal_h": 57, + "silttotal_l": 31, + "silttotal_r": 42, + "total_frag_volume": 0, + "wfifteenbar_h": 20.1, + "wfifteenbar_l": 11.7, + "wfifteenbar_r": 14.3, + "wthirdbar_h": 33, + "wthirdbar_l": 27.3, + "wthirdbar_r": 29.2 + }, + { + "cec7_h": 22.2, + "cec7_l": 17.3, + "cec7_r": 19.8, + "chkey": 78614134, + "claytotal_h": 27, + "claytotal_l": 21, + "claytotal_r": 24, + "cokey": 26356234, + "dbovendry_h": 1.6, + "dbovendry_l": 1.53, + "dbovendry_r": 1.57, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 15, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 5.9, + "lep_l": 0, + "lep_r": 2.9, + "mukey": 2669027, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.7, + "sandtotal_h": 11, + "sandtotal_l": 5, + "sandtotal_r": 9, + "silttotal_h": 73, + "silttotal_l": 62, + "silttotal_r": 67, + "total_frag_volume": 0, + "wfifteenbar_h": 19.4, + "wfifteenbar_l": 13.4, + "wfifteenbar_r": 16.4, + "wthirdbar_h": 32.6, + "wthirdbar_l": 28.6, + "wthirdbar_r": 30.7 + }, + { + "cec7_h": 23.7, + "cec7_l": 19.4, + "cec7_r": 21.2, + "chkey": 78614131, + "claytotal_h": 29, + "claytotal_l": 24, + "claytotal_r": 26, + "cokey": 26356234, + "dbovendry_h": 1.47, + "dbovendry_l": 1.38, + "dbovendry_r": 1.44, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 23, + "hzdept_r": 15, + "hzname": "A", + "lep_h": 5.9, + "lep_l": 0, + "lep_r": 3.3, + "mukey": 2669027, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.7, + "sandtotal_h": 11, + "sandtotal_l": 4, + "sandtotal_r": 7, + "silttotal_h": 72, + "silttotal_l": 61, + "silttotal_r": 67, + "total_frag_volume": 0, + "wfifteenbar_h": 18.7, + "wfifteenbar_l": 13.8, + "wfifteenbar_r": 16, + "wthirdbar_h": 32.1, + "wthirdbar_l": 28.9, + "wthirdbar_r": 30.4 + }, + { + "cec7_h": 19.9, + "cec7_l": 14.9, + "cec7_r": 15.1, + "chkey": 78614126, + "claytotal_h": 26, + "claytotal_l": 18, + "claytotal_r": 19, + "cokey": 26356232, + "dbovendry_h": 1.64, + "dbovendry_l": 1.35, + "dbovendry_r": 1.46, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.7, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 31, + "hzdept_r": 18, + "hzname": "A", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.8, + "mukey": 2669027, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 8.1, + "sandtotal_h": 50, + "sandtotal_l": 25, + "sandtotal_r": 39, + "silttotal_h": 57, + "silttotal_l": 31, + "silttotal_r": 42, + "total_frag_volume": 0, + "wfifteenbar_h": 19.3, + "wfifteenbar_l": 11.2, + "wfifteenbar_r": 13.7, + "wthirdbar_h": 32.5, + "wthirdbar_l": 26.8, + "wthirdbar_r": 28.8 + }, + { + "cec7_h": 30.8, + "cec7_l": 22.8, + "cec7_r": 26.8, + "chkey": 78614135, + "claytotal_h": 40, + "claytotal_l": 29, + "claytotal_r": 35, + "cokey": 26356234, + "dbovendry_h": 1.73, + "dbovendry_l": 1.65, + "dbovendry_r": 1.67, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 31, + "hzdept_r": 23, + "hzname": "Bt1", + "lep_h": 8.9, + "lep_l": 3, + "lep_r": 6, + "mukey": 2669027, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 7.2, + "sandtotal_h": 7, + "sandtotal_l": 2, + "sandtotal_r": 5, + "silttotal_h": 68, + "silttotal_l": 53, + "silttotal_r": 60, + "total_frag_volume": 0, + "wfifteenbar_h": 24.8, + "wfifteenbar_l": 17.5, + "wfifteenbar_r": 20.8, + "wthirdbar_h": 35.5, + "wthirdbar_l": 31.4, + "wthirdbar_r": 33.4 + }, + { + "cec7_h": 18.4, + "cec7_l": 16.9, + "cec7_r": 18, + "chkey": 78614125, + "claytotal_h": 34, + "claytotal_l": 21, + "claytotal_r": 29, + "cokey": 26356232, + "dbovendry_h": 1.78, + "dbovendry_l": 1.58, + "dbovendry_r": 1.63, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 84, + "hzdept_r": 31, + "hzname": "Bk", + "lep_h": 5.9, + "lep_l": 0, + "lep_r": 2.8, + "mukey": 2669027, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 8.3, + "sandtotal_h": 45, + "sandtotal_l": 25, + "sandtotal_r": 32, + "silttotal_h": 50, + "silttotal_l": 26, + "silttotal_r": 39, + "total_frag_volume": 0, + "wfifteenbar_h": 22.6, + "wfifteenbar_l": 13.9, + "wfifteenbar_r": 19.1, + "wthirdbar_h": 34.4, + "wthirdbar_l": 29, + "wthirdbar_r": 32.4 + }, + { + "cec7_h": 32.8, + "cec7_l": 26.2, + "cec7_r": 29.2, + "chkey": 78614132, + "claytotal_h": 43, + "claytotal_l": 35, + "claytotal_r": 39, + "cokey": 26356234, + "dbovendry_h": 1.77, + "dbovendry_l": 1.7, + "dbovendry_r": 1.72, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 64, + "hzdept_r": 31, + "hzname": "Bt2", + "lep_h": 8.9, + "lep_l": 6, + "lep_r": 7, + "mukey": 2669027, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 7.3, + "sandtotal_h": 6, + "sandtotal_l": 2, + "sandtotal_r": 5, + "silttotal_h": 62, + "silttotal_l": 51, + "silttotal_r": 56, + "total_frag_volume": 0, + "wfifteenbar_h": 26.4, + "wfifteenbar_l": 20.2, + "wfifteenbar_r": 22.8, + "wthirdbar_h": 36.3, + "wthirdbar_l": 33, + "wthirdbar_r": 34.5 + }, + { + "cec7_h": 18.7, + "cec7_l": 14, + "cec7_r": 18.6, + "chkey": 78614881, + "claytotal_h": 34, + "claytotal_l": 18, + "claytotal_r": 25, + "cokey": 26356378, + "dbovendry_h": 1.63, + "dbovendry_l": 1.45, + "dbovendry_r": 1.49, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.7, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 71, + "hzdept_r": 33, + "hzname": "Bk", + "lep_h": 4.3, + "lep_l": 1.5, + "lep_r": 2.9, + "mukey": 1380503, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 8.1, + "sandtotal_h": 30, + "sandtotal_l": 4, + "sandtotal_r": 11, + "silttotal_h": 78, + "silttotal_l": 50, + "silttotal_r": 64, + "total_frag_volume": 0, + "wfifteenbar_h": 21, + "wfifteenbar_l": 10.5, + "wfifteenbar_r": 14.7, + "wthirdbar_h": 33.5, + "wthirdbar_l": 26.2, + "wthirdbar_r": 29.5 + }, + { + "cec7_h": 26.8, + "cec7_l": 18.5, + "cec7_r": 23, + "chkey": 78614136, + "claytotal_h": 35, + "claytotal_l": 24, + "claytotal_r": 30, + "cokey": 26356234, + "dbovendry_h": 1.69, + "dbovendry_l": 1.57, + "dbovendry_r": 1.58, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.3, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 90, + "hzdept_r": 64, + "hzname": "Bk", + "lep_h": 5.9, + "lep_l": 0, + "lep_r": 3.6, + "mukey": 2669027, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.9, + "sandtotal_h": 8, + "sandtotal_l": 4, + "sandtotal_r": 6, + "silttotal_h": 71, + "silttotal_l": 57, + "silttotal_r": 64, + "total_frag_volume": 0, + "wfifteenbar_h": 21.1, + "wfifteenbar_l": 14, + "wfifteenbar_r": 17.7, + "wthirdbar_h": 33.6, + "wthirdbar_l": 29, + "wthirdbar_r": 31.5 + }, + { + "cec7_h": 18.1, + "cec7_l": 13.6, + "cec7_r": 15.4, + "chkey": 78614882, + "claytotal_h": 34, + "claytotal_l": 18, + "claytotal_r": 21, + "cokey": 26356378, + "dbovendry_h": 1.66, + "dbovendry_l": 1.44, + "dbovendry_r": 1.49, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.6, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 71, + "hzname": "C", + "lep_h": 4.2, + "lep_l": 1.5, + "lep_r": 2, + "mukey": 1380503, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 8.1, + "sandtotal_h": 30, + "sandtotal_l": 4, + "sandtotal_r": 13, + "silttotal_h": 78, + "silttotal_l": 48, + "silttotal_r": 66, + "total_frag_volume": 0, + "wfifteenbar_h": 20.2, + "wfifteenbar_l": 10.4, + "wfifteenbar_r": 12.4, + "wthirdbar_h": 33.1, + "wthirdbar_l": 26.1, + "wthirdbar_r": 27.8 + }, + { + "cec7_h": 15.1, + "cec7_l": 11.7, + "cec7_r": 12.5, + "chkey": 78614123, + "claytotal_h": 27, + "claytotal_l": 15, + "claytotal_r": 23, + "cokey": 26356232, + "dbovendry_h": 1.59, + "dbovendry_l": 1.48, + "dbovendry_r": 1.54, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 84, + "hzname": "C", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.9, + "mukey": 2669027, + "ph1to1h2o_h": 9, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8.5, + "sandtotal_h": 45, + "sandtotal_l": 25, + "sandtotal_r": 34, + "silttotal_h": 50, + "silttotal_l": 30, + "silttotal_r": 43, + "total_frag_volume": 0, + "wfifteenbar_h": 16.4, + "wfifteenbar_l": 8.9, + "wfifteenbar_r": 13.8, + "wthirdbar_h": 30.7, + "wthirdbar_l": 24.7, + "wthirdbar_r": 28.9 + }, + { + "cec7_h": 22.3, + "cec7_l": 15.1, + "cec7_r": 19.6, + "chkey": 78614133, + "claytotal_h": 29, + "claytotal_l": 21, + "claytotal_r": 25, + "cokey": 26356234, + "dbovendry_h": 1.59, + "dbovendry_l": 1.53, + "dbovendry_r": 1.55, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.2, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 90, + "hzname": "C", + "lep_h": 5.9, + "lep_l": 0, + "lep_r": 2.8, + "mukey": 2669027, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.9, + "sandtotal_h": 10, + "sandtotal_l": 5, + "sandtotal_r": 6, + "silttotal_h": 74, + "silttotal_l": 62, + "silttotal_r": 69, + "total_frag_volume": 0, + "wfifteenbar_h": 17.1, + "wfifteenbar_l": 11.9, + "wfifteenbar_r": 14.8, + "wthirdbar_h": 31.2, + "wthirdbar_l": 27.4, + "wthirdbar_r": 29.6 + }, + { + "cec7_h": 29, + "cec7_l": 15, + "cec7_r": 21, + "chkey": 78614567, + "claytotal_h": 34, + "claytotal_l": 21, + "claytotal_r": 25, + "cokey": 26356435, + "dbovendry_h": 1.63, + "dbovendry_l": 1.54, + "dbovendry_r": 1.56, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.6, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 25, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 4.7, + "lep_l": 2.5, + "lep_r": 3.1, + "mukey": 2605949, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 8, + "sandtotal_h": 13, + "sandtotal_l": 5, + "sandtotal_r": 10, + "silttotal_h": 74, + "silttotal_l": 54, + "silttotal_r": 65, + "total_frag_volume": 1, + "wfifteenbar_h": 23.3, + "wfifteenbar_l": 13, + "wfifteenbar_r": 16.8, + "wthirdbar_h": 34.8, + "wthirdbar_l": 27.8, + "wthirdbar_r": 30.7 + }, + { + "cec7_h": 24, + "cec7_l": 14, + "cec7_r": 18, + "chkey": 78614570, + "claytotal_h": 39, + "claytotal_l": 24, + "claytotal_r": 29, + "cokey": 26356435, + "dbovendry_h": 1.61, + "dbovendry_l": 1.5, + "dbovendry_r": 1.52, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.7, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 56, + "hzdept_r": 25, + "hzname": "Bw", + "lep_h": 5.6, + "lep_l": 2.7, + "lep_r": 3.7, + "mukey": 2605949, + "ph1to1h2o_h": 9, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8.2, + "sandtotal_h": 11, + "sandtotal_l": 5, + "sandtotal_r": 8, + "silttotal_h": 71, + "silttotal_l": 52, + "silttotal_r": 63, + "total_frag_volume": 2, + "wfifteenbar_h": 22.6, + "wfifteenbar_l": 12.6, + "wfifteenbar_r": 16.6, + "wthirdbar_h": 34.4, + "wthirdbar_l": 26.3, + "wthirdbar_r": 30.4 + }, + { + "cec7_h": 21, + "cec7_l": 9, + "cec7_r": 16, + "chkey": 78614569, + "claytotal_h": 39, + "claytotal_l": 22, + "claytotal_r": 34, + "cokey": 26356435, + "dbovendry_h": 1.71, + "dbovendry_l": 1.61, + "dbovendry_r": 1.66, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.9, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 79, + "hzdept_r": 56, + "hzname": "BC", + "lep_h": 5.4, + "lep_l": 2.4, + "lep_r": 4.4, + "mukey": 2605949, + "ph1to1h2o_h": 9, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8.4, + "sandtotal_h": 10, + "sandtotal_l": 4, + "sandtotal_r": 7, + "silttotal_h": 70, + "silttotal_l": 51, + "silttotal_r": 59, + "total_frag_volume": 6, + "wfifteenbar_h": 23, + "wfifteenbar_l": 11.6, + "wfifteenbar_r": 19.3, + "wthirdbar_h": 34.1, + "wthirdbar_l": 25.1, + "wthirdbar_r": 31.4 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 78614568, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26356435, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 89, + "hzdept_r": 79, + "hzname": "Cr", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 2605949, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": 21.2, + "cec7_l": 14.3, + "cec7_r": 18.6, + "chkey": 78614948, + "claytotal_h": 25, + "claytotal_l": 17, + "claytotal_r": 22, + "cokey": 26356407, + "dbovendry_h": 1.53, + "dbovendry_l": 1.46, + "dbovendry_r": 1.5, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.7, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 26, + "hzdept_r": 0, + "hzname": "A", + "lep_h": 3.6, + "lep_l": 1.8, + "lep_r": 2.8, + "mukey": 1380504, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 6.6, + "sandtotal_h": 22, + "sandtotal_l": 8, + "sandtotal_r": 14, + "silttotal_h": 75, + "silttotal_l": 53, + "silttotal_r": 64, + "total_frag_volume": 0, + "wfifteenbar_h": 17.5, + "wfifteenbar_l": 10.7, + "wfifteenbar_r": 14.7, + "wthirdbar_h": 31.4, + "wthirdbar_l": 26.4, + "wthirdbar_r": 29.5 + }, + { + "cec7_h": 22.2, + "cec7_l": 15.1, + "cec7_r": 20.5, + "chkey": 78614957, + "claytotal_h": 27, + "claytotal_l": 18, + "claytotal_r": 25, + "cokey": 26356408, + "dbovendry_h": 1.61, + "dbovendry_l": 1.54, + "dbovendry_r": 1.59, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 13, + "hzdept_r": 0, + "hzname": "A1", + "lep_h": 3.8, + "lep_l": 2, + "lep_r": 3.4, + "mukey": 1380504, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.7, + "sandtotal_h": 11, + "sandtotal_l": 5, + "sandtotal_r": 9, + "silttotal_h": 71, + "silttotal_l": 62, + "silttotal_r": 66, + "total_frag_volume": 0, + "wfifteenbar_h": 18.3, + "wfifteenbar_l": 12.4, + "wfifteenbar_r": 16.8, + "wthirdbar_h": 37.4, + "wthirdbar_l": 29.9, + "wthirdbar_r": 34.1 + }, + { + "cec7_h": 27.8, + "cec7_l": 21.5, + "cec7_r": 24.7, + "chkey": 78614956, + "claytotal_h": 35, + "claytotal_l": 27, + "claytotal_r": 31, + "cokey": 26356408, + "dbovendry_h": 1.59, + "dbovendry_l": 1.46, + "dbovendry_r": 1.51, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 36, + "hzdept_r": 13, + "hzname": "A2", + "lep_h": 6.4, + "lep_l": 3.7, + "lep_r": 4.5, + "mukey": 1380504, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.7, + "sandtotal_h": 11, + "sandtotal_l": 4, + "sandtotal_r": 7, + "silttotal_h": 69, + "silttotal_l": 54, + "silttotal_r": 62, + "total_frag_volume": 0, + "wfifteenbar_h": 21.1, + "wfifteenbar_l": 16.3, + "wfifteenbar_r": 18.7, + "wthirdbar_h": 39.9, + "wthirdbar_l": 33.2, + "wthirdbar_r": 36.3 + }, + { + "cec7_h": 23.8, + "cec7_l": 14.7, + "cec7_r": 19.3, + "chkey": 78614950, + "claytotal_h": 30, + "claytotal_l": 18, + "claytotal_r": 24, + "cokey": 26356407, + "dbovendry_h": 1.6, + "dbovendry_l": 1.48, + "dbovendry_r": 1.54, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.3, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 41, + "hzdept_r": 26, + "hzname": "Bw", + "lep_h": 4.6, + "lep_l": 1.9, + "lep_r": 3.2, + "mukey": 1380504, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 8.2, + "sandtotal_h": 25, + "sandtotal_l": 7, + "sandtotal_r": 13, + "silttotal_h": 75, + "silttotal_l": 45, + "silttotal_r": 63, + "total_frag_volume": 0, + "wfifteenbar_h": 17.9, + "wfifteenbar_l": 10.7, + "wfifteenbar_r": 14.3, + "wthirdbar_h": 31.7, + "wthirdbar_l": 26.4, + "wthirdbar_r": 29.3 + }, + { + "cec7_h": 30.8, + "cec7_l": 22.8, + "cec7_r": 26.8, + "chkey": 78614955, + "claytotal_h": 40, + "claytotal_l": 29, + "claytotal_r": 35, + "cokey": 26356408, + "dbovendry_h": 1.75, + "dbovendry_l": 1.66, + "dbovendry_r": 1.68, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 71, + "hzdept_r": 36, + "hzname": "Bt", + "lep_h": 7.7, + "lep_l": 4.1, + "lep_r": 6.2, + "mukey": 1380504, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 7.2, + "sandtotal_h": 7, + "sandtotal_l": 2, + "sandtotal_r": 5, + "silttotal_h": 68, + "silttotal_l": 53, + "silttotal_r": 60, + "total_frag_volume": 0, + "wfifteenbar_h": 25, + "wfifteenbar_l": 18.4, + "wfifteenbar_r": 21.8, + "wthirdbar_h": 40.1, + "wthirdbar_l": 35.1, + "wthirdbar_r": 37.8 + }, + { + "cec7_h": 18.7, + "cec7_l": 14, + "cec7_r": 16.4, + "chkey": 78614951, + "claytotal_h": 30, + "claytotal_l": 18, + "claytotal_r": 24, + "cokey": 26356407, + "dbovendry_h": 1.57, + "dbovendry_l": 1.44, + "dbovendry_r": 1.5, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.3, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 56, + "hzdept_r": 41, + "hzname": "Bk", + "lep_h": 3.8, + "lep_l": 1.4, + "lep_r": 2.3, + "mukey": 1380504, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 8.2, + "sandtotal_h": 25, + "sandtotal_l": 7, + "sandtotal_r": 13, + "silttotal_h": 75, + "silttotal_l": 45, + "silttotal_r": 63, + "total_frag_volume": 0, + "wfifteenbar_h": 17.9, + "wfifteenbar_l": 10.7, + "wfifteenbar_r": 14.3, + "wthirdbar_h": 31.7, + "wthirdbar_l": 26.4, + "wthirdbar_r": 29.3 + }, + { + "cec7_h": 16.2, + "cec7_l": 11.3, + "cec7_r": 14.1, + "chkey": 78614949, + "claytotal_h": 27, + "claytotal_l": 15, + "claytotal_r": 23, + "cokey": 26356407, + "dbovendry_h": 1.51, + "dbovendry_l": 1.44, + "dbovendry_r": 1.46, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.3, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 56, + "hzname": "C", + "lep_h": 3, + "lep_l": 0.8, + "lep_r": 2, + "mukey": 1380504, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 8.3, + "sandtotal_h": 25, + "sandtotal_l": 9, + "sandtotal_r": 14, + "silttotal_h": 76, + "silttotal_l": 48, + "silttotal_r": 63, + "total_frag_volume": 0, + "wfifteenbar_h": 15.6, + "wfifteenbar_l": 8.5, + "wfifteenbar_r": 13.3, + "wthirdbar_h": 30.2, + "wthirdbar_l": 24.4, + "wthirdbar_r": 28.5 + }, + { + "cec7_h": 24.2, + "cec7_l": 17.7, + "cec7_r": 21, + "chkey": 78614954, + "claytotal_h": 35, + "claytotal_l": 24, + "claytotal_r": 30, + "cokey": 26356408, + "dbovendry_h": 1.67, + "dbovendry_l": 1.55, + "dbovendry_r": 1.58, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.3, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 99, + "hzdept_r": 71, + "hzname": "Bk1", + "lep_h": 5.6, + "lep_l": 2.5, + "lep_r": 3.7, + "mukey": 1380504, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.9, + "sandtotal_h": 8, + "sandtotal_l": 4, + "sandtotal_r": 6, + "silttotal_h": 71, + "silttotal_l": 57, + "silttotal_r": 64, + "total_frag_volume": 0, + "wfifteenbar_h": 21.6, + "wfifteenbar_l": 15.3, + "wfifteenbar_r": 18.7, + "wthirdbar_h": 39.3, + "wthirdbar_l": 33.8, + "wthirdbar_r": 36.6 + }, + { + "cec7_h": 24.2, + "cec7_l": 17.7, + "cec7_r": 21, + "chkey": 78614952, + "claytotal_h": 35, + "claytotal_l": 24, + "claytotal_r": 30, + "cokey": 26356408, + "dbovendry_h": 1.67, + "dbovendry_l": 1.55, + "dbovendry_r": 1.58, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.3, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 127, + "hzdept_r": 99, + "hzname": "Bk2", + "lep_h": 5.6, + "lep_l": 2.5, + "lep_r": 3.7, + "mukey": 1380504, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.9, + "sandtotal_h": 8, + "sandtotal_l": 4, + "sandtotal_r": 6, + "silttotal_h": 71, + "silttotal_l": 57, + "silttotal_r": 64, + "total_frag_volume": 0, + "wfifteenbar_h": 21.6, + "wfifteenbar_l": 15.3, + "wfifteenbar_r": 18.7, + "wthirdbar_h": 39.3, + "wthirdbar_l": 33.8, + "wthirdbar_r": 36.6 + }, + { + "cec7_h": 18.3, + "cec7_l": 15.4, + "cec7_r": 15.7, + "chkey": 78614953, + "claytotal_h": 29, + "claytotal_l": 21, + "claytotal_r": 25, + "cokey": 26356408, + "dbovendry_h": 1.58, + "dbovendry_l": 1.52, + "dbovendry_r": 1.54, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.2, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 127, + "hzname": "C", + "lep_h": 3.6, + "lep_l": 1.2, + "lep_r": 2.7, + "mukey": 1380504, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.9, + "sandtotal_h": 10, + "sandtotal_l": 5, + "sandtotal_r": 6, + "silttotal_h": 74, + "silttotal_l": 62, + "silttotal_r": 69, + "total_frag_volume": 0, + "wfifteenbar_h": 17.8, + "wfifteenbar_l": 13.5, + "wfifteenbar_r": 15.4, + "wthirdbar_h": 37.3, + "wthirdbar_l": 33.1, + "wthirdbar_r": 35.2 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 78614566, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26356437, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 152, + "hzdept_r": 0, + "hzname": "H1", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 2605949, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": 17.6, + "cec7_l": 6.3, + "cec7_r": 12.8, + "chkey": 78614961, + "claytotal_h": 26, + "claytotal_l": 7, + "claytotal_r": 16, + "cokey": 26356405, + "dbovendry_h": 1.61, + "dbovendry_l": 1.48, + "dbovendry_r": 1.53, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.3, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 13, + "hzdept_r": 0, + "hzname": "A", + "lep_h": 3.1, + "lep_l": 0.2, + "lep_r": 1.4, + "mukey": 1380504, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.8, + "sandtotal_h": 52, + "sandtotal_l": 25, + "sandtotal_r": 47, + "silttotal_h": 50, + "silttotal_l": 28, + "silttotal_r": 37, + "total_frag_volume": 8, + "wfifteenbar_h": 16.6, + "wfifteenbar_l": 5, + "wfifteenbar_r": 10.6, + "wthirdbar_h": 33.7, + "wthirdbar_l": 19.7, + "wthirdbar_r": 26 + }, + { + "cec7_h": 17.3, + "cec7_l": 6.3, + "cec7_r": 12.6, + "chkey": 78614959, + "claytotal_h": 26, + "claytotal_l": 7, + "claytotal_r": 16, + "cokey": 26356405, + "dbovendry_h": 1.61, + "dbovendry_l": 1.48, + "dbovendry_r": 1.53, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.3, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 25, + "hzdept_r": 13, + "hzname": "AC", + "lep_h": 3.1, + "lep_l": 0.2, + "lep_r": 1.4, + "mukey": 1380504, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.8, + "sandtotal_h": 52, + "sandtotal_l": 25, + "sandtotal_r": 47, + "silttotal_h": 50, + "silttotal_l": 28, + "silttotal_r": 37, + "total_frag_volume": 8, + "wfifteenbar_h": 16.4, + "wfifteenbar_l": 5, + "wfifteenbar_r": 10.6, + "wthirdbar_h": 33.7, + "wthirdbar_l": 20.1, + "wthirdbar_r": 26.2 + }, + { + "cec7_h": 9.4, + "cec7_l": 5.4, + "cec7_r": 8.8, + "chkey": 78614960, + "claytotal_h": 20, + "claytotal_l": 7, + "claytotal_r": 14, + "cokey": 26356405, + "dbovendry_h": 1.51, + "dbovendry_l": 1.45, + "dbovendry_r": 1.5, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0.3, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 36, + "hzdept_r": 25, + "hzname": "C", + "lep_h": 1.1, + "lep_l": 0.1, + "lep_r": 0.9, + "mukey": 1380504, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 8.1, + "sandtotal_h": 60, + "sandtotal_l": 40, + "sandtotal_r": 50, + "silttotal_h": 48, + "silttotal_l": 28, + "silttotal_r": 36, + "total_frag_volume": 14, + "wfifteenbar_h": 12, + "wfifteenbar_l": 3.4, + "wfifteenbar_r": 8.6, + "wthirdbar_h": 29.9, + "wthirdbar_l": 13.9, + "wthirdbar_r": 24.3 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 78614958, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26356405, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 61, + "hzdept_r": 36, + "hzname": "R", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 1380504, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + } + ], + "spn": [ + { + "closest_pt_x": -99.55016693, + "closest_pt_y": 37.48216451, + "cokey": 26356233, + "compkind": "Series", + "compname": "uly", + "comppct_r": 90, + "dist_meters": 0, + "elev_r": 710, + "irrcapcl": 3, + "irrcapscl": "e", + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 2669027, + "nirrcapcl": 3, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 5, + "taxorder": "Mollisols", + "taxsubgrp": "Typic Haplustolls", + "which": "a" + }, + { + "closest_pt_x": -99.55016693, + "closest_pt_y": 37.48216451, + "cokey": 26356234, + "compkind": "Series", + "compname": "harney", + "comppct_r": 5, + "dist_meters": 0, + "elev_r": 710, + "irrcapcl": 3, + "irrcapscl": "e", + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 2669027, + "nirrcapcl": 3, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 5, + "taxorder": "Mollisols", + "taxsubgrp": "Typic Argiustolls", + "which": "a" + }, + { + "closest_pt_x": -99.55016693, + "closest_pt_y": 37.48216451, + "cokey": 26356232, + "compkind": "Series", + "compname": "penden", + "comppct_r": 5, + "dist_meters": 0, + "elev_r": 710, + "irrcapcl": 3, + "irrcapscl": "e", + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 2669027, + "nirrcapcl": 3, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 5, + "taxorder": "Mollisols", + "taxsubgrp": "Typic Calciustolls", + "which": "a" + }, + { + "closest_pt_x": -99.55021396302676, + "closest_pt_y": 37.48242365694909, + "cokey": 26356436, + "compkind": "Series", + "compname": "harney", + "comppct_r": 95, + "dist_meters": 29, + "elev_r": 710, + "irrcapcl": 2, + "irrcapscl": "e", + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 2605949, + "nirrcapcl": 2, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 2, + "taxorder": "Mollisols", + "taxsubgrp": "Typic Argiustolls", + "which": "b" + }, + { + "closest_pt_x": -99.55021396302676, + "closest_pt_y": 37.48242365694909, + "cokey": 26356435, + "compkind": "Series", + "compname": "wakeen", + "comppct_r": 4, + "dist_meters": 29, + "elev_r": 710, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 2605949, + "nirrcapcl": 3, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 2, + "taxorder": "Mollisols", + "taxsubgrp": "Entic Haplustolls", + "which": "b" + }, + { + "closest_pt_x": -99.55021396302676, + "closest_pt_y": 37.48242365694909, + "cokey": 26356437, + "compkind": "Taxon above family", + "compname": "aquolls", + "comppct_r": 1, + "dist_meters": 29, + "elev_r": 710, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 2605949, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": 1, + "taxorder": "Mollisols", + "taxsubgrp": null, + "which": "b" + }, + { + "closest_pt_x": -99.5498972432486, + "closest_pt_y": 37.4824811389679, + "cokey": 26356377, + "compkind": "Taxadjunct", + "compname": "holdrege", + "comppct_r": 45, + "dist_meters": 42, + "elev_r": 650, + "irrcapcl": 4, + "irrcapscl": "e", + "irrcapunit": null, + "localphase": "eroded", + "majcompflag": "Yes", + "mukey": 1380503, + "nirrcapcl": 4, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 6, + "taxorder": "Alfisols", + "taxsubgrp": "Typic Haplustalfs", + "which": "b" + }, + { + "closest_pt_x": -99.5498972432486, + "closest_pt_y": 37.4824811389679, + "cokey": 26356379, + "compkind": "Series", + "compname": "coly", + "comppct_r": 40, + "dist_meters": 42, + "elev_r": 650, + "irrcapcl": 4, + "irrcapscl": "e", + "irrcapunit": null, + "localphase": "eroded", + "majcompflag": "Yes", + "mukey": 1380503, + "nirrcapcl": 4, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 6, + "taxorder": "Entisols", + "taxsubgrp": "Typic Ustorthents", + "which": "b" + }, + { + "closest_pt_x": -99.5498972432486, + "closest_pt_y": 37.4824811389679, + "cokey": 26356380, + "compkind": "Series", + "compname": "case", + "comppct_r": 10, + "dist_meters": 42, + "elev_r": 650, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "eroded", + "majcompflag": "No ", + "mukey": 1380503, + "nirrcapcl": 6, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 6, + "taxorder": "Inceptisols", + "taxsubgrp": "Typic Calciustepts", + "which": "b" + }, + { + "closest_pt_x": -99.5498972432486, + "closest_pt_y": 37.4824811389679, + "cokey": 26356378, + "compkind": "Series", + "compname": "bridgeport", + "comppct_r": 5, + "dist_meters": 42, + "elev_r": 650, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "frequently flooded", + "majcompflag": "No ", + "mukey": 1380503, + "nirrcapcl": 5, + "nirrcapscl": "w", + "nirrcapunit": null, + "slope_r": 3, + "taxorder": "Mollisols", + "taxsubgrp": "Fluventic Haplustolls", + "which": "b" + }, + { + "closest_pt_x": -99.54941048781349, + "closest_pt_y": 37.48215877771833, + "cokey": 26356406, + "compkind": "Series", + "compname": "coly", + "comppct_r": 65, + "dist_meters": 67, + "elev_r": 670, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 1380504, + "nirrcapcl": 6, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 12, + "taxorder": "Entisols", + "taxsubgrp": "Typic Ustorthents", + "which": "b" + }, + { + "closest_pt_x": -99.54941048781349, + "closest_pt_y": 37.48215877771833, + "cokey": 26356404, + "compkind": "Series", + "compname": "tobin", + "comppct_r": 30, + "dist_meters": 67, + "elev_r": 670, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 1380504, + "nirrcapcl": 5, + "nirrcapscl": "w", + "nirrcapunit": null, + "slope_r": 1, + "taxorder": "Mollisols", + "taxsubgrp": "Cumulic Haplustolls", + "which": "b" + }, + { + "closest_pt_x": -99.54941048781349, + "closest_pt_y": 37.48215877771833, + "cokey": 26356407, + "compkind": "Series", + "compname": "uly", + "comppct_r": 2, + "dist_meters": 67, + "elev_r": 670, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 1380504, + "nirrcapcl": 3, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 5, + "taxorder": "Mollisols", + "taxsubgrp": "Typic Haplustolls", + "which": "b" + }, + { + "closest_pt_x": -99.54941048781349, + "closest_pt_y": 37.48215877771833, + "cokey": 26356408, + "compkind": "Series", + "compname": "harney", + "comppct_r": 2, + "dist_meters": 67, + "elev_r": 670, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 1380504, + "nirrcapcl": 3, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 4, + "taxorder": "Mollisols", + "taxsubgrp": "Typic Argiustolls", + "which": "b" + }, + { + "closest_pt_x": -99.54941048781349, + "closest_pt_y": 37.48215877771833, + "cokey": 26356405, + "compkind": "Series", + "compname": "canlon", + "comppct_r": 1, + "dist_meters": 67, + "elev_r": 670, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 1380504, + "nirrcapcl": 6, + "nirrcapscl": "s", + "nirrcapunit": null, + "slope_r": 12, + "taxorder": "Entisols", + "taxsubgrp": "Lithic Ustorthents", + "which": "b" + } + ] + } +} diff --git a/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[39.26009312,-85.50621214].json b/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[39.26009312,-85.50621214].json new file mode 100644 index 0000000..b48b14b --- /dev/null +++ b/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[39.26009312,-85.50621214].json @@ -0,0 +1,9950 @@ +{ + "elev": { + "location": { + "spatialReference": { + "latestWkid": 4326, + "wkid": 4326 + }, + "x": -85.50621214, + "y": 39.26009312 + }, + "locationId": 0, + "rasterId": 23527, + "resolution": 1, + "value": "287.070648193" + }, + "soilweb": { + "ESD": [ + { + "cokey": 26772402, + "ecoclassid": "F111XA008IN", + "ecoclassname": "Wet Till Ridge", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/111X/F111XA008IN" + }, + { + "cokey": 26772403, + "ecoclassid": "F111XA006IN", + "ecoclassname": "Till Depression", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/111X/F111XA006IN" + }, + { + "cokey": 26772404, + "ecoclassid": "F111XA009IN", + "ecoclassname": "Till Ridge", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/111X/F111XA009IN" + }, + { + "cokey": 26772419, + "ecoclassid": "F111XD010IN", + "ecoclassname": "Till Ridge", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/111X/F111XD010IN" + }, + { + "cokey": 26772420, + "ecoclassid": "F111XD010IN", + "ecoclassname": "Till Ridge", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/111X/F111XD010IN" + }, + { + "cokey": 26772425, + "ecoclassid": "F114XB503IN", + "ecoclassname": "Till Upland Forest", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/114X/F114XB503IN" + }, + { + "cokey": 26772433, + "ecoclassid": "F111XA007IN", + "ecoclassname": "Till Depression Flatwood", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/111X/F111XA007IN" + }, + { + "cokey": 26772434, + "ecoclassid": "F111XA007IN", + "ecoclassname": "Till Depression Flatwood", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/111X/F111XA007IN" + }, + { + "cokey": 26772435, + "ecoclassid": "F111XA009IN", + "ecoclassname": "Till Ridge", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/111X/F111XA009IN" + }, + { + "cokey": 26772436, + "ecoclassid": "F111XA008IN", + "ecoclassname": "Wet Till Ridge", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/111X/F111XA008IN" + }, + { + "cokey": 26772437, + "ecoclassid": "F111XA009IN", + "ecoclassname": "Till Ridge", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/111X/F111XA009IN" + }, + { + "cokey": 26772438, + "ecoclassid": "F111XA008IN", + "ecoclassname": "Wet Till Ridge", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/111X/F111XA008IN" + }, + { + "cokey": 26772439, + "ecoclassid": "F111XA007IN", + "ecoclassname": "Till Depression Flatwood", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/111X/F111XA007IN" + }, + { + "cokey": 26772440, + "ecoclassid": "F111XA009IN", + "ecoclassname": "Till Ridge", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/111X/F111XA009IN" + }, + { + "cokey": 26772441, + "ecoclassid": "F111XA007IN", + "ecoclassname": "Till Depression Flatwood", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/111X/F111XA007IN" + }, + { + "cokey": 26772442, + "ecoclassid": "F111XA009IN", + "ecoclassname": "Till Ridge", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/111X/F111XA009IN" + }, + { + "cokey": 26772443, + "ecoclassid": "F111XA009IN", + "ecoclassname": "Till Ridge", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/111X/F111XA009IN" + }, + { + "cokey": 26772444, + "ecoclassid": "F111XA008IN", + "ecoclassname": "Wet Till Ridge", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/111X/F111XA008IN" + }, + { + "cokey": 26772445, + "ecoclassid": "F111XA009IN", + "ecoclassname": "Till Ridge", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/111X/F111XA009IN" + }, + { + "cokey": 26772446, + "ecoclassid": "F111XA008IN", + "ecoclassname": "Wet Till Ridge", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/111X/F111XA008IN" + }, + { + "cokey": 26772447, + "ecoclassid": "F111XD010IN", + "ecoclassname": "Till Ridge", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/111X/F111XD010IN" + }, + { + "cokey": 26772448, + "ecoclassid": "F111XA009IN", + "ecoclassname": "Till Ridge", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/111X/F111XA009IN" + }, + { + "cokey": 26772449, + "ecoclassid": "F111XA009IN", + "ecoclassname": "Till Ridge", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/111X/F111XA009IN" + }, + { + "cokey": 26772494, + "ecoclassid": "F111XD008IN", + "ecoclassname": "Till Depression Flatwood", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/111X/F111XD008IN" + }, + { + "cokey": 26772495, + "ecoclassid": "F111XD009IN", + "ecoclassname": "Wet Till Ridge", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/111X/F111XD009IN" + }, + { + "cokey": 26772496, + "ecoclassid": "F111XA009IN", + "ecoclassname": "Till Ridge", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/111X/F111XA009IN" + }, + { + "cokey": 26772497, + "ecoclassid": "F111XD010IN", + "ecoclassname": "Till Ridge", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/111X/F111XD010IN" + }, + { + "cokey": 26772498, + "ecoclassid": "F111XD010IN", + "ecoclassname": "Till Ridge", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/111X/F111XD010IN" + }, + { + "cokey": 26772499, + "ecoclassid": "F111XD009IN", + "ecoclassname": "Wet Till Ridge", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/111X/F111XD009IN" + }, + { + "cokey": 26772500, + "ecoclassid": "F111XD008IN", + "ecoclassname": "Till Depression Flatwood", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/111X/F111XD008IN" + } + ], + "OSD_morph": [ + { + "bottom": 8, + "cf_class": null, + "cielab_a": 2.89064271156414, + "cielab_b": 13.064616880291, + "cielab_l": 61.5701956263403, + "hzname": "A", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "bonnell", + "srgb_b": 0.493496194704249, + "srgb_g": 0.573230189582846, + "srgb_r": 0.638561136802744, + "texture_class": "silt loam", + "top": 0 + }, + { + "bottom": 15, + "cf_class": null, + "cielab_a": 2.89064271156414, + "cielab_b": 13.064616880291, + "cielab_l": 61.5701956263403, + "hzname": "EB", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "bonnell", + "srgb_b": 0.493496194704249, + "srgb_g": 0.573230189582846, + "srgb_r": 0.638561136802744, + "texture_class": "silt loam", + "top": 8 + }, + { + "bottom": 23, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "Bt1", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "bonnell", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "loam", + "top": 15 + }, + { + "bottom": 66, + "cf_class": null, + "cielab_a": 9.31189329898768, + "cielab_b": 22.4496446381707, + "cielab_l": 61.5870610331128, + "hzname": "2Bt2", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 6, + "series": "bonnell", + "srgb_b": 0.429645085489254, + "srgb_g": 0.556090686344839, + "srgb_r": 0.69835386071579, + "texture_class": "clay", + "top": 23 + }, + { + "bottom": 91, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "2Bt3", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "bonnell", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "clay", + "top": 66 + }, + { + "bottom": 112, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "2Bt4", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "bonnell", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "clay loam", + "top": 91 + }, + { + "bottom": 152, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "2Bt5", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "bonnell", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "clay loam", + "top": 112 + }, + { + "bottom": 178, + "cf_class": null, + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "2BCt", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "bonnell", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "clay loam", + "top": 152 + }, + { + "bottom": 203, + "cf_class": null, + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "2C", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "bonnell", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "clay loam", + "top": 178 + }, + { + "bottom": 13, + "cf_class": null, + "cielab_a": 3.65979819919923, + "cielab_b": 13.2199440544513, + "cielab_l": 40.9141543373182, + "hzname": "Ap1", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "brookston", + "srgb_b": 0.294406483459129, + "srgb_g": 0.367561696190658, + "srgb_r": 0.432479607618406, + "texture_class": "loam", + "top": 0 + }, + { + "bottom": 23, + "cf_class": null, + "cielab_a": 3.65979819919923, + "cielab_b": 13.2199440544513, + "cielab_l": 40.9141543373182, + "hzname": "Ap2", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "brookston", + "srgb_b": 0.294406483459129, + "srgb_g": 0.367561696190658, + "srgb_r": 0.432479607618406, + "texture_class": "loam", + "top": 13 + }, + { + "bottom": 41, + "cf_class": null, + "cielab_a": 1.46898546730889, + "cielab_b": 6.1399480339165, + "cielab_l": 40.8982555194042, + "hzname": "Btg1", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "brookston", + "srgb_b": 0.339204032769121, + "srgb_g": 0.373572298991998, + "srgb_r": 0.403971386567422, + "texture_class": "clay loam", + "top": 23 + }, + { + "bottom": 63, + "cf_class": null, + "cielab_a": 2.05708107652991, + "cielab_b": 7.39527933622857, + "cielab_l": 61.5561381389081, + "hzname": "Btg2", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "brookston", + "srgb_b": 0.532295580678949, + "srgb_g": 0.576317017162754, + "srgb_r": 0.618806641667538, + "texture_class": "clay loam", + "top": 41 + }, + { + "bottom": 96, + "cf_class": null, + "cielab_a": 2.89064271156414, + "cielab_b": 13.064616880291, + "cielab_l": 61.5701956263403, + "hzname": "Btg3", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "brookston", + "srgb_b": 0.493496194704249, + "srgb_g": 0.573230189582846, + "srgb_r": 0.638561136802744, + "texture_class": "clay loam", + "top": 63 + }, + { + "bottom": 122, + "cf_class": null, + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "Bt", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "brookston", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "sand", + "top": 96 + }, + { + "bottom": 147, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "BC1", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "brookston", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "loam", + "top": 122 + }, + { + "bottom": 173, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "BC2", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "brookston", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "loam", + "top": 147 + }, + { + "bottom": 200, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "C", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "brookston", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "loam", + "top": 173 + }, + { + "bottom": 20, + "cf_class": null, + "cielab_a": 2.89064271156414, + "cielab_b": 13.064616880291, + "cielab_l": 61.5701956263403, + "hzname": "Ap", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "celina", + "srgb_b": 0.493496194704249, + "srgb_g": 0.573230189582846, + "srgb_r": 0.638561136802744, + "texture_class": "silt loam", + "top": 0 + }, + { + "bottom": 30, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "Bt1", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "celina", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "silty clay loam", + "top": 20 + }, + { + "bottom": 43, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "2Bt2", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "celina", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "clay", + "top": 30 + }, + { + "bottom": 61, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "2Bt3", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "celina", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "clay", + "top": 43 + }, + { + "bottom": 74, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "2BCt", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "celina", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "clay loam", + "top": 61 + }, + { + "bottom": 152, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "2Cd", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "celina", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "loam", + "top": 74 + }, + { + "bottom": 25, + "cf_class": null, + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "Ap", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "cincinnati", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "silt loam", + "top": 0 + }, + { + "bottom": 41, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "Bt1", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "cincinnati", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "silt loam", + "top": 25 + }, + { + "bottom": 56, + "cf_class": null, + "cielab_a": 7.44190892048435, + "cielab_b": 31.7712099577674, + "cielab_l": 61.6063521148112, + "hzname": "Bt2", + "matrix_dry_color_chroma": 5, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "cincinnati", + "srgb_b": 0.363348955847589, + "srgb_g": 0.559191853495347, + "srgb_r": 0.702207229538416, + "texture_class": "silty clay loam", + "top": 41 + }, + { + "bottom": 71, + "cf_class": null, + "cielab_a": 7.44190892048435, + "cielab_b": 31.7712099577674, + "cielab_l": 61.6063521148112, + "hzname": "2Bt3", + "matrix_dry_color_chroma": 5, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "cincinnati", + "srgb_b": 0.363348955847589, + "srgb_g": 0.559191853495347, + "srgb_r": 0.702207229538416, + "texture_class": "silty clay loam", + "top": 56 + }, + { + "bottom": 89, + "cf_class": null, + "cielab_a": 7.44190892048435, + "cielab_b": 31.7712099577674, + "cielab_l": 61.6063521148112, + "hzname": "3Bt4", + "matrix_dry_color_chroma": 5, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "cincinnati", + "srgb_b": 0.363348955847589, + "srgb_g": 0.559191853495347, + "srgb_r": 0.702207229538416, + "texture_class": "loam", + "top": 71 + }, + { + "bottom": 114, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "3Btx1", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "cincinnati", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "clay loam", + "top": 89 + }, + { + "bottom": 132, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "3Btx2", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "cincinnati", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "clay loam", + "top": 114 + }, + { + "bottom": 147, + "cf_class": null, + "cielab_a": 7.44190892048435, + "cielab_b": 31.7712099577674, + "cielab_l": 61.6063521148112, + "hzname": "3B't", + "matrix_dry_color_chroma": 5, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "cincinnati", + "srgb_b": 0.363348955847589, + "srgb_g": 0.559191853495347, + "srgb_r": 0.702207229538416, + "texture_class": "clay loam", + "top": 132 + }, + { + "bottom": 229, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "3BC", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "cincinnati", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "clay loam", + "top": 147 + }, + { + "bottom": 292, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "3C", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "cincinnati", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "loam", + "top": 229 + }, + { + "bottom": 20, + "cf_class": null, + "cielab_a": 2.50542437533247, + "cielab_b": 13.2158439165934, + "cielab_l": 71.5385868490813, + "hzname": "Ap", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 7, + "series": "crosby", + "srgb_b": 0.593723155494692, + "srgb_g": 0.677858469484996, + "srgb_r": 0.74282064303885, + "texture_class": "silt loam", + "top": 0 + }, + { + "bottom": 28, + "cf_class": null, + "cielab_a": 2.89064271156414, + "cielab_b": 13.064616880291, + "cielab_l": 61.5701956263403, + "hzname": "BE", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "crosby", + "srgb_b": 0.493496194704249, + "srgb_g": 0.573230189582846, + "srgb_r": 0.638561136802744, + "texture_class": "silt loam", + "top": 20 + }, + { + "bottom": 36, + "cf_class": null, + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "Bt1", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "crosby", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "silt loam", + "top": 28 + }, + { + "bottom": 56, + "cf_class": null, + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "2Bt2", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "crosby", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "silty clay loam", + "top": 36 + }, + { + "bottom": 71, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "2Bt3", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "crosby", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "clay loam", + "top": 56 + }, + { + "bottom": 91, + "cf_class": null, + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "2BCt", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "crosby", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "loam", + "top": 71 + }, + { + "bottom": 200, + "cf_class": null, + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "2Cd", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "crosby", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "loam", + "top": 91 + }, + { + "bottom": 23, + "cf_class": null, + "cielab_a": 1.46898546730889, + "cielab_b": 6.1399480339165, + "cielab_l": 40.8982555194042, + "hzname": "Ap", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "cyclone", + "srgb_b": 0.339204032769121, + "srgb_g": 0.373572298991998, + "srgb_r": 0.403971386567422, + "texture_class": "silty clay loam", + "top": 0 + }, + { + "bottom": 36, + "cf_class": null, + "cielab_a": 2.22631909703591, + "cielab_b": 6.22623819927245, + "cielab_l": 30.2411403125398, + "hzname": "A", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 3, + "series": "cyclone", + "srgb_b": 0.24183809974853, + "srgb_g": 0.273363635444249, + "srgb_r": 0.30796985092764, + "texture_class": "silt loam", + "top": 23 + }, + { + "bottom": 51, + "cf_class": null, + "cielab_a": 2.05708107652991, + "cielab_b": 7.39527933622857, + "cielab_l": 61.5561381389081, + "hzname": "Btg1", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "cyclone", + "srgb_b": 0.532295580678949, + "srgb_g": 0.576317017162754, + "srgb_r": 0.618806641667538, + "texture_class": "silt loam", + "top": 36 + }, + { + "bottom": 96, + "cf_class": null, + "cielab_a": 2.89064271156414, + "cielab_b": 13.064616880291, + "cielab_l": 61.5701956263403, + "hzname": "Btg2", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "cyclone", + "srgb_b": 0.493496194704249, + "srgb_g": 0.573230189582846, + "srgb_r": 0.638561136802744, + "texture_class": "silty clay loam", + "top": 51 + }, + { + "bottom": 124, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "Bt1", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "cyclone", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "silty clay loam", + "top": 96 + }, + { + "bottom": 152, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "2Bt2", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "cyclone", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "loam", + "top": 124 + }, + { + "bottom": 178, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "2C", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "cyclone", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "loam", + "top": 152 + }, + { + "bottom": 25, + "cf_class": null, + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "Ap", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "fincastle", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "silt loam", + "top": 0 + }, + { + "bottom": 33, + "cf_class": null, + "cielab_a": 2.89064271156414, + "cielab_b": 13.064616880291, + "cielab_l": 61.5701956263403, + "hzname": "E", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "fincastle", + "srgb_b": 0.493496194704249, + "srgb_g": 0.573230189582846, + "srgb_r": 0.638561136802744, + "texture_class": "silt loam", + "top": 25 + }, + { + "bottom": 53, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "Bt1", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "fincastle", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "silty clay loam", + "top": 33 + }, + { + "bottom": 69, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "Bt2", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "fincastle", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "silty clay loam", + "top": 53 + }, + { + "bottom": 86, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "2Bt3", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "fincastle", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "clay loam", + "top": 69 + }, + { + "bottom": 127, + "cf_class": null, + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "2Bt4", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "fincastle", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "clay loam", + "top": 86 + }, + { + "bottom": 150, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "2BCt", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "fincastle", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "loam", + "top": 127 + }, + { + "bottom": 200, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "2Cd", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "fincastle", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "loam", + "top": 150 + }, + { + "bottom": 15, + "cf_class": null, + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "Ap", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "grayford", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "silt loam", + "top": 0 + }, + { + "bottom": 30, + "cf_class": null, + "cielab_a": 11.5014599916651, + "cielab_b": 28.325261542155, + "cielab_l": 61.597165598456, + "hzname": "Bt1", + "matrix_dry_color_chroma": 5, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 6, + "series": "grayford", + "srgb_b": 0.388850649681818, + "srgb_g": 0.549571672657322, + "srgb_r": 0.72119995788861, + "texture_class": "silt loam", + "top": 15 + }, + { + "bottom": 56, + "cf_class": null, + "cielab_a": 11.5014599916651, + "cielab_b": 28.325261542155, + "cielab_l": 61.597165598456, + "hzname": "Bt2", + "matrix_dry_color_chroma": 5, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 6, + "series": "grayford", + "srgb_b": 0.388850649681818, + "srgb_g": 0.549571672657322, + "srgb_r": 0.72119995788861, + "texture_class": "silt loam", + "top": 30 + }, + { + "bottom": 84, + "cf_class": null, + "cielab_a": 14.370614178725, + "cielab_b": 25.3306266515612, + "cielab_l": 61.5892714819434, + "hzname": "2Bt3", + "matrix_dry_color_chroma": 5, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 6, + "series": "grayford", + "srgb_b": 0.410532174406658, + "srgb_g": 0.542613618060401, + "srgb_r": 0.733485985406799, + "texture_class": "loam", + "top": 56 + }, + { + "bottom": 114, + "cf_class": null, + "cielab_a": 14.370614178725, + "cielab_b": 25.3306266515612, + "cielab_l": 61.5892714819434, + "hzname": "2Bt4", + "matrix_dry_color_chroma": 5, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 6, + "series": "grayford", + "srgb_b": 0.410532174406658, + "srgb_g": 0.542613618060401, + "srgb_r": 0.733485985406799, + "texture_class": "clay loam", + "top": 84 + }, + { + "bottom": 132, + "cf_class": null, + "cielab_a": 11.5287289701211, + "cielab_b": 19.945123635805, + "cielab_l": 61.5800946425975, + "hzname": "3Bt5", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 6, + "series": "grayford", + "srgb_b": 0.447454988119342, + "srgb_g": 0.550964051886174, + "srgb_r": 0.707333768098213, + "texture_class": "clay", + "top": 114 + }, + { + "bottom": 152, + "cf_class": null, + "cielab_a": null, + "cielab_b": null, + "cielab_l": null, + "hzname": "3R", + "matrix_dry_color_chroma": null, + "matrix_dry_color_hue": null, + "matrix_dry_color_value": null, + "series": "grayford", + "srgb_b": null, + "srgb_g": null, + "srgb_r": null, + "texture_class": null, + "top": 132 + }, + { + "bottom": 10, + "cf_class": null, + "cielab_a": 3.22690261250264, + "cielab_b": 12.65785928239, + "cielab_l": 51.3902579549971, + "hzname": "A", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "hennepin", + "srgb_b": 0.396431450662527, + "srgb_g": 0.470047004516309, + "srgb_r": 0.534105039939954, + "texture_class": "loam", + "top": 0 + }, + { + "bottom": 23, + "cf_class": null, + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "Bw1", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "hennepin", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "loam", + "top": 10 + }, + { + "bottom": 41, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "Bw2", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "hennepin", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "loam", + "top": 23 + }, + { + "bottom": 152, + "cf_class": null, + "cielab_a": 9.31189329898768, + "cielab_b": 22.4496446381707, + "cielab_l": 61.5870610331128, + "hzname": "C", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 6, + "series": "hennepin", + "srgb_b": 0.429645085489254, + "srgb_g": 0.556090686344839, + "srgb_r": 0.69835386071579, + "texture_class": "loam", + "top": 41 + }, + { + "bottom": 10, + "cf_class": null, + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "A", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "hickory", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "silt loam", + "top": 0 + }, + { + "bottom": 30, + "cf_class": null, + "cielab_a": 5.28169511492699, + "cielab_b": 25.8417685709422, + "cielab_l": 71.5656562524201, + "hzname": "E", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 7, + "series": "hickory", + "srgb_b": 0.504075369797917, + "srgb_g": 0.66878318014695, + "srgb_r": 0.788974560813402, + "texture_class": "silt loam", + "top": 10 + }, + { + "bottom": 43, + "cf_class": null, + "cielab_a": 7.44190892048435, + "cielab_b": 31.7712099577674, + "cielab_l": 61.6063521148112, + "hzname": "Bt1", + "matrix_dry_color_chroma": 5, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "hickory", + "srgb_b": 0.363348955847589, + "srgb_g": 0.559191853495347, + "srgb_r": 0.702207229538416, + "texture_class": "clay loam", + "top": 30 + }, + { + "bottom": 66, + "cf_class": null, + "cielab_a": 7.44190892048435, + "cielab_b": 31.7712099577674, + "cielab_l": 61.6063521148112, + "hzname": "Bt2", + "matrix_dry_color_chroma": 5, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "hickory", + "srgb_b": 0.363348955847589, + "srgb_g": 0.559191853495347, + "srgb_r": 0.702207229538416, + "texture_class": "clay loam", + "top": 43 + }, + { + "bottom": 89, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "Bt3", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "hickory", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "clay loam", + "top": 66 + }, + { + "bottom": 117, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "Bt4", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "hickory", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "clay loam", + "top": 89 + }, + { + "bottom": 147, + "cf_class": null, + "cielab_a": 5.28169511492699, + "cielab_b": 25.8417685709422, + "cielab_l": 71.5656562524201, + "hzname": "BCt", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 7, + "series": "hickory", + "srgb_b": 0.504075369797917, + "srgb_g": 0.66878318014695, + "srgb_r": 0.788974560813402, + "texture_class": "loam", + "top": 117 + }, + { + "bottom": 165, + "cf_class": null, + "cielab_a": 7.44190892048435, + "cielab_b": 31.7712099577674, + "cielab_l": 61.6063521148112, + "hzname": "CB", + "matrix_dry_color_chroma": 5, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "hickory", + "srgb_b": 0.363348955847589, + "srgb_g": 0.559191853495347, + "srgb_r": 0.702207229538416, + "texture_class": "loam", + "top": 147 + }, + { + "bottom": 203, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "C", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "hickory", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "loam", + "top": 165 + }, + { + "bottom": 18, + "cf_class": null, + "cielab_a": 3.8855918773385, + "cielab_b": 19.5237210898253, + "cielab_l": 71.5528118511221, + "hzname": "Ap", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 7, + "series": "holton", + "srgb_b": 0.549113835485318, + "srgb_g": 0.673315953150733, + "srgb_r": 0.766909809664938, + "texture_class": "silt loam", + "top": 0 + }, + { + "bottom": 36, + "cf_class": null, + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "BA", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "holton", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "loam", + "top": 18 + }, + { + "bottom": 51, + "cf_class": null, + "cielab_a": 2.89064271156414, + "cielab_b": 13.064616880291, + "cielab_l": 61.5701956263403, + "hzname": "Bg1", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "holton", + "srgb_b": 0.493496194704249, + "srgb_g": 0.573230189582846, + "srgb_r": 0.638561136802744, + "texture_class": "fine sandy loam", + "top": 36 + }, + { + "bottom": 79, + "cf_class": null, + "cielab_a": 2.89064271156414, + "cielab_b": 13.064616880291, + "cielab_l": 61.5701956263403, + "hzname": "Bg2", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "holton", + "srgb_b": 0.493496194704249, + "srgb_g": 0.573230189582846, + "srgb_r": 0.638561136802744, + "texture_class": "fine sandy loam", + "top": 51 + }, + { + "bottom": 104, + "cf_class": null, + "cielab_a": 2.89064271156414, + "cielab_b": 13.064616880291, + "cielab_l": 61.5701956263403, + "hzname": "Bg3", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "holton", + "srgb_b": 0.493496194704249, + "srgb_g": 0.573230189582846, + "srgb_r": 0.638561136802744, + "texture_class": "fine sandy loam", + "top": 79 + }, + { + "bottom": 152, + "cf_class": null, + "cielab_a": 2.89064271156414, + "cielab_b": 13.064616880291, + "cielab_l": 61.5701956263403, + "hzname": "Cg", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "holton", + "srgb_b": 0.493496194704249, + "srgb_g": 0.573230189582846, + "srgb_r": 0.638561136802744, + "texture_class": "fine sandy loam", + "top": 104 + }, + { + "bottom": 20, + "cf_class": null, + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "Ap", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "jessietown", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "silt loam", + "top": 0 + }, + { + "bottom": 56, + "cf_class": null, + "cielab_a": 9.31189329898768, + "cielab_b": 22.4496446381707, + "cielab_l": 61.5870610331128, + "hzname": "Bt1", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 6, + "series": "jessietown", + "srgb_b": 0.429645085489254, + "srgb_g": 0.556090686344839, + "srgb_r": 0.69835386071579, + "texture_class": "silty clay loam", + "top": 20 + }, + { + "bottom": 76, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "Bt2", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "jessietown", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "silty clay loam", + "top": 56 + }, + { + "bottom": 86, + "cf_class": "channery", + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "2BC", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "jessietown", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "silty clay", + "top": 76 + }, + { + "bottom": 91, + "cf_class": null, + "cielab_a": 11.5287289701211, + "cielab_b": 19.945123635805, + "cielab_l": 61.5800946425975, + "hzname": "2Cr", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 6, + "series": "jessietown", + "srgb_b": 0.447454988119342, + "srgb_g": 0.550964051886174, + "srgb_r": 0.707333768098213, + "texture_class": null, + "top": 86 + }, + { + "bottom": 106, + "cf_class": null, + "cielab_a": 1.46898546730889, + "cielab_b": 6.1399480339165, + "cielab_l": 40.8982555194042, + "hzname": "2R", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "jessietown", + "srgb_b": 0.339204032769121, + "srgb_g": 0.373572298991998, + "srgb_r": 0.403971386567422, + "texture_class": null, + "top": 91 + }, + { + "bottom": 20, + "cf_class": null, + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "Ap", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "miami", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "silt loam", + "top": 0 + }, + { + "bottom": 33, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "Bt1", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "miami", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "silty clay loam", + "top": 20 + }, + { + "bottom": 58, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "2Bt2", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "miami", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "clay loam", + "top": 33 + }, + { + "bottom": 79, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "2Bt3", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "miami", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "clay loam", + "top": 58 + }, + { + "bottom": 91, + "cf_class": null, + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "2BCt", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "miami", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "loam", + "top": 79 + }, + { + "bottom": 200, + "cf_class": null, + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "2Cd", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "miami", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "loam", + "top": 91 + }, + { + "bottom": 20, + "cf_class": null, + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "Ap", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "rainsville", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "silt loam", + "top": 0 + }, + { + "bottom": 33, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "Bt1", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "rainsville", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "silt loam", + "top": 20 + }, + { + "bottom": 53, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "2Bt2", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "rainsville", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "clay loam", + "top": 33 + }, + { + "bottom": 76, + "cf_class": null, + "cielab_a": 9.31189329898768, + "cielab_b": 22.4496446381707, + "cielab_l": 61.5870610331128, + "hzname": "2Bt3", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 6, + "series": "rainsville", + "srgb_b": 0.429645085489254, + "srgb_g": 0.556090686344839, + "srgb_r": 0.69835386071579, + "texture_class": "loam", + "top": 53 + }, + { + "bottom": 107, + "cf_class": null, + "cielab_a": 11.5014599916651, + "cielab_b": 28.325261542155, + "cielab_l": 61.597165598456, + "hzname": "2Bt4", + "matrix_dry_color_chroma": 5, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 6, + "series": "rainsville", + "srgb_b": 0.388850649681818, + "srgb_g": 0.549571672657322, + "srgb_r": 0.72119995788861, + "texture_class": "loam", + "top": 76 + }, + { + "bottom": 122, + "cf_class": null, + "cielab_a": 2.13842469597725, + "cielab_b": 27.4679800212948, + "cielab_l": 61.6021478744143, + "hzname": "3Bt5", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 6, + "series": "rainsville", + "srgb_b": 0.392947209884661, + "srgb_g": 0.572418528215225, + "srgb_r": 0.662861082252112, + "texture_class": "loam", + "top": 107 + }, + { + "bottom": 152, + "cf_class": null, + "cielab_a": 2.13842469597725, + "cielab_b": 27.4679800212948, + "cielab_l": 61.6021478744143, + "hzname": "3Cd", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 6, + "series": "rainsville", + "srgb_b": 0.392947209884661, + "srgb_g": 0.572418528215225, + "srgb_r": 0.662861082252112, + "texture_class": "loam", + "top": 122 + }, + { + "bottom": 25, + "cf_class": null, + "cielab_a": 3.86763232791851, + "cielab_b": 12.0707341532888, + "cielab_l": 30.2538633743581, + "hzname": "Ap", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 3, + "series": "treaty", + "srgb_b": 0.20664306477238, + "srgb_g": 0.268954612150501, + "srgb_r": 0.328393328197016, + "texture_class": "silty clay loam", + "top": 0 + }, + { + "bottom": 36, + "cf_class": null, + "cielab_a": 2.22631909703591, + "cielab_b": 6.22623819927245, + "cielab_l": 30.2411403125398, + "hzname": "A", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 3, + "series": "treaty", + "srgb_b": 0.24183809974853, + "srgb_g": 0.273363635444249, + "srgb_r": 0.30796985092764, + "texture_class": "silty clay loam", + "top": 25 + }, + { + "bottom": 56, + "cf_class": null, + "cielab_a": 0.680039824635603, + "cielab_b": 14.3263472503311, + "cielab_l": 61.5747851305097, + "hzname": "Btg1", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 6, + "series": "treaty", + "srgb_b": 0.484462289310216, + "srgb_g": 0.578016804839716, + "srgb_r": 0.626868011624415, + "texture_class": "silty clay loam", + "top": 36 + }, + { + "bottom": 91, + "cf_class": null, + "cielab_a": 0.680039824635603, + "cielab_b": 14.3263472503311, + "cielab_l": 61.5747851305097, + "hzname": "Btg2", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 6, + "series": "treaty", + "srgb_b": 0.484462289310216, + "srgb_g": 0.578016804839716, + "srgb_r": 0.626868011624415, + "texture_class": "silty clay loam", + "top": 56 + }, + { + "bottom": 150, + "cf_class": null, + "cielab_a": 2.05708107652991, + "cielab_b": 7.39527933622857, + "cielab_l": 61.5561381389081, + "hzname": "2Btg3", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "treaty", + "srgb_b": 0.532295580678949, + "srgb_g": 0.576317017162754, + "srgb_r": 0.618806641667538, + "texture_class": "loam", + "top": 91 + }, + { + "bottom": 178, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "2C", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "treaty", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "loam", + "top": 150 + }, + { + "bottom": 23, + "cf_class": null, + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "Ap", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "williamstown", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "silt loam", + "top": 0 + }, + { + "bottom": 46, + "cf_class": null, + "cielab_a": 7.44190892048435, + "cielab_b": 31.7712099577674, + "cielab_l": 61.6063521148112, + "hzname": "2Bt1", + "matrix_dry_color_chroma": 5, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "williamstown", + "srgb_b": 0.363348955847589, + "srgb_g": 0.559191853495347, + "srgb_r": 0.702207229538416, + "texture_class": "clay loam", + "top": 23 + }, + { + "bottom": 84, + "cf_class": null, + "cielab_a": 7.44190892048435, + "cielab_b": 31.7712099577674, + "cielab_l": 61.6063521148112, + "hzname": "2Bt2", + "matrix_dry_color_chroma": 5, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "williamstown", + "srgb_b": 0.363348955847589, + "srgb_g": 0.559191853495347, + "srgb_r": 0.702207229538416, + "texture_class": "clay loam", + "top": 46 + }, + { + "bottom": 94, + "cf_class": null, + "cielab_a": 7.44190892048435, + "cielab_b": 31.7712099577674, + "cielab_l": 61.6063521148112, + "hzname": "2BCt", + "matrix_dry_color_chroma": 5, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "williamstown", + "srgb_b": 0.363348955847589, + "srgb_g": 0.559191853495347, + "srgb_r": 0.702207229538416, + "texture_class": "loam", + "top": 84 + }, + { + "bottom": 203, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "2Cd", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "williamstown", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "loam", + "top": 94 + }, + { + "bottom": 25, + "cf_class": null, + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "Ap", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "xenia", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "silt loam", + "top": 0 + }, + { + "bottom": 46, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "Bt1", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "xenia", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "silty clay loam", + "top": 25 + }, + { + "bottom": 76, + "cf_class": null, + "cielab_a": 7.44190892048435, + "cielab_b": 31.7712099577674, + "cielab_l": 61.6063521148112, + "hzname": "Bt2", + "matrix_dry_color_chroma": 5, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "xenia", + "srgb_b": 0.363348955847589, + "srgb_g": 0.559191853495347, + "srgb_r": 0.702207229538416, + "texture_class": "silty clay loam", + "top": 46 + }, + { + "bottom": 127, + "cf_class": null, + "cielab_a": 7.44190892048435, + "cielab_b": 31.7712099577674, + "cielab_l": 61.6063521148112, + "hzname": "2Bt3", + "matrix_dry_color_chroma": 5, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "xenia", + "srgb_b": 0.363348955847589, + "srgb_g": 0.559191853495347, + "srgb_r": 0.702207229538416, + "texture_class": "clay loam", + "top": 76 + }, + { + "bottom": 147, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "2BCt", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "xenia", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "loam", + "top": 127 + }, + { + "bottom": 183, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "2Cd1", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "xenia", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "loam", + "top": 147 + }, + { + "bottom": 200, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "2Cd2", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "xenia", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "loam", + "top": 183 + } + ], + "OSD_narrative": [ + { + "brief_narrative": "The Bonnell series consists of very deep, well drained soils that formed in less than 46 cm (18 inches) of loess or loamy materials and the underlying till. These soils are on dissected till plains. Slope ranges from 6 to 60 percent. Mean annual precipitation is about 1067 mm (42 inches), and mean annual temperature is about 12 degrees C (54 degrees F).", + "series": "bonnell" + }, + { + "brief_narrative": "The Brookston series consists of very deep, poorly drained soils formed in as much as 51 cm (20 inches) of silty material and the underlying loamy till in depressions on till plains and moraines. Slope ranges from 0 to 3 percent. Mean annual precipitation is about 889 mm (35 inches), and mean annual temperature is about 10.0 degrees C (50 degrees F).", + "series": "brookston" + }, + { + "brief_narrative": "The Celina series consists of very deep, moderately well drained soils that are moderately deep to dense till. They formed in as much as 46 cm (18 inches) of loess and the underlying loamy till of high-lime content. They are on till plains and moraines. Slope ranges from 0 to 12 percent. Mean annual precipitation is about 965 mm (38 inches), and mean annual air temperature is about 12 degrees C (53 degree F).", + "series": "celina" + }, + { + "brief_narrative": "The Cincinnati series consists of very deep, well drained soils that are moderately deep to a fragipan. These soils formed in a mantle of loess, a thin layer of pedisediment, and a paleosol formed in the underlying till. They are on till plains. Slope ranges from 1 to 18 percent. Mean annual precipitation is about 1016 mm (40 inches), and mean annual air temperature is about 12 degrees C (54 degrees F).", + "series": "cincinnati" + }, + { + "brief_narrative": "The Crosby series consists of very deep, somewhat poorly drained soils that are moderately deep to dense till. Crosby soils formed in as much as 56 cm (22 inches) of loess or other silty material and in the underlying loamy till. They are on till plains. Slope ranges from 0 to 6 percent. Mean annual precipitation is about 1016 mm (40 inches), and mean annual temperature is about 10.6 degrees C (51 degrees F).", + "series": "crosby" + }, + { + "brief_narrative": "The Cyclone series consists of very deep, poorly drained soils that formed in loess or silty material and in the underlying drift. Cyclone soils are on till plains. Slope ranges from 0 to 2 percent. Mean annual precipitation is about 991 mm (39 inches), and mean annual temperature is about 10.6 degrees C (51 degrees F).", + "series": "cyclone" + }, + { + "brief_narrative": "The Fincastle series consists of very deep, somewhat poorly drained soils that are deep to dense till. Fincastle soils formed in loess or other silty material and in the underlying loamy till. They are on till plains. Slope ranges from 0 to 6 percent. Mean annual precipitation is about 1016 mm (40 inches), and mean annual temperature is about 10.6 degrees C (51 degrees F).", + "series": "fincastle" + }, + { + "brief_narrative": "The Grayford series consists of deep, well drained soils formed in less than 56 cm (22 inches) of loess and in the underlying till of Illinoian age and residuum from limestone. They are on dissected till plains and sinkholes. Slope ranges from 2 to 35 percent. Mean annual precipitation is about 1016 mm (40 inches), and mean annual temperature is about 13 degrees C (55 degrees F).", + "series": "grayford" + }, + { + "brief_narrative": "The Hennepin series consists of very deep, well drained soils formed in calcareous glacial till. These soils are on upland side slopes that border stream valleys and on moraines. Permeability is moderate or moderately slow. Slopes range from 10 to 70 percent. Mean annual temperature is about 52 degrees F, and mean annual precipitation is about 35 inches.", + "series": "hennepin" + }, + { + "brief_narrative": "The Hickory series consists of very deep, well drained, soils on dissected till plains. They formed in till that can be capped with up to 20 inches of loess. Slope ranges from 5 to 70 percent. Mean annual air temperature is about 54 degrees F., and mean annual precipitation is about 40 inches.", + "series": "hickory" + }, + { + "brief_narrative": "The Holton Series consists of very deep, somewhat poorly drained soils formed in loamy alluvium on flood plains. Slope ranges from 0 to 2 percent. Mean annual precipitation is about 1067 mm (42 inches), and mean annual temperature is about 11 degrees C (52 degrees F).", + "series": "holton" + }, + { + "brief_narrative": "The Jessietown series consists of moderately deep, well drained soils formed in a thin mantle of silty material and residuum weathered from black fissile shale. Permeability is moderate. These gently sloping to steep soils are on upland ridges, side slopes, and toe slopes. Slopes range from 2 to 30 percent. The mean annual temperature is about 57 degrees F, and the mean annual precipitation is about 46 inches.", + "series": "jessietown" + }, + { + "brief_narrative": "The Miami series consists of very deep, moderately well drained soils that are moderately deep to dense till. Miami soils formed in as much as 46 cm (18 inches) of loess or silty material and in the underlying loamy till. They are on till plains. Slope ranges from 0 to 60 percent. Mean annual precipitation is 1016 mm (40 inches), and mean annual temperature is 11.1 degrees C (52 degrees F).", + "series": "miami" + }, + { + "brief_narrative": "The Rainsville series consists of very deep, moderately well drained soils that are deep or very deep to dense till. The Rainsville soils formed in as much as 51 cm (20 inches) of loess or other silty material and in the underlying loamy outwash and till. They are on ground moraines and end moraines. Slope ranges from 0 to 12 percent. Mean annual precipitation is about 940 mm (37 inches), and mean annual air temperature is about 11 degrees C (51 degrees F).", + "series": "rainsville" + }, + { + "brief_narrative": "The Treaty series consists of very deep, poorly drained soils that formed in loess and in the underlying loamy till. The Treaty soils are in depressions on till plains. Slope ranges from 0 to 2 percent. Mean annual precipitation is about 965 mm (38 inches), and mean annual air temperature is about 11 degrees C (51 degrees F).", + "series": "treaty" + }, + { + "brief_narrative": "The Williamstown series consists of very deep, moderately well drained soils that are moderately deep to dense till. The soils formed in as much as 56 cm (22 inches) of loess and in the underlying loamy till. They are on till plains. Slope ranges from 0 to 12 percent. Mean annual precipitation is about 1016 mm (40 inches), and mean annual air temperature is about 11.1 degrees C (52 degrees F).", + "series": "williamstown" + }, + { + "brief_narrative": "The Xenia series consists of very deep, moderately well drained soils that are deep or very deep to dense till. Xenia soils formed in loess or other silty material and in the underlying loamy till on till plains. Slope ranges from 0 to 12 percent. Mean annual precipitation is about 1067 mm (42 inches), and mean annual temperature is about 11.1 degrees C (52 degrees F).", + "series": "xenia" + } + ], + "hz": [ + { + "cec7_h": 18.8, + "cec7_l": 14.4, + "cec7_r": 15.6, + "chkey": 79917921, + "claytotal_h": 35, + "claytotal_l": 27, + "claytotal_r": 29, + "cokey": 26772445, + "dbovendry_h": 1.64, + "dbovendry_l": 1.55, + "dbovendry_r": 1.58, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 15, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 4.6, + "lep_l": 2.7, + "lep_r": 3.3, + "mukey": 162397, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.5, + "sandtotal_h": 45, + "sandtotal_l": 20, + "sandtotal_r": 28, + "silttotal_h": 52, + "silttotal_l": 20, + "silttotal_r": 43, + "total_frag_volume": 3, + "wfifteenbar_h": 23.5, + "wfifteenbar_l": 16, + "wfifteenbar_r": 18.8, + "wthirdbar_h": 34.8, + "wthirdbar_l": 28.7, + "wthirdbar_r": 31.6 + }, + { + "cec7_h": 18.6, + "cec7_l": 14.1, + "cec7_r": 16.4, + "chkey": 79917922, + "claytotal_h": 35, + "claytotal_l": 27, + "claytotal_r": 31, + "cokey": 26772445, + "dbovendry_h": 1.68, + "dbovendry_l": 1.57, + "dbovendry_r": 1.63, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 73, + "hzdept_r": 15, + "hzname": "Bt", + "lep_h": 4.6, + "lep_l": 2.5, + "lep_r": 3.6, + "mukey": 162397, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 6.1, + "sandtotal_h": 40, + "sandtotal_l": 15, + "sandtotal_r": 31, + "silttotal_h": 54, + "silttotal_l": 25, + "silttotal_r": 38, + "total_frag_volume": 4, + "wfifteenbar_h": 22.4, + "wfifteenbar_l": 14.2, + "wfifteenbar_r": 18.9, + "wthirdbar_h": 34.3, + "wthirdbar_l": 26.2, + "wthirdbar_r": 31.4 + }, + { + "cec7_h": 11.1, + "cec7_l": 7.8, + "cec7_r": 10.5, + "chkey": 79917923, + "claytotal_h": 25, + "claytotal_l": 15, + "claytotal_r": 22, + "cokey": 26772445, + "dbovendry_h": 1.82, + "dbovendry_l": 1.68, + "dbovendry_r": 1.78, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 86, + "hzdept_r": 73, + "hzname": "BCt", + "lep_h": 2.2, + "lep_l": 0.8, + "lep_r": 1.4, + "mukey": 162397, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.4, + "sandtotal_h": 55, + "sandtotal_l": 35, + "sandtotal_r": 38, + "silttotal_h": 50, + "silttotal_l": 25, + "silttotal_r": 40, + "total_frag_volume": 6, + "wfifteenbar_h": 17.5, + "wfifteenbar_l": 8.8, + "wfifteenbar_r": 14.4, + "wthirdbar_h": 31.2, + "wthirdbar_l": 22.1, + "wthirdbar_r": 28.2 + }, + { + "cec7_h": 8, + "cec7_l": 4.6, + "cec7_r": 6.3, + "chkey": 79917924, + "claytotal_h": 20, + "claytotal_l": 10, + "claytotal_r": 15, + "cokey": 26772445, + "dbovendry_h": 2.05, + "dbovendry_l": 1.8, + "dbovendry_r": 1.9, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 86, + "hzname": "Cd", + "lep_h": 1, + "lep_l": 0.3, + "lep_r": 0.9, + "mukey": 162397, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.9, + "sandtotal_h": 60, + "sandtotal_l": 35, + "sandtotal_r": 45, + "silttotal_h": 50, + "silttotal_l": 22, + "silttotal_r": 40, + "total_frag_volume": 6, + "wfifteenbar_h": 15.5, + "wfifteenbar_l": 6.2, + "wfifteenbar_r": 10.9, + "wthirdbar_h": 30, + "wthirdbar_l": 15, + "wthirdbar_r": 25.6 + }, + { + "cec7_h": 14.1, + "cec7_l": 3.8, + "cec7_r": 9.8, + "chkey": 79917913, + "claytotal_h": 24, + "claytotal_l": 7, + "claytotal_r": 18, + "cokey": 26772443, + "dbovendry_h": 1.66, + "dbovendry_l": 1.36, + "dbovendry_r": 1.51, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 23, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 2.4, + "lep_l": 0.4, + "lep_r": 1.4, + "mukey": 162396, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.5, + "sandtotal_h": 36.8, + "sandtotal_l": 9, + "sandtotal_r": 18, + "silttotal_h": 84, + "silttotal_l": 40.6, + "silttotal_r": 64, + "total_frag_volume": 2, + "wfifteenbar_h": 19, + "wfifteenbar_l": 5.1, + "wfifteenbar_r": 12.8, + "wthirdbar_h": 32.3, + "wthirdbar_l": 19.3, + "wthirdbar_r": 27.8 + }, + { + "cec7_h": 18.4, + "cec7_l": 13.6, + "cec7_r": 16.2, + "chkey": 79917912, + "claytotal_h": 35, + "claytotal_l": 27, + "claytotal_r": 31, + "cokey": 26772443, + "dbovendry_h": 1.74, + "dbovendry_l": 1.55, + "dbovendry_r": 1.7, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 61, + "hzdept_r": 23, + "hzname": "2Bt", + "lep_h": 3.8, + "lep_l": 2.3, + "lep_r": 3.1, + "mukey": 162396, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 5.5, + "sandtotal_h": 40, + "sandtotal_l": 15, + "sandtotal_r": 31, + "silttotal_h": 54.5, + "silttotal_l": 25, + "silttotal_r": 38, + "total_frag_volume": 4, + "wfifteenbar_h": 22.2, + "wfifteenbar_l": 14.1, + "wfifteenbar_r": 18.9, + "wthirdbar_h": 34.1, + "wthirdbar_l": 26.1, + "wthirdbar_r": 31.5 + }, + { + "cec7_h": 14.8, + "cec7_l": 7.6, + "cec7_r": 12.6, + "chkey": 79917914, + "claytotal_h": 28, + "claytotal_l": 15, + "claytotal_r": 24, + "cokey": 26772443, + "dbovendry_h": 1.86, + "dbovendry_l": 1.72, + "dbovendry_r": 1.82, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 71, + "hzdept_r": 61, + "hzname": "2BC", + "lep_h": 2.8, + "lep_l": 1, + "lep_r": 2.1, + "mukey": 162396, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.4, + "sandtotal_h": 55, + "sandtotal_l": 35, + "sandtotal_r": 38, + "silttotal_h": 50, + "silttotal_l": 21.5, + "silttotal_r": 38, + "total_frag_volume": 6, + "wfifteenbar_h": 19.5, + "wfifteenbar_l": 8.6, + "wfifteenbar_r": 15.7, + "wthirdbar_h": 32.4, + "wthirdbar_l": 22, + "wthirdbar_r": 29.1 + }, + { + "cec7_h": 10.6, + "cec7_l": 5.1, + "cec7_r": 7.9, + "chkey": 79917911, + "claytotal_h": 20, + "claytotal_l": 10, + "claytotal_r": 15, + "cokey": 26772443, + "dbovendry_h": 2.07, + "dbovendry_l": 1.82, + "dbovendry_r": 1.92, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 152, + "hzdept_r": 71, + "hzname": "Cd", + "lep_h": 1.7, + "lep_l": 0.6, + "lep_r": 1.1, + "mukey": 162396, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.9, + "sandtotal_h": 60, + "sandtotal_l": 35, + "sandtotal_r": 45, + "silttotal_h": 55, + "silttotal_l": 22.5, + "silttotal_r": 40, + "total_frag_volume": 7, + "wfifteenbar_h": 17.4, + "wfifteenbar_l": 7, + "wfifteenbar_r": 12.1, + "wthirdbar_h": 25.1, + "wthirdbar_l": 15.2, + "wthirdbar_r": 20.6 + }, + { + "cec7_h": 12.1, + "cec7_l": 8.1, + "cec7_r": 11, + "chkey": 79917813, + "claytotal_h": 27, + "claytotal_l": 15, + "claytotal_r": 20, + "cokey": 26772420, + "dbovendry_h": 1.55, + "dbovendry_l": 1.3, + "dbovendry_r": 1.42, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 8, + "hzdept_r": 0, + "hzname": "A", + "lep_h": 2.6, + "lep_l": 0.8, + "lep_r": 1.4, + "mukey": 162386, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 7, + "sandtotal_h": 80, + "sandtotal_l": 25, + "sandtotal_r": 35, + "silttotal_h": 60, + "silttotal_l": 5, + "silttotal_r": 45, + "total_frag_volume": 6, + "wfifteenbar_h": 20.8, + "wfifteenbar_l": 8.5, + "wfifteenbar_r": 15.2, + "wthirdbar_h": 33.4, + "wthirdbar_l": 22.9, + "wthirdbar_r": 28.9 + }, + { + "cec7_h": 18.8, + "cec7_l": 14.4, + "cec7_r": 15.6, + "chkey": 79917931, + "claytotal_h": 35, + "claytotal_l": 27, + "claytotal_r": 29, + "cokey": 26772447, + "dbovendry_h": 1.71, + "dbovendry_l": 1.61, + "dbovendry_r": 1.65, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 15, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 4.6, + "lep_l": 2.7, + "lep_r": 3.3, + "mukey": 162398, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.5, + "sandtotal_h": 45, + "sandtotal_l": 20, + "sandtotal_r": 27, + "silttotal_h": 53, + "silttotal_l": 28, + "silttotal_r": 44, + "total_frag_volume": 3, + "wfifteenbar_h": 24.4, + "wfifteenbar_l": 16.7, + "wfifteenbar_r": 19.5, + "wthirdbar_h": 35.3, + "wthirdbar_l": 29.2, + "wthirdbar_r": 32 + }, + { + "cec7_h": 9.6, + "cec7_l": 8.1, + "cec7_r": 8.1, + "chkey": 79917814, + "claytotal_h": 30, + "claytotal_l": 18, + "claytotal_r": 22, + "cokey": 26772420, + "dbovendry_h": 1.67, + "dbovendry_l": 1.41, + "dbovendry_r": 1.54, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 36, + "hzdept_r": 8, + "hzname": "Bw", + "lep_h": 2.7, + "lep_l": 0.4, + "lep_r": 1.3, + "mukey": 162386, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 7.3, + "sandtotal_h": 70, + "sandtotal_l": 17, + "sandtotal_r": 33, + "silttotal_h": 65, + "silttotal_l": 12, + "silttotal_r": 45, + "total_frag_volume": 6, + "wfifteenbar_h": 18.9, + "wfifteenbar_l": 10.1, + "wfifteenbar_r": 13.1, + "wthirdbar_h": 32.3, + "wthirdbar_l": 24.2, + "wthirdbar_r": 27.3 + }, + { + "cec7_h": 18.6, + "cec7_l": 14.1, + "cec7_r": 16.4, + "chkey": 79917932, + "claytotal_h": 35, + "claytotal_l": 27, + "claytotal_r": 31, + "cokey": 26772447, + "dbovendry_h": 1.71, + "dbovendry_l": 1.61, + "dbovendry_r": 1.66, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 73, + "hzdept_r": 15, + "hzname": "Bt", + "lep_h": 4.5, + "lep_l": 2.6, + "lep_r": 3.6, + "mukey": 162398, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 6.1, + "sandtotal_h": 40, + "sandtotal_l": 15, + "sandtotal_r": 31, + "silttotal_h": 50, + "silttotal_l": 30, + "silttotal_r": 38, + "total_frag_volume": 4, + "wfifteenbar_h": 23, + "wfifteenbar_l": 14.6, + "wfifteenbar_r": 19.4, + "wthirdbar_h": 34.5, + "wthirdbar_l": 26.5, + "wthirdbar_r": 31.8 + }, + { + "cec7_h": 3.6, + "cec7_l": 1.6, + "cec7_r": 1.6, + "chkey": 79917815, + "claytotal_h": 28, + "claytotal_l": 12, + "claytotal_r": 15, + "cokey": 26772420, + "dbovendry_h": 1.69, + "dbovendry_l": 1.45, + "dbovendry_r": 1.57, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 152, + "hzdept_r": 36, + "hzname": "C", + "lep_h": 1, + "lep_l": 0, + "lep_r": 0.1, + "mukey": 162386, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.9, + "sandtotal_h": 70, + "sandtotal_l": 17, + "sandtotal_r": 45, + "silttotal_h": 70, + "silttotal_l": 12, + "silttotal_r": 40, + "total_frag_volume": 9, + "wfifteenbar_h": 17.7, + "wfifteenbar_l": 6.3, + "wfifteenbar_r": 8.7, + "wthirdbar_h": 31.6, + "wthirdbar_l": 19.5, + "wthirdbar_r": 23.1 + }, + { + "cec7_h": 11.1, + "cec7_l": 7.8, + "cec7_r": 10.5, + "chkey": 79917933, + "claytotal_h": 25, + "claytotal_l": 15, + "claytotal_r": 22, + "cokey": 26772447, + "dbovendry_h": 1.82, + "dbovendry_l": 1.68, + "dbovendry_r": 1.78, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 86, + "hzdept_r": 73, + "hzname": "BCt", + "lep_h": 2.2, + "lep_l": 0.9, + "lep_r": 1.4, + "mukey": 162398, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.4, + "sandtotal_h": 55, + "sandtotal_l": 35, + "sandtotal_r": 38, + "silttotal_h": 45, + "silttotal_l": 30, + "silttotal_r": 40, + "total_frag_volume": 6, + "wfifteenbar_h": 17.5, + "wfifteenbar_l": 8.8, + "wfifteenbar_r": 14.4, + "wthirdbar_h": 31.2, + "wthirdbar_l": 22.1, + "wthirdbar_r": 28.2 + }, + { + "cec7_h": 8, + "cec7_l": 4.6, + "cec7_r": 6.3, + "chkey": 79917934, + "claytotal_h": 20, + "claytotal_l": 10, + "claytotal_r": 15, + "cokey": 26772447, + "dbovendry_h": 2.05, + "dbovendry_l": 1.8, + "dbovendry_r": 1.9, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 86, + "hzname": "Cd", + "lep_h": 1, + "lep_l": 0.3, + "lep_r": 0.9, + "mukey": 162398, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.9, + "sandtotal_h": 60, + "sandtotal_l": 35, + "sandtotal_r": 45, + "silttotal_h": 50, + "silttotal_l": 30, + "silttotal_r": 40, + "total_frag_volume": 7, + "wfifteenbar_h": 15.5, + "wfifteenbar_l": 6.2, + "wfifteenbar_r": 10.8, + "wthirdbar_h": 30, + "wthirdbar_l": 15, + "wthirdbar_r": 25.4 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79917829, + "claytotal_h": 20, + "claytotal_l": 9, + "claytotal_r": 13, + "cokey": 26772425, + "dbovendry_h": 1.53, + "dbovendry_l": 1.33, + "dbovendry_r": 1.43, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 5.2, + "ecec_l": 1.9, + "ecec_r": 3, + "hzdepb_r": 10, + "hzdept_r": 0, + "hzname": "A", + "lep_h": 0.9, + "lep_l": 0.3, + "lep_r": 0.6, + "mukey": 162389, + "ph1to1h2o_h": 6, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 5, + "sandtotal_h": 50, + "sandtotal_l": 30, + "sandtotal_r": 42, + "silttotal_h": 50, + "silttotal_l": 30, + "silttotal_r": 45, + "total_frag_volume": 2, + "wfifteenbar_h": 18.9, + "wfifteenbar_l": 8.1, + "wfifteenbar_r": 13.3, + "wthirdbar_h": 32.3, + "wthirdbar_l": 22.3, + "wthirdbar_r": 28.1 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79917833, + "claytotal_h": 20, + "claytotal_l": 9, + "claytotal_r": 13, + "cokey": 26772425, + "dbovendry_h": 1.61, + "dbovendry_l": 1.37, + "dbovendry_r": 1.47, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 27.9, + "ecec_l": 8.1, + "ecec_r": 15.8, + "hzdepb_r": 28, + "hzdept_r": 10, + "hzname": "E", + "lep_h": 4.7, + "lep_l": 0.8, + "lep_r": 1.7, + "mukey": 162389, + "ph1to1h2o_h": 6, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 5, + "sandtotal_h": 50, + "sandtotal_l": 30, + "sandtotal_r": 42, + "silttotal_h": 50, + "silttotal_l": 30, + "silttotal_r": 45, + "total_frag_volume": 2, + "wfifteenbar_h": 18.9, + "wfifteenbar_l": 8.1, + "wfifteenbar_r": 13.3, + "wthirdbar_h": 32.3, + "wthirdbar_l": 22.3, + "wthirdbar_r": 28.1 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79917832, + "claytotal_h": 35, + "claytotal_l": 24, + "claytotal_r": 31, + "cokey": 26772425, + "dbovendry_h": 1.75, + "dbovendry_l": 1.58, + "dbovendry_r": 1.68, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 18.1, + "ecec_l": 7.9, + "ecec_r": 11.5, + "hzdepb_r": 97, + "hzdept_r": 28, + "hzname": "Bt", + "lep_h": 4, + "lep_l": 1.4, + "lep_r": 2.5, + "mukey": 162389, + "ph1to1h2o_h": 6, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 5.3, + "sandtotal_h": 45, + "sandtotal_l": 20, + "sandtotal_r": 30, + "silttotal_h": 50, + "silttotal_l": 30, + "silttotal_r": 39, + "total_frag_volume": 5, + "wfifteenbar_h": 23.4, + "wfifteenbar_l": 12.9, + "wfifteenbar_r": 19.5, + "wthirdbar_h": 34.8, + "wthirdbar_l": 24.8, + "wthirdbar_r": 31.6 + }, + { + "cec7_h": 16.9, + "cec7_l": 7.6, + "cec7_r": 12.6, + "chkey": 79917830, + "claytotal_h": 32, + "claytotal_l": 15, + "claytotal_r": 24, + "cokey": 26772425, + "dbovendry_h": 1.81, + "dbovendry_l": 1.61, + "dbovendry_r": 1.71, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 112, + "hzdept_r": 97, + "hzname": "BCt", + "lep_h": 3.9, + "lep_l": 1, + "lep_r": 2.1, + "mukey": 162389, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 6.5, + "sandtotal_h": 50, + "sandtotal_l": 25, + "sandtotal_r": 40, + "silttotal_h": 50, + "silttotal_l": 30, + "silttotal_r": 36, + "total_frag_volume": 6, + "wfifteenbar_h": 21.2, + "wfifteenbar_l": 7.8, + "wfifteenbar_r": 14.8, + "wthirdbar_h": 33.6, + "wthirdbar_l": 20.6, + "wthirdbar_r": 28.6 + }, + { + "cec7_h": 15.8, + "cec7_l": 7.6, + "cec7_r": 10.5, + "chkey": 79917831, + "claytotal_h": 30, + "claytotal_l": 15, + "claytotal_r": 20, + "cokey": 26772425, + "dbovendry_h": 1.81, + "dbovendry_l": 1.57, + "dbovendry_r": 1.7, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 112, + "hzname": "C", + "lep_h": 3.4, + "lep_l": 1, + "lep_r": 1.4, + "mukey": 162389, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.8, + "sandtotal_h": 60, + "sandtotal_l": 25, + "sandtotal_r": 40, + "silttotal_h": 50, + "silttotal_l": 25, + "silttotal_r": 40, + "total_frag_volume": 6, + "wfifteenbar_h": 19.9, + "wfifteenbar_l": 8, + "wfifteenbar_r": 12.7, + "wthirdbar_h": 32.5, + "wthirdbar_l": 20.9, + "wthirdbar_r": 27 + }, + { + "cec7_h": 17.3, + "cec7_l": 8.2, + "cec7_r": 12.4, + "chkey": 79918134, + "claytotal_h": 20, + "claytotal_l": 9, + "claytotal_r": 14, + "cokey": 26772497, + "dbovendry_h": 1.72, + "dbovendry_l": 1.27, + "dbovendry_r": 1.52, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 23, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 2.5, + "lep_l": 0.9, + "lep_r": 1.5, + "mukey": 162416, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.5, + "sandtotal_h": 22, + "sandtotal_l": 5, + "sandtotal_r": 10, + "silttotal_h": 82, + "silttotal_l": 67, + "silttotal_r": 76, + "total_frag_volume": 0, + "wfifteenbar_h": 15.6, + "wfifteenbar_l": 7.3, + "wfifteenbar_r": 11.2, + "wthirdbar_h": 30.2, + "wthirdbar_l": 23.1, + "wthirdbar_r": 26.8 + }, + { + "cec7_h": 18.8, + "cec7_l": 7.5, + "cec7_r": 10.2, + "chkey": 79918130, + "claytotal_h": 35, + "claytotal_l": 14, + "claytotal_r": 19, + "cokey": 26772496, + "dbovendry_h": 1.67, + "dbovendry_l": 1.37, + "dbovendry_r": 1.52, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 23, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 4.6, + "lep_l": 1, + "lep_r": 1.6, + "mukey": 162415, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 6.2, + "sandtotal_h": 40, + "sandtotal_l": 10, + "sandtotal_r": 24, + "silttotal_h": 76, + "silttotal_l": 25, + "silttotal_r": 57, + "total_frag_volume": 3, + "wfifteenbar_h": 22.8, + "wfifteenbar_l": 8.1, + "wfifteenbar_r": 12, + "wthirdbar_h": 34.5, + "wthirdbar_l": 22.1, + "wthirdbar_r": 27 + }, + { + "cec7_h": 14.1, + "cec7_l": 3.8, + "cec7_r": 9.8, + "chkey": 79917884, + "claytotal_h": 26, + "claytotal_l": 7, + "claytotal_r": 18, + "cokey": 26772437, + "dbovendry_h": 1.67, + "dbovendry_l": 1.37, + "dbovendry_r": 1.52, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 17, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 2.8, + "lep_l": 0.4, + "lep_r": 1.5, + "mukey": 162395, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 5.9, + "sandtotal_h": 36.8, + "sandtotal_l": 9.1, + "sandtotal_r": 18, + "silttotal_h": 78.1, + "silttotal_l": 51.3, + "silttotal_r": 64, + "total_frag_volume": 0, + "wfifteenbar_h": 19, + "wfifteenbar_l": 5.5, + "wfifteenbar_r": 13.1, + "wthirdbar_h": 32.3, + "wthirdbar_l": 20.8, + "wthirdbar_r": 28.4 + }, + { + "cec7_h": 14.2, + "cec7_l": 3.8, + "cec7_r": 9.8, + "chkey": 79917871, + "claytotal_h": 26.1, + "claytotal_l": 7, + "claytotal_r": 18, + "cokey": 26772435, + "dbovendry_h": 1.67, + "dbovendry_l": 1.37, + "dbovendry_r": 1.52, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 21, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 2.8, + "lep_l": 0.4, + "lep_r": 1.5, + "mukey": 162394, + "ph1to1h2o_h": 7.5, + "ph1to1h2o_l": 5, + "ph1to1h2o_r": 6.5, + "sandtotal_h": 36.8, + "sandtotal_l": 9.1, + "sandtotal_r": 18, + "silttotal_h": 78.1, + "silttotal_l": 51.3, + "silttotal_r": 64, + "total_frag_volume": 0, + "wfifteenbar_h": 19, + "wfifteenbar_l": 5, + "wfifteenbar_r": 13.1, + "wthirdbar_h": 32.4, + "wthirdbar_l": 19.1, + "wthirdbar_r": 28.4 + }, + { + "cec7_h": 18.9, + "cec7_l": 7.3, + "cec7_r": 12.5, + "chkey": 79917730, + "claytotal_h": 22, + "claytotal_l": 8, + "claytotal_r": 14, + "cokey": 26772402, + "dbovendry_h": 1.72, + "dbovendry_l": 1.27, + "dbovendry_r": 1.52, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 25, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 2.9, + "lep_l": 0.7, + "lep_r": 1.5, + "mukey": 162380, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 5.9, + "sandtotal_h": 28, + "sandtotal_l": 8, + "sandtotal_r": 17, + "silttotal_h": 84, + "silttotal_l": 52, + "silttotal_r": 69, + "total_frag_volume": 0, + "wfifteenbar_h": 16.7, + "wfifteenbar_l": 6, + "wfifteenbar_r": 11.5, + "wthirdbar_h": 30.9, + "wthirdbar_l": 21.6, + "wthirdbar_r": 27.1 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79917885, + "claytotal_h": 35, + "claytotal_l": 24, + "claytotal_r": 27, + "cokey": 26772437, + "dbovendry_h": 1.78, + "dbovendry_l": 1.61, + "dbovendry_r": 1.71, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 12.3, + "ecec_l": 7.3, + "ecec_r": 8.7, + "hzdepb_r": 33, + "hzdept_r": 17, + "hzname": "Bt", + "lep_h": 3, + "lep_l": 1.5, + "lep_r": 1.9, + "mukey": 162395, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 5.2, + "sandtotal_h": 20, + "sandtotal_l": 5, + "sandtotal_r": 18, + "silttotal_h": 68, + "silttotal_l": 45, + "silttotal_r": 55, + "total_frag_volume": 0, + "wfifteenbar_h": 22.3, + "wfifteenbar_l": 15.1, + "wfifteenbar_r": 17.2, + "wthirdbar_h": 34.2, + "wthirdbar_l": 29.8, + "wthirdbar_r": 31.2 + }, + { + "cec7_h": 18.6, + "cec7_l": 12.7, + "cec7_r": 14.4, + "chkey": 79917872, + "claytotal_h": 35, + "claytotal_l": 24, + "claytotal_r": 27, + "cokey": 26772435, + "dbovendry_h": 1.72, + "dbovendry_l": 1.54, + "dbovendry_r": 1.64, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 33, + "hzdept_r": 21, + "hzname": "Bt1", + "lep_h": 4.6, + "lep_l": 2.2, + "lep_r": 2.9, + "mukey": 162394, + "ph1to1h2o_h": 7.5, + "ph1to1h2o_l": 5, + "ph1to1h2o_r": 6, + "sandtotal_h": 20, + "sandtotal_l": 5, + "sandtotal_r": 20, + "silttotal_h": 66, + "silttotal_l": 45, + "silttotal_r": 53, + "total_frag_volume": 2, + "wfifteenbar_h": 22.3, + "wfifteenbar_l": 13.8, + "wfifteenbar_r": 16.8, + "wthirdbar_h": 34.2, + "wthirdbar_l": 27.3, + "wthirdbar_r": 30.5 + }, + { + "cec7_h": 18.6, + "cec7_l": 14.3, + "cec7_r": 15.9, + "chkey": 79918133, + "claytotal_h": 35, + "claytotal_l": 27, + "claytotal_r": 30, + "cokey": 26772496, + "dbovendry_h": 1.69, + "dbovendry_l": 1.55, + "dbovendry_r": 1.62, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 84, + "hzdept_r": 23, + "hzname": "2Bt", + "lep_h": 4.6, + "lep_l": 2.5, + "lep_r": 3.2, + "mukey": 162415, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 5.9, + "sandtotal_h": 45, + "sandtotal_l": 15, + "sandtotal_r": 35, + "silttotal_h": 55, + "silttotal_l": 20, + "silttotal_r": 35, + "total_frag_volume": 8, + "wfifteenbar_h": 22.7, + "wfifteenbar_l": 14.8, + "wfifteenbar_r": 17.8, + "wthirdbar_h": 34.4, + "wthirdbar_l": 26.8, + "wthirdbar_r": 29.9 + }, + { + "cec7_h": 27.5, + "cec7_l": 21.2, + "cec7_r": 24.4, + "chkey": 79918137, + "claytotal_h": 35, + "claytotal_l": 27, + "claytotal_r": 31, + "cokey": 26772497, + "dbovendry_h": 1.75, + "dbovendry_l": 1.61, + "dbovendry_r": 1.71, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 71, + "hzdept_r": 23, + "hzname": "Bt1", + "lep_h": 5.2, + "lep_l": 3.6, + "lep_r": 4.4, + "mukey": 162416, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.6, + "sandtotal_h": 20, + "sandtotal_l": 5, + "sandtotal_r": 6, + "silttotal_h": 65, + "silttotal_l": 45, + "silttotal_r": 63, + "total_frag_volume": 0, + "wfifteenbar_h": 22.3, + "wfifteenbar_l": 16.9, + "wfifteenbar_r": 19.6, + "wthirdbar_h": 34.2, + "wthirdbar_l": 31, + "wthirdbar_r": 32.7 + }, + { + "cec7_h": 21.9, + "cec7_l": 9.7, + "cec7_r": 14.7, + "chkey": 79917731, + "claytotal_h": 26, + "claytotal_l": 11, + "claytotal_r": 17, + "cokey": 26772402, + "dbovendry_h": 1.73, + "dbovendry_l": 1.28, + "dbovendry_r": 1.53, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 33, + "hzdept_r": 25, + "hzname": "E", + "lep_h": 3.8, + "lep_l": 1.1, + "lep_r": 1.8, + "mukey": 162380, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 5.9, + "sandtotal_h": 25, + "sandtotal_l": 10, + "sandtotal_r": 13, + "silttotal_h": 79, + "silttotal_l": 55, + "silttotal_r": 70, + "total_frag_volume": 0, + "wfifteenbar_h": 19, + "wfifteenbar_l": 7.8, + "wfifteenbar_r": 12.6, + "wthirdbar_h": 32.3, + "wthirdbar_l": 23.6, + "wthirdbar_r": 27.9 + }, + { + "cec7_h": 18.4, + "cec7_l": 13.6, + "cec7_r": 16.2, + "chkey": 79917886, + "claytotal_h": 35, + "claytotal_l": 27, + "claytotal_r": 31, + "cokey": 26772437, + "dbovendry_h": 1.84, + "dbovendry_l": 1.62, + "dbovendry_r": 1.77, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 79, + "hzdept_r": 33, + "hzname": "2Bt", + "lep_h": 4.5, + "lep_l": 2.6, + "lep_r": 3.6, + "mukey": 162395, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 5.6, + "sandtotal_h": 40, + "sandtotal_l": 15, + "sandtotal_r": 31, + "silttotal_h": 50, + "silttotal_l": 30, + "silttotal_r": 38, + "total_frag_volume": 4, + "wfifteenbar_h": 23.3, + "wfifteenbar_l": 14.8, + "wfifteenbar_r": 19.8, + "wthirdbar_h": 34.6, + "wthirdbar_l": 26.6, + "wthirdbar_r": 32 + }, + { + "cec7_h": 18.4, + "cec7_l": 13.9, + "cec7_r": 16.2, + "chkey": 79917873, + "claytotal_h": 35, + "claytotal_l": 27, + "claytotal_r": 31, + "cokey": 26772435, + "dbovendry_h": 1.78, + "dbovendry_l": 1.58, + "dbovendry_r": 1.73, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 70, + "hzdept_r": 33, + "hzname": "2Bt2", + "lep_h": 4.5, + "lep_l": 2.7, + "lep_r": 3.6, + "mukey": 162394, + "ph1to1h2o_h": 7.5, + "ph1to1h2o_l": 5, + "ph1to1h2o_r": 6, + "sandtotal_h": 40, + "sandtotal_l": 15, + "sandtotal_r": 31, + "silttotal_h": 50, + "silttotal_l": 30, + "silttotal_r": 38, + "total_frag_volume": 4, + "wfifteenbar_h": 23.4, + "wfifteenbar_l": 15.1, + "wfifteenbar_r": 19.8, + "wthirdbar_h": 34.8, + "wthirdbar_l": 26.8, + "wthirdbar_r": 32 + }, + { + "cec7_h": 27.5, + "cec7_l": 18.3, + "cec7_r": 22.9, + "chkey": 79917732, + "claytotal_h": 35, + "claytotal_l": 23, + "claytotal_r": 29, + "cokey": 26772402, + "dbovendry_h": 1.77, + "dbovendry_l": 1.6, + "dbovendry_r": 1.7, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 69, + "hzdept_r": 33, + "hzname": "Bt1", + "lep_h": 5.7, + "lep_l": 2.9, + "lep_r": 4.3, + "mukey": 162380, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 5.8, + "sandtotal_h": 20, + "sandtotal_l": 5, + "sandtotal_r": 10, + "silttotal_h": 72, + "silttotal_l": 48, + "silttotal_r": 61, + "total_frag_volume": 0, + "wfifteenbar_h": 22.3, + "wfifteenbar_l": 14.5, + "wfifteenbar_r": 18.4, + "wthirdbar_h": 34.2, + "wthirdbar_l": 29.4, + "wthirdbar_r": 32 + }, + { + "cec7_h": 24.7, + "cec7_l": 17.3, + "cec7_r": 21.3, + "chkey": 79917733, + "claytotal_h": 32, + "claytotal_l": 25, + "claytotal_r": 28, + "cokey": 26772402, + "dbovendry_h": 1.86, + "dbovendry_l": 1.7, + "dbovendry_r": 1.8, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 127, + "hzdept_r": 69, + "hzname": "2Bt2", + "lep_h": 4.9, + "lep_l": 2.8, + "lep_r": 3.9, + "mukey": 162380, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 6.9, + "sandtotal_h": 50, + "sandtotal_l": 25, + "sandtotal_r": 40, + "silttotal_h": 48, + "silttotal_l": 18, + "silttotal_r": 32, + "total_frag_volume": 3, + "wfifteenbar_h": 21.9, + "wfifteenbar_l": 15.6, + "wfifteenbar_r": 18.6, + "wthirdbar_h": 33.7, + "wthirdbar_l": 28.8, + "wthirdbar_r": 31.4 + }, + { + "cec7_h": 13.2, + "cec7_l": 7.8, + "cec7_r": 11.5, + "chkey": 79917874, + "claytotal_h": 25, + "claytotal_l": 15, + "claytotal_r": 22, + "cokey": 26772435, + "dbovendry_h": 1.84, + "dbovendry_l": 1.7, + "dbovendry_r": 1.8, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 84, + "hzdept_r": 70, + "hzname": "2BCt", + "lep_h": 2.5, + "lep_l": 1.1, + "lep_r": 1.8, + "mukey": 162394, + "ph1to1h2o_h": 8, + "ph1to1h2o_l": 6.5, + "ph1to1h2o_r": 7.5, + "sandtotal_h": 55, + "sandtotal_l": 35, + "sandtotal_r": 38, + "silttotal_h": 45, + "silttotal_l": 30, + "silttotal_r": 40, + "total_frag_volume": 6, + "wfifteenbar_h": 17.8, + "wfifteenbar_l": 8.8, + "wfifteenbar_r": 14.4, + "wthirdbar_h": 31.6, + "wthirdbar_l": 22.1, + "wthirdbar_r": 28.2 + }, + { + "cec7_h": 27.5, + "cec7_l": 19, + "cec7_r": 22.2, + "chkey": 79918138, + "claytotal_h": 35, + "claytotal_l": 24, + "claytotal_r": 28, + "cokey": 26772497, + "dbovendry_h": 1.87, + "dbovendry_l": 1.69, + "dbovendry_r": 1.79, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 97, + "hzdept_r": 71, + "hzname": "2Bt2", + "lep_h": 5.1, + "lep_l": 2.7, + "lep_r": 3.6, + "mukey": 162416, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.6, + "sandtotal_h": 40, + "sandtotal_l": 20, + "sandtotal_r": 36, + "silttotal_h": 50, + "silttotal_l": 25, + "silttotal_r": 36, + "total_frag_volume": 6, + "wfifteenbar_h": 24.4, + "wfifteenbar_l": 15.2, + "wfifteenbar_r": 18.8, + "wthirdbar_h": 34.9, + "wthirdbar_l": 28, + "wthirdbar_r": 31 + }, + { + "cec7_h": 13.2, + "cec7_l": 7.6, + "cec7_r": 11.5, + "chkey": 79917882, + "claytotal_h": 25, + "claytotal_l": 15, + "claytotal_r": 22, + "cokey": 26772437, + "dbovendry_h": 1.85, + "dbovendry_l": 1.68, + "dbovendry_r": 1.78, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 91, + "hzdept_r": 79, + "hzname": "2BCt", + "lep_h": 2.4, + "lep_l": 1.1, + "lep_r": 1.8, + "mukey": 162395, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.9, + "sandtotal_h": 55, + "sandtotal_l": 35, + "sandtotal_r": 38, + "silttotal_h": 45, + "silttotal_l": 30, + "silttotal_r": 40, + "total_frag_volume": 6, + "wfifteenbar_h": 17.3, + "wfifteenbar_l": 8.6, + "wfifteenbar_r": 14.4, + "wthirdbar_h": 30.8, + "wthirdbar_l": 21.9, + "wthirdbar_r": 28.2 + }, + { + "cec7_h": 10.6, + "cec7_l": 5.1, + "cec7_r": 7.9, + "chkey": 79917875, + "claytotal_h": 20, + "claytotal_l": 10, + "claytotal_r": 15, + "cokey": 26772435, + "dbovendry_h": 2.07, + "dbovendry_l": 1.82, + "dbovendry_r": 1.92, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 84, + "hzname": "2Cd", + "lep_h": 1.5, + "lep_l": 0.6, + "lep_r": 1.2, + "mukey": 162394, + "ph1to1h2o_h": 8.5, + "ph1to1h2o_l": 7, + "ph1to1h2o_r": 8, + "sandtotal_h": 60, + "sandtotal_l": 35, + "sandtotal_r": 45, + "silttotal_h": 50, + "silttotal_l": 30, + "silttotal_r": 40, + "total_frag_volume": 4, + "wfifteenbar_h": 15.7, + "wfifteenbar_l": 6.4, + "wfifteenbar_r": 11, + "wthirdbar_h": 30.2, + "wthirdbar_l": 15.4, + "wthirdbar_r": 26 + }, + { + "cec7_h": 13.2, + "cec7_l": 6.6, + "cec7_r": 9.5, + "chkey": 79918131, + "claytotal_h": 27, + "claytotal_l": 15, + "claytotal_r": 20, + "cokey": 26772496, + "dbovendry_h": 1.84, + "dbovendry_l": 1.66, + "dbovendry_r": 1.76, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 94, + "hzdept_r": 84, + "hzname": "2BCt", + "lep_h": 2.5, + "lep_l": 0.9, + "lep_r": 1, + "mukey": 162415, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.5, + "sandtotal_h": 60, + "sandtotal_l": 25, + "sandtotal_r": 45, + "silttotal_h": 50, + "silttotal_l": 20, + "silttotal_r": 35, + "total_frag_volume": 8, + "wfifteenbar_h": 18.9, + "wfifteenbar_l": 8.7, + "wfifteenbar_r": 12.9, + "wthirdbar_h": 32, + "wthirdbar_l": 22.2, + "wthirdbar_r": 26.7 + }, + { + "cec7_h": 10.6, + "cec7_l": 5.1, + "cec7_r": 7.9, + "chkey": 79917883, + "claytotal_h": 20, + "claytotal_l": 10, + "claytotal_r": 15, + "cokey": 26772437, + "dbovendry_h": 2.02, + "dbovendry_l": 1.83, + "dbovendry_r": 1.93, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 91, + "hzname": "2Cd", + "lep_h": 1.4, + "lep_l": 0.6, + "lep_r": 1.1, + "mukey": 162395, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 8.2, + "sandtotal_h": 60, + "sandtotal_l": 35, + "sandtotal_r": 45, + "silttotal_h": 50, + "silttotal_l": 30, + "silttotal_r": 40, + "total_frag_volume": 6, + "wfifteenbar_h": 15.2, + "wfifteenbar_l": 6.3, + "wfifteenbar_r": 10.9, + "wthirdbar_h": 29.3, + "wthirdbar_l": 15.1, + "wthirdbar_r": 25.6 + }, + { + "cec7_h": 9.6, + "cec7_l": 4.6, + "cec7_r": 6.9, + "chkey": 79918132, + "claytotal_h": 20, + "claytotal_l": 10, + "claytotal_r": 15, + "cokey": 26772496, + "dbovendry_h": 2.05, + "dbovendry_l": 1.8, + "dbovendry_r": 1.85, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 94, + "hzname": "2Cd", + "lep_h": 1.2, + "lep_l": 0.5, + "lep_r": 0.9, + "mukey": 162415, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.9, + "sandtotal_h": 60, + "sandtotal_l": 35, + "sandtotal_r": 45, + "silttotal_h": 50, + "silttotal_l": 20, + "silttotal_r": 40, + "total_frag_volume": 9, + "wfifteenbar_h": 15.1, + "wfifteenbar_l": 6.2, + "wfifteenbar_r": 10.2, + "wthirdbar_h": 29.7, + "wthirdbar_l": 15.3, + "wthirdbar_r": 24.4 + }, + { + "cec7_h": 23.3, + "cec7_l": 14.2, + "cec7_r": 15.7, + "chkey": 79918135, + "claytotal_h": 30, + "claytotal_l": 20, + "claytotal_r": 20, + "cokey": 26772497, + "dbovendry_h": 1.82, + "dbovendry_l": 1.61, + "dbovendry_r": 1.71, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 114, + "hzdept_r": 97, + "hzname": "2BCt", + "lep_h": 4, + "lep_l": 1.9, + "lep_r": 2.1, + "mukey": 162416, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.5, + "sandtotal_h": 50, + "sandtotal_l": 25, + "sandtotal_r": 37, + "silttotal_h": 50, + "silttotal_l": 25, + "silttotal_r": 43, + "total_frag_volume": 8, + "wfifteenbar_h": 19.5, + "wfifteenbar_l": 10.6, + "wfifteenbar_r": 12.2, + "wthirdbar_h": 32.3, + "wthirdbar_l": 23.3, + "wthirdbar_r": 26.3 + }, + { + "cec7_h": 14.7, + "cec7_l": 8.9, + "cec7_r": 12.1, + "chkey": 79918136, + "claytotal_h": 18, + "claytotal_l": 12, + "claytotal_r": 15, + "cokey": 26772497, + "dbovendry_h": 2.01, + "dbovendry_l": 1.84, + "dbovendry_r": 1.99, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 114, + "hzname": "2Cd", + "lep_h": 1.8, + "lep_l": 1, + "lep_r": 1.4, + "mukey": 162416, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.9, + "sandtotal_h": 60, + "sandtotal_l": 35, + "sandtotal_r": 46, + "silttotal_h": 50, + "silttotal_l": 22, + "silttotal_r": 39, + "total_frag_volume": 8, + "wfifteenbar_h": 14.2, + "wfifteenbar_l": 7.7, + "wfifteenbar_r": 10.9, + "wthirdbar_h": 24.3, + "wthirdbar_l": 16.6, + "wthirdbar_r": 20.5 + }, + { + "cec7_h": 23.3, + "cec7_l": 8.9, + "cec7_r": 15.7, + "chkey": 79917734, + "claytotal_h": 30, + "claytotal_l": 12, + "claytotal_r": 20, + "cokey": 26772402, + "dbovendry_h": 2.07, + "dbovendry_l": 1.87, + "dbovendry_r": 1.92, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 150, + "hzdept_r": 127, + "hzname": "2BC", + "lep_h": 4.5, + "lep_l": 1, + "lep_r": 2, + "mukey": 162380, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.4, + "sandtotal_h": 50, + "sandtotal_l": 30, + "sandtotal_r": 45, + "silttotal_h": 53, + "silttotal_l": 20, + "silttotal_r": 35, + "total_frag_volume": 5, + "wfifteenbar_h": 22.2, + "wfifteenbar_l": 8, + "wfifteenbar_r": 14.1, + "wthirdbar_h": 29.5, + "wthirdbar_l": 18.1, + "wthirdbar_r": 24.7 + }, + { + "cec7_h": 20.5, + "cec7_l": 8.9, + "cec7_r": 12.1, + "chkey": 79917735, + "claytotal_h": 26, + "claytotal_l": 12, + "claytotal_r": 15, + "cokey": 26772402, + "dbovendry_h": 2.02, + "dbovendry_l": 1.83, + "dbovendry_r": 1.88, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 150, + "hzname": "2Cd", + "lep_h": 3.5, + "lep_l": 0.9, + "lep_r": 1.3, + "mukey": 162380, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 8, + "sandtotal_h": 60, + "sandtotal_l": 35, + "sandtotal_r": 45, + "silttotal_h": 50, + "silttotal_l": 20, + "silttotal_r": 40, + "total_frag_volume": 12, + "wfifteenbar_h": 19.1, + "wfifteenbar_l": 7.4, + "wfifteenbar_r": 9.9, + "wthirdbar_h": 28.9, + "wthirdbar_l": 16.8, + "wthirdbar_r": 23.6 + }, + { + "cec7_h": 14.2, + "cec7_l": 3.8, + "cec7_r": 9.8, + "chkey": 79917809, + "claytotal_h": 26.1, + "claytotal_l": 7, + "claytotal_r": 18, + "cokey": 26772419, + "dbovendry_h": 1.74, + "dbovendry_l": 1.49, + "dbovendry_r": 1.67, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 20, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 2.8, + "lep_l": 0.4, + "lep_r": 1.5, + "mukey": 162386, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.5, + "sandtotal_h": 36.8, + "sandtotal_l": 9.1, + "sandtotal_r": 18, + "silttotal_h": 83, + "silttotal_l": 50, + "silttotal_r": 64, + "total_frag_volume": 2, + "wfifteenbar_h": 21, + "wfifteenbar_l": 5.5, + "wfifteenbar_r": 14.1, + "wthirdbar_h": 33.5, + "wthirdbar_l": 19.6, + "wthirdbar_r": 28.7 + }, + { + "cec7_h": 13.1, + "cec7_l": 5.4, + "cec7_r": 9.8, + "chkey": 79918127, + "claytotal_h": 24, + "claytotal_l": 10, + "claytotal_r": 18, + "cokey": 26772495, + "dbovendry_h": 1.67, + "dbovendry_l": 1.37, + "dbovendry_r": 1.52, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 20, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 2.4, + "lep_l": 0.7, + "lep_r": 1.5, + "mukey": 162415, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 6.2, + "sandtotal_h": 30, + "sandtotal_l": 10, + "sandtotal_r": 18, + "silttotal_h": 75, + "silttotal_l": 50, + "silttotal_r": 64, + "total_frag_volume": 0, + "wfifteenbar_h": 17.9, + "wfifteenbar_l": 6.6, + "wfifteenbar_r": 13.8, + "wthirdbar_h": 31.6, + "wthirdbar_l": 20.9, + "wthirdbar_r": 28.9 + }, + { + "cec7_h": 29.5, + "cec7_l": 18.9, + "cec7_r": 23.8, + "chkey": 79917736, + "claytotal_h": 35, + "claytotal_l": 22, + "claytotal_r": 28, + "cokey": 26772403, + "dbovendry_h": 1.73, + "dbovendry_l": 1.5, + "dbovendry_r": 1.65, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 36, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 6, + "lep_l": 2.9, + "lep_r": 4.3, + "mukey": 162380, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.3, + "sandtotal_h": 18, + "sandtotal_l": 10, + "sandtotal_r": 18, + "silttotal_h": 64, + "silttotal_l": 47, + "silttotal_r": 54, + "total_frag_volume": 0, + "wfifteenbar_h": 27.8, + "wfifteenbar_l": 16.7, + "wfifteenbar_r": 22, + "wthirdbar_h": 37, + "wthirdbar_l": 30.9, + "wthirdbar_r": 34.1 + }, + { + "cec7_h": 18.6, + "cec7_l": 12.7, + "cec7_r": 14.4, + "chkey": 79917812, + "claytotal_h": 35, + "claytotal_l": 24, + "claytotal_r": 27, + "cokey": 26772419, + "dbovendry_h": 2.02, + "dbovendry_l": 1.6, + "dbovendry_r": 1.74, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 33, + "hzdept_r": 20, + "hzname": "Bt1", + "lep_h": 4.5, + "lep_l": 2.2, + "lep_r": 2.9, + "mukey": 162386, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 5.9, + "sandtotal_h": 20, + "sandtotal_l": 5, + "sandtotal_r": 20, + "silttotal_h": 66, + "silttotal_l": 45, + "silttotal_r": 53, + "total_frag_volume": 2, + "wfifteenbar_h": 23.3, + "wfifteenbar_l": 14.6, + "wfifteenbar_r": 17.8, + "wthirdbar_h": 34.5, + "wthirdbar_l": 24.7, + "wthirdbar_r": 31.1 + }, + { + "cec7_h": 13, + "cec7_l": 5.4, + "cec7_r": 9.2, + "chkey": 79918128, + "claytotal_h": 24, + "claytotal_l": 10, + "claytotal_r": 17, + "cokey": 26772495, + "dbovendry_h": 1.67, + "dbovendry_l": 1.37, + "dbovendry_r": 1.52, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 28, + "hzdept_r": 20, + "hzname": "BE", + "lep_h": 2.3, + "lep_l": 0.7, + "lep_r": 1.4, + "mukey": 162415, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 6.2, + "sandtotal_h": 30, + "sandtotal_l": 15, + "sandtotal_r": 20, + "silttotal_h": 75, + "silttotal_l": 50, + "silttotal_r": 63, + "total_frag_volume": 5, + "wfifteenbar_h": 16.5, + "wfifteenbar_l": 6.6, + "wfifteenbar_r": 11.3, + "wthirdbar_h": 30.8, + "wthirdbar_l": 20.9, + "wthirdbar_r": 26 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79918124, + "claytotal_h": 26, + "claytotal_l": 20, + "claytotal_r": 25, + "cokey": 26772495, + "dbovendry_h": 1.73, + "dbovendry_l": 1.53, + "dbovendry_r": 1.63, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 8.7, + "ecec_l": 5.9, + "ecec_r": 7.9, + "hzdepb_r": 36, + "hzdept_r": 28, + "hzname": "Bt1", + "lep_h": 1.9, + "lep_l": 1, + "lep_r": 1.6, + "mukey": 162415, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 5.5, + "sandtotal_h": 30, + "sandtotal_l": 15, + "sandtotal_r": 20, + "silttotal_h": 65, + "silttotal_l": 50, + "silttotal_r": 55, + "total_frag_volume": 5, + "wfifteenbar_h": 17.5, + "wfifteenbar_l": 12, + "wfifteenbar_r": 15.7, + "wthirdbar_h": 31.4, + "wthirdbar_l": 25.9, + "wthirdbar_r": 29.3 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79917808, + "claytotal_h": 35, + "claytotal_l": 27, + "claytotal_r": 31, + "cokey": 26772419, + "dbovendry_h": 1.77, + "dbovendry_l": 1.55, + "dbovendry_r": 1.7, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 18.1, + "ecec_l": 9.1, + "ecec_r": 11.5, + "hzdepb_r": 79, + "hzdept_r": 33, + "hzname": "2Bt2", + "lep_h": 3.9, + "lep_l": 1.9, + "lep_r": 2.5, + "mukey": 162386, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 5.5, + "sandtotal_h": 40, + "sandtotal_l": 15, + "sandtotal_r": 31, + "silttotal_h": 54, + "silttotal_l": 25, + "silttotal_r": 38, + "total_frag_volume": 4, + "wfifteenbar_h": 23.3, + "wfifteenbar_l": 15, + "wfifteenbar_r": 20, + "wthirdbar_h": 34.4, + "wthirdbar_l": 26.6, + "wthirdbar_r": 32.2 + }, + { + "cec7_h": 28.2, + "cec7_l": 19.7, + "cec7_r": 21.2, + "chkey": 79917737, + "claytotal_h": 35, + "claytotal_l": 25, + "claytotal_r": 26, + "cokey": 26772403, + "dbovendry_h": 1.78, + "dbovendry_l": 1.57, + "dbovendry_r": 1.67, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 51, + "hzdept_r": 36, + "hzname": "AB", + "lep_h": 5.8, + "lep_l": 3.4, + "lep_r": 3.7, + "mukey": 162380, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 6.9, + "sandtotal_h": 19, + "sandtotal_l": 2, + "sandtotal_r": 12, + "silttotal_h": 73, + "silttotal_l": 48, + "silttotal_r": 62, + "total_frag_volume": 0, + "wfifteenbar_h": 23.6, + "wfifteenbar_l": 15.7, + "wfifteenbar_r": 17.3, + "wthirdbar_h": 34.9, + "wthirdbar_l": 30.2, + "wthirdbar_r": 31.3 + }, + { + "cec7_h": 23.9, + "cec7_l": 18.4, + "cec7_r": 21.2, + "chkey": 79918129, + "claytotal_h": 45, + "claytotal_l": 35, + "claytotal_r": 40, + "cokey": 26772495, + "dbovendry_h": 1.92, + "dbovendry_l": 1.72, + "dbovendry_r": 1.82, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 71, + "hzdept_r": 36, + "hzname": "2Bt2", + "lep_h": 6.6, + "lep_l": 4.1, + "lep_r": 5, + "mukey": 162415, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 6.2, + "sandtotal_h": 30, + "sandtotal_l": 10, + "sandtotal_r": 18, + "silttotal_h": 55, + "silttotal_l": 35, + "silttotal_r": 42, + "total_frag_volume": 9, + "wfifteenbar_h": 26.2, + "wfifteenbar_l": 16.3, + "wfifteenbar_r": 20.9, + "wthirdbar_h": 32.9, + "wthirdbar_l": 24, + "wthirdbar_r": 28.2 + }, + { + "cec7_h": 28.2, + "cec7_l": 19.7, + "cec7_r": 24.1, + "chkey": 79917740, + "claytotal_h": 35, + "claytotal_l": 25, + "claytotal_r": 33, + "cokey": 26772403, + "dbovendry_h": 1.78, + "dbovendry_l": 1.62, + "dbovendry_r": 1.72, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 124, + "hzdept_r": 51, + "hzname": "Bt1", + "lep_h": 5.8, + "lep_l": 3.4, + "lep_r": 5, + "mukey": 162380, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 7.3, + "sandtotal_h": 19, + "sandtotal_l": 2, + "sandtotal_r": 10, + "silttotal_h": 70, + "silttotal_l": 46, + "silttotal_r": 57, + "total_frag_volume": 0, + "wfifteenbar_h": 23.6, + "wfifteenbar_l": 15.7, + "wfifteenbar_r": 21.4, + "wthirdbar_h": 34.9, + "wthirdbar_l": 30.2, + "wthirdbar_r": 33.7 + }, + { + "cec7_h": 17.4, + "cec7_l": 5.6, + "cec7_r": 13.1, + "chkey": 79918125, + "claytotal_h": 35, + "claytotal_l": 12, + "claytotal_r": 26, + "cokey": 26772495, + "dbovendry_h": 1.9, + "dbovendry_l": 1.68, + "dbovendry_r": 1.78, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 91, + "hzdept_r": 71, + "hzname": "2BCt", + "lep_h": 4.2, + "lep_l": 0.6, + "lep_r": 2.2, + "mukey": 162415, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.8, + "sandtotal_h": 55, + "sandtotal_l": 25, + "sandtotal_r": 33.5, + "silttotal_h": 50, + "silttotal_l": 30, + "silttotal_r": 40.5, + "total_frag_volume": 12, + "wfifteenbar_h": 23.7, + "wfifteenbar_l": 6.1, + "wfifteenbar_r": 15.4, + "wthirdbar_h": 34.8, + "wthirdbar_l": 18.3, + "wthirdbar_r": 27.6 + }, + { + "cec7_h": 13.2, + "cec7_l": 7.6, + "cec7_r": 11.5, + "chkey": 79917810, + "claytotal_h": 25, + "claytotal_l": 15, + "claytotal_r": 22, + "cokey": 26772419, + "dbovendry_h": 1.96, + "dbovendry_l": 1.88, + "dbovendry_r": 1.93, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 91, + "hzdept_r": 79, + "hzname": "2BCt", + "lep_h": 2.4, + "lep_l": 1.1, + "lep_r": 1.8, + "mukey": 162386, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.4, + "sandtotal_h": 55, + "sandtotal_l": 35, + "sandtotal_r": 38, + "silttotal_h": 50, + "silttotal_l": 25, + "silttotal_r": 40, + "total_frag_volume": 6, + "wfifteenbar_h": 18.4, + "wfifteenbar_l": 9, + "wfifteenbar_r": 15.3, + "wthirdbar_h": 28.3, + "wthirdbar_l": 22, + "wthirdbar_r": 25.2 + }, + { + "cec7_h": 10.6, + "cec7_l": 5.1, + "cec7_r": 7.9, + "chkey": 79917811, + "claytotal_h": 20, + "claytotal_l": 10, + "claytotal_r": 15, + "cokey": 26772419, + "dbovendry_h": 2.03, + "dbovendry_l": 1.77, + "dbovendry_r": 2.02, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 91, + "hzname": "2Cd", + "lep_h": 1.4, + "lep_l": 0.6, + "lep_r": 1.2, + "mukey": 162386, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.9, + "sandtotal_h": 60, + "sandtotal_l": 35, + "sandtotal_r": 45, + "silttotal_h": 50, + "silttotal_l": 22, + "silttotal_r": 40, + "total_frag_volume": 4, + "wfifteenbar_h": 15.8, + "wfifteenbar_l": 6.7, + "wfifteenbar_r": 11.6, + "wthirdbar_h": 24.8, + "wthirdbar_l": 15.2, + "wthirdbar_r": 21.2 + }, + { + "cec7_h": 11.7, + "cec7_l": 4.1, + "cec7_r": 8.2, + "chkey": 79918126, + "claytotal_h": 25, + "claytotal_l": 10, + "claytotal_r": 17.5, + "cokey": 26772495, + "dbovendry_h": 2.07, + "dbovendry_l": 1.82, + "dbovendry_r": 1.92, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 91, + "hzname": "2Cd", + "lep_h": 2, + "lep_l": 0.4, + "lep_r": 1.1, + "mukey": 162415, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 8.1, + "sandtotal_h": 60, + "sandtotal_l": 30, + "sandtotal_r": 42, + "silttotal_h": 50, + "silttotal_l": 28, + "silttotal_r": 40.5, + "total_frag_volume": 12, + "wfifteenbar_h": 19.2, + "wfifteenbar_l": 5.7, + "wfifteenbar_r": 11.7, + "wthirdbar_h": 29, + "wthirdbar_l": 13.8, + "wthirdbar_r": 21.1 + }, + { + "cec7_h": 24.6, + "cec7_l": 12.5, + "cec7_r": 19.7, + "chkey": 79917738, + "claytotal_h": 30, + "claytotal_l": 15, + "claytotal_r": 24, + "cokey": 26772403, + "dbovendry_h": 1.72, + "dbovendry_l": 1.55, + "dbovendry_r": 1.65, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 152, + "hzdept_r": 124, + "hzname": "2Bt2", + "lep_h": 4.6, + "lep_l": 1.4, + "lep_r": 3.2, + "mukey": 162380, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 7.3, + "sandtotal_h": 45, + "sandtotal_l": 15, + "sandtotal_r": 35, + "silttotal_h": 64, + "silttotal_l": 25, + "silttotal_r": 41, + "total_frag_volume": 2, + "wfifteenbar_h": 20.6, + "wfifteenbar_l": 8.8, + "wfifteenbar_r": 15.9, + "wthirdbar_h": 33.3, + "wthirdbar_l": 23.2, + "wthirdbar_r": 30.1 + }, + { + "cec7_h": 20.3, + "cec7_l": 7.9, + "cec7_r": 12.7, + "chkey": 79917739, + "claytotal_h": 25, + "claytotal_l": 9, + "claytotal_r": 15, + "cokey": 26772403, + "dbovendry_h": 1.84, + "dbovendry_l": 1.68, + "dbovendry_r": 1.73, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 152, + "hzname": "2C", + "lep_h": 3.4, + "lep_l": 0.8, + "lep_r": 1.5, + "mukey": 162380, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 8.1, + "sandtotal_h": 56, + "sandtotal_l": 30, + "sandtotal_r": 40, + "silttotal_h": 50, + "silttotal_l": 24, + "silttotal_r": 45, + "total_frag_volume": 6, + "wfifteenbar_h": 17.8, + "wfifteenbar_l": 5.9, + "wfifteenbar_r": 10.3, + "wthirdbar_h": 31.3, + "wthirdbar_l": 19.7, + "wthirdbar_r": 24.9 + }, + { + "cec7_h": 13.1, + "cec7_l": 5.4, + "cec7_r": 9.8, + "chkey": 79917881, + "claytotal_h": 24, + "claytotal_l": 10, + "claytotal_r": 18, + "cokey": 26772436, + "dbovendry_h": 1.67, + "dbovendry_l": 1.37, + "dbovendry_r": 1.52, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 20, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 2.4, + "lep_l": 0.7, + "lep_r": 1.5, + "mukey": 162394, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 6.2, + "sandtotal_h": 30, + "sandtotal_l": 10, + "sandtotal_r": 18, + "silttotal_h": 75, + "silttotal_l": 50, + "silttotal_r": 64, + "total_frag_volume": 0, + "wfifteenbar_h": 17.9, + "wfifteenbar_l": 6.6, + "wfifteenbar_r": 13.8, + "wthirdbar_h": 31.6, + "wthirdbar_l": 20.9, + "wthirdbar_r": 28.9 + }, + { + "cec7_h": 13, + "cec7_l": 5.4, + "cec7_r": 9.2, + "chkey": 79917876, + "claytotal_h": 24, + "claytotal_l": 10, + "claytotal_r": 17, + "cokey": 26772436, + "dbovendry_h": 1.67, + "dbovendry_l": 1.37, + "dbovendry_r": 1.52, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 28, + "hzdept_r": 20, + "hzname": "BE", + "lep_h": 2.3, + "lep_l": 0.7, + "lep_r": 1.4, + "mukey": 162394, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 6.2, + "sandtotal_h": 30, + "sandtotal_l": 15, + "sandtotal_r": 20, + "silttotal_h": 75, + "silttotal_l": 50, + "silttotal_r": 63, + "total_frag_volume": 5, + "wfifteenbar_h": 16.5, + "wfifteenbar_l": 6.6, + "wfifteenbar_r": 11.3, + "wthirdbar_h": 30.8, + "wthirdbar_l": 20.9, + "wthirdbar_r": 26 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79917877, + "claytotal_h": 26, + "claytotal_l": 20, + "claytotal_r": 25, + "cokey": 26772436, + "dbovendry_h": 1.73, + "dbovendry_l": 1.53, + "dbovendry_r": 1.63, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 8.7, + "ecec_l": 5.9, + "ecec_r": 7.9, + "hzdepb_r": 36, + "hzdept_r": 28, + "hzname": "Bt1", + "lep_h": 1.9, + "lep_l": 1, + "lep_r": 1.6, + "mukey": 162394, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 5.5, + "sandtotal_h": 30, + "sandtotal_l": 15, + "sandtotal_r": 20, + "silttotal_h": 65, + "silttotal_l": 50, + "silttotal_r": 55, + "total_frag_volume": 5, + "wfifteenbar_h": 17.5, + "wfifteenbar_l": 12, + "wfifteenbar_r": 15.7, + "wthirdbar_h": 31.4, + "wthirdbar_l": 25.9, + "wthirdbar_r": 29.3 + }, + { + "cec7_h": 23.9, + "cec7_l": 18.4, + "cec7_r": 21.2, + "chkey": 79917878, + "claytotal_h": 45, + "claytotal_l": 35, + "claytotal_r": 40, + "cokey": 26772436, + "dbovendry_h": 1.92, + "dbovendry_l": 1.72, + "dbovendry_r": 1.82, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 71, + "hzdept_r": 36, + "hzname": "2Bt2", + "lep_h": 6.6, + "lep_l": 4.1, + "lep_r": 5, + "mukey": 162394, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 6.2, + "sandtotal_h": 30, + "sandtotal_l": 10, + "sandtotal_r": 18, + "silttotal_h": 55, + "silttotal_l": 35, + "silttotal_r": 42, + "total_frag_volume": 9, + "wfifteenbar_h": 26.2, + "wfifteenbar_l": 16.3, + "wfifteenbar_r": 20.9, + "wthirdbar_h": 32.9, + "wthirdbar_l": 24, + "wthirdbar_r": 28.2 + }, + { + "cec7_h": 17.4, + "cec7_l": 5.6, + "cec7_r": 13.1, + "chkey": 79917879, + "claytotal_h": 35, + "claytotal_l": 12, + "claytotal_r": 26, + "cokey": 26772436, + "dbovendry_h": 1.9, + "dbovendry_l": 1.68, + "dbovendry_r": 1.78, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 91, + "hzdept_r": 71, + "hzname": "2BCt", + "lep_h": 4.2, + "lep_l": 0.6, + "lep_r": 2.2, + "mukey": 162394, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.8, + "sandtotal_h": 55, + "sandtotal_l": 25, + "sandtotal_r": 33.5, + "silttotal_h": 50, + "silttotal_l": 30, + "silttotal_r": 40.5, + "total_frag_volume": 12, + "wfifteenbar_h": 23.7, + "wfifteenbar_l": 6.1, + "wfifteenbar_r": 15.4, + "wthirdbar_h": 34.8, + "wthirdbar_l": 18.3, + "wthirdbar_r": 27.6 + }, + { + "cec7_h": 11.7, + "cec7_l": 4.1, + "cec7_r": 8.2, + "chkey": 79917880, + "claytotal_h": 25, + "claytotal_l": 10, + "claytotal_r": 17.5, + "cokey": 26772436, + "dbovendry_h": 2.07, + "dbovendry_l": 1.82, + "dbovendry_r": 1.92, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 91, + "hzname": "2Cd", + "lep_h": 2, + "lep_l": 0.4, + "lep_r": 1.1, + "mukey": 162394, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 8.1, + "sandtotal_h": 60, + "sandtotal_l": 30, + "sandtotal_r": 42, + "silttotal_h": 50, + "silttotal_l": 28, + "silttotal_r": 40.5, + "total_frag_volume": 12, + "wfifteenbar_h": 19.2, + "wfifteenbar_l": 5.7, + "wfifteenbar_r": 11.7, + "wthirdbar_h": 29, + "wthirdbar_l": 13.8, + "wthirdbar_r": 21.1 + }, + { + "cec7_h": 13.1, + "cec7_l": 5.4, + "cec7_r": 9.8, + "chkey": 79917925, + "claytotal_h": 24, + "claytotal_l": 10, + "claytotal_r": 18, + "cokey": 26772446, + "dbovendry_h": 1.67, + "dbovendry_l": 1.37, + "dbovendry_r": 1.52, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 20, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 2.4, + "lep_l": 0.7, + "lep_r": 1.5, + "mukey": 162398, + "ph1to1h2o_h": 7.2, + "ph1to1h2o_l": 4.8, + "ph1to1h2o_r": 5.9, + "sandtotal_h": 30, + "sandtotal_l": 10, + "sandtotal_r": 18, + "silttotal_h": 75, + "silttotal_l": 50, + "silttotal_r": 64, + "total_frag_volume": 0, + "wfifteenbar_h": 17.9, + "wfifteenbar_l": 6.6, + "wfifteenbar_r": 13.8, + "wthirdbar_h": 31.6, + "wthirdbar_l": 20.9, + "wthirdbar_r": 28.9 + }, + { + "cec7_h": 13, + "cec7_l": 5.4, + "cec7_r": 9.2, + "chkey": 79917926, + "claytotal_h": 24, + "claytotal_l": 10, + "claytotal_r": 17, + "cokey": 26772446, + "dbovendry_h": 1.67, + "dbovendry_l": 1.37, + "dbovendry_r": 1.52, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 28, + "hzdept_r": 20, + "hzname": "BE", + "lep_h": 2.3, + "lep_l": 0.7, + "lep_r": 1.4, + "mukey": 162398, + "ph1to1h2o_h": 6, + "ph1to1h2o_l": 4.8, + "ph1to1h2o_r": 5.8, + "sandtotal_h": 30, + "sandtotal_l": 15, + "sandtotal_r": 20, + "silttotal_h": 75, + "silttotal_l": 50, + "silttotal_r": 63, + "total_frag_volume": 5, + "wfifteenbar_h": 16.5, + "wfifteenbar_l": 6.6, + "wfifteenbar_r": 11.3, + "wthirdbar_h": 30.8, + "wthirdbar_l": 20.9, + "wthirdbar_r": 26 + }, + { + "cec7_h": 13.3, + "cec7_l": 10.6, + "cec7_r": 11.8, + "chkey": 79917927, + "claytotal_h": 26, + "claytotal_l": 20, + "claytotal_r": 25, + "cokey": 26772446, + "dbovendry_h": 1.69, + "dbovendry_l": 1.56, + "dbovendry_r": 1.66, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 36, + "hzdept_r": 28, + "hzname": "Bt1", + "lep_h": 2.7, + "lep_l": 0.9, + "lep_r": 2.2, + "mukey": 162398, + "ph1to1h2o_h": 8.3, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 6.2, + "sandtotal_h": 30, + "sandtotal_l": 15, + "sandtotal_r": 20, + "silttotal_h": 65, + "silttotal_l": 50, + "silttotal_r": 55, + "total_frag_volume": 5, + "wfifteenbar_h": 17.5, + "wfifteenbar_l": 12, + "wfifteenbar_r": 15.7, + "wthirdbar_h": 31.4, + "wthirdbar_l": 25.9, + "wthirdbar_r": 29.3 + }, + { + "cec7_h": 21.8, + "cec7_l": 18.4, + "cec7_r": 21.2, + "chkey": 79917928, + "claytotal_h": 45, + "claytotal_l": 35, + "claytotal_r": 40, + "cokey": 26772446, + "dbovendry_h": 1.9, + "dbovendry_l": 1.72, + "dbovendry_r": 1.82, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 71, + "hzdept_r": 36, + "hzname": "2Bt2", + "lep_h": 6.3, + "lep_l": 3.6, + "lep_r": 5, + "mukey": 162398, + "ph1to1h2o_h": 8.3, + "ph1to1h2o_l": 4.8, + "ph1to1h2o_r": 6.2, + "sandtotal_h": 30, + "sandtotal_l": 10, + "sandtotal_r": 18, + "silttotal_h": 55, + "silttotal_l": 35, + "silttotal_r": 42, + "total_frag_volume": 9, + "wfifteenbar_h": 26.2, + "wfifteenbar_l": 16.3, + "wfifteenbar_r": 20.9, + "wthirdbar_h": 32.9, + "wthirdbar_l": 24, + "wthirdbar_r": 28.2 + }, + { + "cec7_h": 14.8, + "cec7_l": 6.1, + "cec7_r": 11.5, + "chkey": 79917929, + "claytotal_h": 35, + "claytotal_l": 12, + "claytotal_r": 26, + "cokey": 26772446, + "dbovendry_h": 1.89, + "dbovendry_l": 1.64, + "dbovendry_r": 1.74, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 91, + "hzdept_r": 71, + "hzname": "2BCt", + "lep_h": 4.1, + "lep_l": 0.4, + "lep_r": 1.6, + "mukey": 162398, + "ph1to1h2o_h": 8.3, + "ph1to1h2o_l": 7.8, + "ph1to1h2o_r": 8.1, + "sandtotal_h": 55, + "sandtotal_l": 25, + "sandtotal_r": 33.5, + "silttotal_h": 50, + "silttotal_l": 30, + "silttotal_r": 40.5, + "total_frag_volume": 12, + "wfifteenbar_h": 23.8, + "wfifteenbar_l": 6.1, + "wfifteenbar_r": 15.4, + "wthirdbar_h": 35, + "wthirdbar_l": 18.3, + "wthirdbar_r": 27.6 + }, + { + "cec7_h": 10.6, + "cec7_l": 4.6, + "cec7_r": 7.6, + "chkey": 79917930, + "claytotal_h": 25, + "claytotal_l": 10, + "claytotal_r": 17.5, + "cokey": 26772446, + "dbovendry_h": 2.06, + "dbovendry_l": 1.81, + "dbovendry_r": 1.91, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 91, + "hzname": "2Cd", + "lep_h": 2, + "lep_l": 0.3, + "lep_r": 1, + "mukey": 162398, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.8, + "ph1to1h2o_r": 8.1, + "sandtotal_h": 60, + "sandtotal_l": 30, + "sandtotal_r": 42, + "silttotal_h": 50, + "silttotal_l": 28, + "silttotal_r": 40.5, + "total_frag_volume": 12, + "wfifteenbar_h": 19.2, + "wfifteenbar_l": 5.7, + "wfifteenbar_r": 11.7, + "wthirdbar_h": 29, + "wthirdbar_l": 13.8, + "wthirdbar_r": 21.1 + }, + { + "cec7_h": 15.7, + "cec7_l": 7.5, + "cec7_r": 10.3, + "chkey": 79917741, + "claytotal_h": 29, + "claytotal_l": 14, + "claytotal_r": 19, + "cokey": 26772404, + "dbovendry_h": 1.61, + "dbovendry_l": 1.37, + "dbovendry_r": 1.52, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 23, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 3.4, + "lep_l": 1, + "lep_r": 1.6, + "mukey": 162380, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 6.1, + "sandtotal_h": 50, + "sandtotal_l": 10, + "sandtotal_r": 24, + "silttotal_h": 76, + "silttotal_l": 30, + "silttotal_r": 57, + "total_frag_volume": 3, + "wfifteenbar_h": 20.7, + "wfifteenbar_l": 9.2, + "wfifteenbar_r": 12.7, + "wthirdbar_h": 33.3, + "wthirdbar_l": 24.6, + "wthirdbar_r": 27.5 + }, + { + "cec7_h": 25.6, + "cec7_l": 20.4, + "cec7_r": 23.1, + "chkey": 79918119, + "claytotal_h": 30, + "claytotal_l": 24, + "claytotal_r": 27, + "cokey": 26772494, + "dbovendry_h": 1.67, + "dbovendry_l": 1.39, + "dbovendry_r": 1.64, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 25, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 4.8, + "lep_l": 3.3, + "lep_r": 4.1, + "mukey": 162415, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.5, + "sandtotal_h": 20, + "sandtotal_l": 5, + "sandtotal_r": 17, + "silttotal_h": 65, + "silttotal_l": 50, + "silttotal_r": 56, + "total_frag_volume": 0, + "wfifteenbar_h": 25.1, + "wfifteenbar_l": 17.5, + "wfifteenbar_r": 21.5, + "wthirdbar_h": 35.7, + "wthirdbar_l": 31.2, + "wthirdbar_r": 33.8 + }, + { + "cec7_h": 18.9, + "cec7_l": 7.3, + "cec7_r": 12.5, + "chkey": 79918142, + "claytotal_h": 22, + "claytotal_l": 8, + "claytotal_r": 14, + "cokey": 26772499, + "dbovendry_h": 1.72, + "dbovendry_l": 1.27, + "dbovendry_r": 1.52, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 25, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 3, + "lep_l": 0.9, + "lep_r": 1.6, + "mukey": 162416, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 5.9, + "sandtotal_h": 28, + "sandtotal_l": 8, + "sandtotal_r": 17, + "silttotal_h": 84, + "silttotal_l": 52, + "silttotal_r": 69, + "total_frag_volume": 0, + "wfifteenbar_h": 16.7, + "wfifteenbar_l": 6, + "wfifteenbar_r": 11.5, + "wthirdbar_h": 30.9, + "wthirdbar_l": 21.6, + "wthirdbar_r": 27.1 + }, + { + "cec7_h": 13.1, + "cec7_l": 5.4, + "cec7_r": 9.8, + "chkey": 79917887, + "claytotal_h": 24, + "claytotal_l": 10, + "claytotal_r": 18, + "cokey": 26772438, + "dbovendry_h": 1.67, + "dbovendry_l": 1.37, + "dbovendry_r": 1.52, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 20, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 2.3, + "lep_l": 0.7, + "lep_r": 1.4, + "mukey": 162395, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 6.2, + "sandtotal_h": 30, + "sandtotal_l": 10, + "sandtotal_r": 18, + "silttotal_h": 75, + "silttotal_l": 50, + "silttotal_r": 64, + "total_frag_volume": 0, + "wfifteenbar_h": 17.9, + "wfifteenbar_l": 6.6, + "wfifteenbar_r": 13.1, + "wthirdbar_h": 31.6, + "wthirdbar_l": 20.9, + "wthirdbar_r": 27.4 + }, + { + "cec7_h": 25.6, + "cec7_l": 20.4, + "cec7_r": 23.1, + "chkey": 79918148, + "claytotal_h": 30, + "claytotal_l": 24, + "claytotal_r": 27, + "cokey": 26772500, + "dbovendry_h": 1.59, + "dbovendry_l": 1.47, + "dbovendry_r": 1.57, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 25, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 4.4, + "lep_l": 3.2, + "lep_r": 3.8, + "mukey": 162416, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.5, + "sandtotal_h": 20, + "sandtotal_l": 5, + "sandtotal_r": 17, + "silttotal_h": 65, + "silttotal_l": 50, + "silttotal_r": 56, + "total_frag_volume": 0, + "wfifteenbar_h": 24.2, + "wfifteenbar_l": 17.2, + "wfifteenbar_r": 20.7, + "wthirdbar_h": 35.2, + "wthirdbar_l": 31.2, + "wthirdbar_r": 33.4 + }, + { + "cec7_h": 14.1, + "cec7_l": 7.5, + "cec7_r": 10.8, + "chkey": 79918141, + "claytotal_h": 26, + "claytotal_l": 14, + "claytotal_r": 20, + "cokey": 26772498, + "dbovendry_h": 1.53, + "dbovendry_l": 1.37, + "dbovendry_r": 1.47, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 23, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 2.6, + "lep_l": 1.1, + "lep_r": 1.7, + "mukey": 162416, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.5, + "sandtotal_h": 28, + "sandtotal_l": 14, + "sandtotal_r": 26, + "silttotal_h": 72, + "silttotal_l": 49, + "silttotal_r": 54, + "total_frag_volume": 0, + "wfifteenbar_h": 18.3, + "wfifteenbar_l": 9.1, + "wfifteenbar_r": 13.8, + "wthirdbar_h": 31.9, + "wthirdbar_l": 24.7, + "wthirdbar_r": 28.9 + }, + { + "cec7_h": 31, + "cec7_l": 15, + "cec7_r": 23, + "chkey": 79917895, + "claytotal_h": 35, + "claytotal_l": 28, + "claytotal_r": 28, + "cokey": 26772439, + "dbovendry_h": 1.72, + "dbovendry_l": 1.27, + "dbovendry_r": 1.52, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 36, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 6.2, + "lep_l": 3.1, + "lep_r": 4.2, + "mukey": 162395, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.4, + "sandtotal_h": 20, + "sandtotal_l": 10, + "sandtotal_r": 17, + "silttotal_h": 62, + "silttotal_l": 46.5, + "silttotal_r": 55, + "total_frag_volume": 0, + "wfifteenbar_h": 26.5, + "wfifteenbar_l": 18.8, + "wfifteenbar_r": 20.7, + "wthirdbar_h": 36.4, + "wthirdbar_l": 32.8, + "wthirdbar_r": 33.4 + }, + { + "cec7_h": 21, + "cec7_l": 7, + "cec7_r": 13, + "chkey": 79917897, + "claytotal_h": 25, + "claytotal_l": 13, + "claytotal_r": 19, + "cokey": 26772440, + "dbovendry_h": 1.67, + "dbovendry_l": 1.37, + "dbovendry_r": 1.52, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 15, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 3.5, + "lep_l": 1, + "lep_r": 1.8, + "mukey": 162395, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.5, + "sandtotal_h": 37, + "sandtotal_l": 9, + "sandtotal_r": 15, + "silttotal_h": 78, + "silttotal_l": 50, + "silttotal_r": 66, + "total_frag_volume": 0, + "wfifteenbar_h": 18.4, + "wfifteenbar_l": 8.9, + "wfifteenbar_r": 12.6, + "wthirdbar_h": 32, + "wthirdbar_l": 24.8, + "wthirdbar_r": 28 + }, + { + "cec7_h": 14.8, + "cec7_l": 8.1, + "cec7_r": 9.9, + "chkey": 79917908, + "claytotal_h": 27, + "claytotal_l": 15, + "claytotal_r": 18, + "cokey": 26772442, + "dbovendry_h": 1.67, + "dbovendry_l": 1.37, + "dbovendry_r": 1.52, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 18, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 2.6, + "lep_l": 1, + "lep_r": 1.3, + "mukey": 162396, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 7, + "sandtotal_h": 39, + "sandtotal_l": 34, + "sandtotal_r": 37, + "silttotal_h": 46, + "silttotal_l": 43, + "silttotal_r": 45, + "total_frag_volume": 10, + "wfifteenbar_h": 20.9, + "wfifteenbar_l": 8.9, + "wfifteenbar_r": 15.6, + "wthirdbar_h": 32.2, + "wthirdbar_l": 22.9, + "wthirdbar_r": 28.4 + }, + { + "cec7_h": 20, + "cec7_l": 11, + "cec7_r": 15.5, + "chkey": 79917898, + "claytotal_h": 30, + "claytotal_l": 24, + "claytotal_r": 26, + "cokey": 26772440, + "dbovendry_h": 1.78, + "dbovendry_l": 1.61, + "dbovendry_r": 1.71, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 33, + "hzdept_r": 15, + "hzname": "Bt1", + "lep_h": 4.1, + "lep_l": 2.1, + "lep_r": 2.9, + "mukey": 162395, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.1, + "sandtotal_h": 20, + "sandtotal_l": 5, + "sandtotal_r": 18, + "silttotal_h": 67, + "silttotal_l": 50, + "silttotal_r": 56, + "total_frag_volume": 0, + "wfifteenbar_h": 19.3, + "wfifteenbar_l": 15.1, + "wfifteenbar_r": 16.6, + "wthirdbar_h": 32.5, + "wthirdbar_l": 29.8, + "wthirdbar_r": 30.8 + }, + { + "cec7_h": 16.3, + "cec7_l": 9.7, + "cec7_r": 11.9, + "chkey": 79917909, + "claytotal_h": 30, + "claytotal_l": 19, + "claytotal_r": 22, + "cokey": 26772442, + "dbovendry_h": 1.65, + "dbovendry_l": 1.47, + "dbovendry_r": 1.57, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 38, + "hzdept_r": 18, + "hzname": "Bw", + "lep_h": 3.1, + "lep_l": 1.2, + "lep_r": 1.7, + "mukey": 162396, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 7.3, + "sandtotal_h": 35, + "sandtotal_l": 31, + "sandtotal_r": 33, + "silttotal_h": 46, + "silttotal_l": 43, + "silttotal_r": 45, + "total_frag_volume": 10, + "wfifteenbar_h": 20.7, + "wfifteenbar_l": 10.7, + "wfifteenbar_r": 14.7, + "wthirdbar_h": 32, + "wthirdbar_l": 24.4, + "wthirdbar_r": 27.9 + }, + { + "cec7_h": 13, + "cec7_l": 5.4, + "cec7_r": 9.2, + "chkey": 79917888, + "claytotal_h": 24, + "claytotal_l": 10, + "claytotal_r": 17, + "cokey": 26772438, + "dbovendry_h": 1.66, + "dbovendry_l": 1.36, + "dbovendry_r": 1.51, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 28, + "hzdept_r": 20, + "hzname": "BE", + "lep_h": 2.3, + "lep_l": 0.7, + "lep_r": 1.3, + "mukey": 162395, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 6.2, + "sandtotal_h": 30, + "sandtotal_l": 15, + "sandtotal_r": 20, + "silttotal_h": 75, + "silttotal_l": 50, + "silttotal_r": 63, + "total_frag_volume": 5, + "wfifteenbar_h": 16.5, + "wfifteenbar_l": 6.5, + "wfifteenbar_r": 11.3, + "wthirdbar_h": 30.8, + "wthirdbar_l": 20.9, + "wthirdbar_r": 26 + }, + { + "cec7_h": 20.2, + "cec7_l": 13.2, + "cec7_r": 19.1, + "chkey": 79918139, + "claytotal_h": 38, + "claytotal_l": 25, + "claytotal_r": 36, + "cokey": 26772498, + "dbovendry_h": 1.82, + "dbovendry_l": 1.67, + "dbovendry_r": 1.75, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 97, + "hzdept_r": 23, + "hzname": "2Bt", + "lep_h": 4.4, + "lep_l": 2.1, + "lep_r": 3.9, + "mukey": 162416, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 6.2, + "sandtotal_h": 28, + "sandtotal_l": 8, + "sandtotal_r": 22, + "silttotal_h": 67, + "silttotal_l": 34, + "silttotal_r": 42, + "total_frag_volume": 3, + "wfifteenbar_h": 25.7, + "wfifteenbar_l": 14.7, + "wfifteenbar_r": 23.4, + "wthirdbar_h": 36, + "wthirdbar_l": 27.2, + "wthirdbar_r": 34.1 + }, + { + "cec7_h": 18.6, + "cec7_l": 14.3, + "cec7_r": 15.9, + "chkey": 79917743, + "claytotal_h": 37, + "claytotal_l": 27, + "claytotal_r": 30, + "cokey": 26772404, + "dbovendry_h": 1.85, + "dbovendry_l": 1.68, + "dbovendry_r": 1.78, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 84, + "hzdept_r": 23, + "hzname": "2Bt", + "lep_h": 4.8, + "lep_l": 2.6, + "lep_r": 3.3, + "mukey": 162380, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 5.9, + "sandtotal_h": 45, + "sandtotal_l": 15, + "sandtotal_r": 35, + "silttotal_h": 55, + "silttotal_l": 18, + "silttotal_r": 35, + "total_frag_volume": 6, + "wfifteenbar_h": 25.9, + "wfifteenbar_l": 16.7, + "wfifteenbar_r": 19.8, + "wthirdbar_h": 35.8, + "wthirdbar_l": 28.6, + "wthirdbar_r": 31.3 + }, + { + "cec7_h": 27.2, + "cec7_l": 20.1, + "cec7_r": 23.7, + "chkey": 79918151, + "claytotal_h": 32, + "claytotal_l": 24, + "claytotal_r": 28, + "cokey": 26772500, + "dbovendry_h": 1.62, + "dbovendry_l": 1.47, + "dbovendry_r": 1.57, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 35, + "hzdept_r": 25, + "hzname": "A", + "lep_h": 4.9, + "lep_l": 3.2, + "lep_r": 4, + "mukey": 162416, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.5, + "sandtotal_h": 20, + "sandtotal_l": 5, + "sandtotal_r": 16, + "silttotal_h": 65, + "silttotal_l": 50, + "silttotal_r": 56, + "total_frag_volume": 0, + "wfifteenbar_h": 25.2, + "wfifteenbar_l": 16, + "wfifteenbar_r": 20.7, + "wthirdbar_h": 35.7, + "wthirdbar_l": 30.4, + "wthirdbar_r": 33.3 + }, + { + "cec7_h": 21.9, + "cec7_l": 9.7, + "cec7_r": 14.7, + "chkey": 79918143, + "claytotal_h": 26, + "claytotal_l": 11, + "claytotal_r": 17, + "cokey": 26772499, + "dbovendry_h": 1.72, + "dbovendry_l": 1.27, + "dbovendry_r": 1.52, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 33, + "hzdept_r": 25, + "hzname": "E", + "lep_h": 3.3, + "lep_l": 1.1, + "lep_r": 1.8, + "mukey": 162416, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 5.9, + "sandtotal_h": 25, + "sandtotal_l": 10, + "sandtotal_r": 13, + "silttotal_h": 79, + "silttotal_l": 55, + "silttotal_r": 70, + "total_frag_volume": 0, + "wfifteenbar_h": 19, + "wfifteenbar_l": 7.8, + "wfifteenbar_r": 12.6, + "wthirdbar_h": 32.3, + "wthirdbar_l": 23.6, + "wthirdbar_r": 27.9 + }, + { + "cec7_h": 27.2, + "cec7_l": 20.1, + "cec7_r": 24.5, + "chkey": 79918120, + "claytotal_h": 32, + "claytotal_l": 24, + "claytotal_r": 29, + "cokey": 26772494, + "dbovendry_h": 1.69, + "dbovendry_l": 1.4, + "dbovendry_r": 1.65, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 35, + "hzdept_r": 25, + "hzname": "A", + "lep_h": 5.3, + "lep_l": 3.2, + "lep_r": 4.5, + "mukey": 162415, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.5, + "sandtotal_h": 20, + "sandtotal_l": 5, + "sandtotal_r": 16, + "silttotal_h": 65, + "silttotal_l": 50, + "silttotal_r": 55, + "total_frag_volume": 0, + "wfifteenbar_h": 26.1, + "wfifteenbar_l": 16.2, + "wfifteenbar_r": 21.9, + "wthirdbar_h": 36.2, + "wthirdbar_l": 30.1, + "wthirdbar_r": 34 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79917889, + "claytotal_h": 26, + "claytotal_l": 20, + "claytotal_r": 25, + "cokey": 26772438, + "dbovendry_h": 1.68, + "dbovendry_l": 1.55, + "dbovendry_r": 1.65, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 8.7, + "ecec_l": 5.9, + "ecec_r": 7.9, + "hzdepb_r": 36, + "hzdept_r": 28, + "hzname": "Bt1", + "lep_h": 1.9, + "lep_l": 1, + "lep_r": 1.6, + "mukey": 162395, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 5.5, + "sandtotal_h": 30, + "sandtotal_l": 15, + "sandtotal_r": 20, + "silttotal_h": 65, + "silttotal_l": 50, + "silttotal_r": 55, + "total_frag_volume": 5, + "wfifteenbar_h": 17.5, + "wfifteenbar_l": 11.9, + "wfifteenbar_r": 15.1, + "wthirdbar_h": 31.4, + "wthirdbar_l": 25.8, + "wthirdbar_r": 28.9 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79917901, + "claytotal_h": 30, + "claytotal_l": 20, + "claytotal_r": 25, + "cokey": 26772440, + "dbovendry_h": 1.81, + "dbovendry_l": 1.63, + "dbovendry_r": 1.73, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 10.3, + "ecec_l": 5.9, + "ecec_r": 7.9, + "hzdepb_r": 76, + "hzdept_r": 33, + "hzname": "2Bt2", + "lep_h": 2.4, + "lep_l": 0.9, + "lep_r": 1.5, + "mukey": 162395, + "ph1to1h2o_h": 6, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 5, + "sandtotal_h": 60, + "sandtotal_l": 30, + "sandtotal_r": 40, + "silttotal_h": 50, + "silttotal_l": 15, + "silttotal_r": 35, + "total_frag_volume": 13, + "wfifteenbar_h": 19.1, + "wfifteenbar_l": 10.6, + "wfifteenbar_r": 14.7, + "wthirdbar_h": 32.2, + "wthirdbar_l": 23.4, + "wthirdbar_r": 27.9 + }, + { + "cec7_h": 27.5, + "cec7_l": 18.3, + "cec7_r": 22.9, + "chkey": 79918144, + "claytotal_h": 35, + "claytotal_l": 23, + "claytotal_r": 29, + "cokey": 26772499, + "dbovendry_h": 1.78, + "dbovendry_l": 1.61, + "dbovendry_r": 1.71, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 69, + "hzdept_r": 33, + "hzname": "Bt1", + "lep_h": 4.9, + "lep_l": 2.5, + "lep_r": 3.6, + "mukey": 162416, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 5.8, + "sandtotal_h": 20, + "sandtotal_l": 5, + "sandtotal_r": 10, + "silttotal_h": 72, + "silttotal_l": 47.5, + "silttotal_r": 61, + "total_frag_volume": 0, + "wfifteenbar_h": 22.3, + "wfifteenbar_l": 14.5, + "wfifteenbar_r": 18.4, + "wthirdbar_h": 34.2, + "wthirdbar_l": 29.4, + "wthirdbar_r": 32 + }, + { + "cec7_h": 28.2, + "cec7_l": 19.6, + "cec7_r": 26.5, + "chkey": 79918121, + "claytotal_h": 35, + "claytotal_l": 24, + "claytotal_r": 33, + "cokey": 26772494, + "dbovendry_h": 1.84, + "dbovendry_l": 1.66, + "dbovendry_r": 1.81, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 91, + "hzdept_r": 35, + "hzname": "Btg1", + "lep_h": 5.8, + "lep_l": 3.1, + "lep_r": 5.3, + "mukey": 162415, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 7, + "sandtotal_h": 15, + "sandtotal_l": 5, + "sandtotal_r": 12, + "silttotal_h": 70, + "silttotal_l": 50, + "silttotal_r": 55, + "total_frag_volume": 0, + "wfifteenbar_h": 24.4, + "wfifteenbar_l": 16, + "wfifteenbar_r": 22.5, + "wthirdbar_h": 35.3, + "wthirdbar_l": 30.1, + "wthirdbar_r": 34.3 + }, + { + "cec7_h": 28.2, + "cec7_l": 19.6, + "cec7_r": 27.2, + "chkey": 79918152, + "claytotal_h": 35, + "claytotal_l": 24, + "claytotal_r": 34, + "cokey": 26772500, + "dbovendry_h": 1.81, + "dbovendry_l": 1.65, + "dbovendry_r": 1.8, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 91, + "hzdept_r": 35, + "hzname": "Btg1", + "lep_h": 5.3, + "lep_l": 3.1, + "lep_r": 5.1, + "mukey": 162416, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 7, + "sandtotal_h": 15, + "sandtotal_l": 5, + "sandtotal_r": 12, + "silttotal_h": 70, + "silttotal_l": 50, + "silttotal_r": 54, + "total_frag_volume": 0, + "wfifteenbar_h": 24.4, + "wfifteenbar_l": 16.3, + "wfifteenbar_r": 23.1, + "wthirdbar_h": 35.3, + "wthirdbar_l": 30.6, + "wthirdbar_r": 34.6 + }, + { + "cec7_h": 23.9, + "cec7_l": 18.4, + "cec7_r": 20.1, + "chkey": 79917890, + "claytotal_h": 45, + "claytotal_l": 35, + "claytotal_r": 40, + "cokey": 26772438, + "dbovendry_h": 1.86, + "dbovendry_l": 1.66, + "dbovendry_r": 1.76, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 71, + "hzdept_r": 36, + "hzname": "2Bt2", + "lep_h": 6.6, + "lep_l": 4.1, + "lep_r": 4.8, + "mukey": 162395, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 6.2, + "sandtotal_h": 30, + "sandtotal_l": 10, + "sandtotal_r": 18, + "silttotal_h": 55, + "silttotal_l": 35, + "silttotal_r": 42, + "total_frag_volume": 9, + "wfifteenbar_h": 29.2, + "wfifteenbar_l": 18.1, + "wfifteenbar_r": 22.1, + "wthirdbar_h": 37.6, + "wthirdbar_l": 27.7, + "wthirdbar_r": 31.9 + }, + { + "cec7_h": 25, + "cec7_l": 13, + "cec7_r": 20, + "chkey": 79917893, + "claytotal_h": 35, + "claytotal_l": 25, + "claytotal_r": 33, + "cokey": 26772439, + "dbovendry_h": 1.84, + "dbovendry_l": 1.62, + "dbovendry_r": 1.77, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 91, + "hzdept_r": 36, + "hzname": "Btg1", + "lep_h": 5.4, + "lep_l": 2.5, + "lep_r": 4.5, + "mukey": 162395, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 6.8, + "sandtotal_h": 18, + "sandtotal_l": 8, + "sandtotal_r": 12, + "silttotal_h": 65, + "silttotal_l": 47, + "silttotal_r": 55, + "total_frag_volume": 0, + "wfifteenbar_h": 24.4, + "wfifteenbar_l": 16.9, + "wfifteenbar_r": 22.5, + "wthirdbar_h": 35.3, + "wthirdbar_l": 31, + "wthirdbar_r": 34.3 + }, + { + "cec7_h": 14, + "cec7_l": 6.4, + "cec7_r": 8.1, + "chkey": 79917910, + "claytotal_h": 26, + "claytotal_l": 12, + "claytotal_r": 15, + "cokey": 26772442, + "dbovendry_h": 1.93, + "dbovendry_l": 1.79, + "dbovendry_r": 1.84, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 38, + "hzname": "C", + "lep_h": 2.5, + "lep_l": 0.8, + "lep_r": 1, + "mukey": 162396, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.9, + "sandtotal_h": 48, + "sandtotal_l": 41, + "sandtotal_r": 45, + "silttotal_h": 42, + "silttotal_l": 39, + "silttotal_r": 40, + "total_frag_volume": 10, + "wfifteenbar_h": 19.9, + "wfifteenbar_l": 7.2, + "wfifteenbar_r": 10.9, + "wthirdbar_h": 31.4, + "wthirdbar_l": 19.6, + "wthirdbar_r": 24.2 + }, + { + "cec7_h": 24.7, + "cec7_l": 17.3, + "cec7_r": 21.3, + "chkey": 79918145, + "claytotal_h": 32, + "claytotal_l": 25, + "claytotal_r": 28, + "cokey": 26772499, + "dbovendry_h": 1.91, + "dbovendry_l": 1.73, + "dbovendry_r": 1.83, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 127, + "hzdept_r": 69, + "hzname": "2Bt2", + "lep_h": 4.5, + "lep_l": 2.4, + "lep_r": 3.4, + "mukey": 162416, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 6.9, + "sandtotal_h": 50, + "sandtotal_l": 25, + "sandtotal_r": 40, + "silttotal_h": 48, + "silttotal_l": 18, + "silttotal_r": 32, + "total_frag_volume": 3, + "wfifteenbar_h": 22.2, + "wfifteenbar_l": 15.6, + "wfifteenbar_r": 18.6, + "wthirdbar_h": 34.2, + "wthirdbar_l": 28.8, + "wthirdbar_r": 31.5 + }, + { + "cec7_h": 17.4, + "cec7_l": 5.6, + "cec7_r": 11.8, + "chkey": 79917891, + "claytotal_h": 35, + "claytotal_l": 12, + "claytotal_r": 26, + "cokey": 26772438, + "dbovendry_h": 1.86, + "dbovendry_l": 1.65, + "dbovendry_r": 1.75, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 91, + "hzdept_r": 71, + "hzname": "2BCt", + "lep_h": 3.6, + "lep_l": 0.6, + "lep_r": 1.7, + "mukey": 162395, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.8, + "sandtotal_h": 55, + "sandtotal_l": 25, + "sandtotal_r": 33.5, + "silttotal_h": 50, + "silttotal_l": 30, + "silttotal_r": 40.5, + "total_frag_volume": 12, + "wfifteenbar_h": 23.8, + "wfifteenbar_l": 6, + "wfifteenbar_r": 13.8, + "wthirdbar_h": 35, + "wthirdbar_l": 18, + "wthirdbar_r": 26.4 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79917902, + "claytotal_h": 30, + "claytotal_l": 20, + "claytotal_r": 25, + "cokey": 26772440, + "dbovendry_h": 1.81, + "dbovendry_l": 1.63, + "dbovendry_r": 1.73, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 10.3, + "ecec_l": 5.9, + "ecec_r": 7.9, + "hzdepb_r": 107, + "hzdept_r": 76, + "hzname": "2Bt3", + "lep_h": 2.4, + "lep_l": 0.9, + "lep_r": 1.5, + "mukey": 162395, + "ph1to1h2o_h": 6, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 5.5, + "sandtotal_h": 60, + "sandtotal_l": 30, + "sandtotal_r": 40, + "silttotal_h": 50, + "silttotal_l": 15, + "silttotal_r": 35, + "total_frag_volume": 13, + "wfifteenbar_h": 19.1, + "wfifteenbar_l": 10.6, + "wfifteenbar_r": 14.7, + "wthirdbar_h": 32.2, + "wthirdbar_l": 23.4, + "wthirdbar_r": 27.9 + }, + { + "cec7_h": 14.3, + "cec7_l": 9.1, + "cec7_r": 10.5, + "chkey": 79917744, + "claytotal_h": 27, + "claytotal_l": 15, + "claytotal_r": 20, + "cokey": 26772404, + "dbovendry_h": 1.86, + "dbovendry_l": 1.68, + "dbovendry_r": 1.78, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 94, + "hzdept_r": 84, + "hzname": "2BCt", + "lep_h": 2.9, + "lep_l": 1.3, + "lep_r": 1.4, + "mukey": 162380, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.5, + "sandtotal_h": 60, + "sandtotal_l": 25, + "sandtotal_r": 45, + "silttotal_h": 50, + "silttotal_l": 13, + "silttotal_r": 35, + "total_frag_volume": 6, + "wfifteenbar_h": 17.8, + "wfifteenbar_l": 9.9, + "wfifteenbar_r": 13, + "wthirdbar_h": 30.3, + "wthirdbar_l": 22.3, + "wthirdbar_r": 26.9 + }, + { + "cec7_h": 27.5, + "cec7_l": 16.2, + "cec7_r": 20.8, + "chkey": 79918149, + "claytotal_h": 35, + "claytotal_l": 20, + "claytotal_r": 26, + "cokey": 26772500, + "dbovendry_h": 1.81, + "dbovendry_l": 1.57, + "dbovendry_r": 1.72, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 150, + "hzdept_r": 91, + "hzname": "2Btg2", + "lep_h": 5.1, + "lep_l": 2.1, + "lep_r": 3.3, + "mukey": 162416, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.5, + "sandtotal_h": 45, + "sandtotal_l": 15, + "sandtotal_r": 30, + "silttotal_h": 50, + "silttotal_l": 25, + "silttotal_r": 44, + "total_frag_volume": 5, + "wfifteenbar_h": 22.6, + "wfifteenbar_l": 12, + "wfifteenbar_r": 16.3, + "wthirdbar_h": 34, + "wthirdbar_l": 25.9, + "wthirdbar_r": 29.7 + }, + { + "cec7_h": 27.5, + "cec7_l": 16.2, + "cec7_r": 20.8, + "chkey": 79918122, + "claytotal_h": 35, + "claytotal_l": 20, + "claytotal_r": 26, + "cokey": 26772494, + "dbovendry_h": 1.91, + "dbovendry_l": 1.68, + "dbovendry_r": 1.78, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 150, + "hzdept_r": 91, + "hzname": "2Btg2", + "lep_h": 5.7, + "lep_l": 2, + "lep_r": 3.4, + "mukey": 162415, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7, + "sandtotal_h": 45, + "sandtotal_l": 15, + "sandtotal_r": 30, + "silttotal_h": 50, + "silttotal_l": 25, + "silttotal_r": 44, + "total_frag_volume": 5, + "wfifteenbar_h": 23.5, + "wfifteenbar_l": 12.3, + "wfifteenbar_r": 16.8, + "wthirdbar_h": 34.6, + "wthirdbar_l": 26.1, + "wthirdbar_r": 30 + }, + { + "cec7_h": 23, + "cec7_l": 9, + "cec7_r": 16, + "chkey": 79917894, + "claytotal_h": 35, + "claytotal_l": 20, + "claytotal_r": 25, + "cokey": 26772439, + "dbovendry_h": 1.92, + "dbovendry_l": 1.74, + "dbovendry_r": 1.84, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 150, + "hzdept_r": 91, + "hzname": "2Btg2", + "lep_h": 5.2, + "lep_l": 1.1, + "lep_r": 2.7, + "mukey": 162395, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.2, + "sandtotal_h": 44, + "sandtotal_l": 20, + "sandtotal_r": 34, + "silttotal_h": 60, + "silttotal_l": 21.5, + "silttotal_r": 41, + "total_frag_volume": 5, + "wfifteenbar_h": 23.5, + "wfifteenbar_l": 12.2, + "wfifteenbar_r": 16.2, + "wthirdbar_h": 34.6, + "wthirdbar_l": 25.8, + "wthirdbar_r": 29.6 + }, + { + "cec7_h": 11.7, + "cec7_l": 4.1, + "cec7_r": 8.2, + "chkey": 79917892, + "claytotal_h": 25, + "claytotal_l": 10, + "claytotal_r": 17.5, + "cokey": 26772438, + "dbovendry_h": 2.06, + "dbovendry_l": 1.81, + "dbovendry_r": 1.91, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 91, + "hzname": "2Cd", + "lep_h": 2, + "lep_l": 0.4, + "lep_r": 1, + "mukey": 162395, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 8.1, + "sandtotal_h": 60, + "sandtotal_l": 30, + "sandtotal_r": 42, + "silttotal_h": 50, + "silttotal_l": 28, + "silttotal_r": 40.5, + "total_frag_volume": 12, + "wfifteenbar_h": 19.1, + "wfifteenbar_l": 5.6, + "wfifteenbar_r": 11.6, + "wthirdbar_h": 28.9, + "wthirdbar_l": 13.5, + "wthirdbar_r": 21 + }, + { + "cec7_h": 13.8, + "cec7_l": 6.1, + "cec7_r": 7.9, + "chkey": 79917742, + "claytotal_h": 26, + "claytotal_l": 12, + "claytotal_r": 15, + "cokey": 26772404, + "dbovendry_h": 2.07, + "dbovendry_l": 1.82, + "dbovendry_r": 1.87, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 94, + "hzname": "2Cd", + "lep_h": 2.7, + "lep_l": 0.8, + "lep_r": 1.1, + "mukey": 162380, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.9, + "sandtotal_h": 60, + "sandtotal_l": 35, + "sandtotal_r": 45, + "silttotal_h": 50, + "silttotal_l": 20, + "silttotal_r": 40, + "total_frag_volume": 7, + "wfifteenbar_h": 18.2, + "wfifteenbar_l": 6.8, + "wfifteenbar_r": 10.3, + "wthirdbar_h": 30.4, + "wthirdbar_l": 15.5, + "wthirdbar_r": 24.6 + }, + { + "cec7_h": 15.1, + "cec7_l": 10.1, + "cec7_r": 11.1, + "chkey": 79918140, + "claytotal_h": 30, + "claytotal_l": 20, + "claytotal_r": 22, + "cokey": 26772498, + "dbovendry_h": 2.09, + "dbovendry_l": 1.84, + "dbovendry_r": 1.89, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 97, + "hzname": "2Cd", + "lep_h": 2.9, + "lep_l": 1.4, + "lep_r": 1.6, + "mukey": 162416, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.9, + "sandtotal_h": 50, + "sandtotal_l": 25, + "sandtotal_r": 41, + "silttotal_h": 55, + "silttotal_l": 20, + "silttotal_r": 37, + "total_frag_volume": 14, + "wfifteenbar_h": 19.9, + "wfifteenbar_l": 10.3, + "wfifteenbar_r": 12.9, + "wthirdbar_h": 32.2, + "wthirdbar_l": 19.2, + "wthirdbar_r": 25.6 + }, + { + "cec7_h": 13.4, + "cec7_l": 9.6, + "cec7_r": 11.7, + "chkey": 79917899, + "claytotal_h": 25, + "claytotal_l": 18, + "claytotal_r": 22, + "cokey": 26772440, + "dbovendry_h": 1.75, + "dbovendry_l": 1.58, + "dbovendry_r": 1.68, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 122, + "hzdept_r": 107, + "hzname": "3Bt4", + "lep_h": 2.5, + "lep_l": 1.4, + "lep_r": 1.8, + "mukey": 162395, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.4, + "sandtotal_h": 52, + "sandtotal_l": 30, + "sandtotal_r": 40, + "silttotal_h": 50, + "silttotal_l": 28, + "silttotal_r": 38, + "total_frag_volume": 6, + "wfifteenbar_h": 17.4, + "wfifteenbar_l": 11.4, + "wfifteenbar_r": 14.6, + "wthirdbar_h": 31.4, + "wthirdbar_l": 25.8, + "wthirdbar_r": 28.8 + }, + { + "cec7_h": 14, + "cec7_l": 6, + "cec7_r": 10, + "chkey": 79917900, + "claytotal_h": 22, + "claytotal_l": 15, + "claytotal_r": 18, + "cokey": 26772440, + "dbovendry_h": 2.09, + "dbovendry_l": 1.84, + "dbovendry_r": 1.89, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 122, + "hzname": "3Cd", + "lep_h": 2.2, + "lep_l": 1, + "lep_r": 1.4, + "mukey": 162395, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 8, + "sandtotal_h": 51, + "sandtotal_l": 35, + "sandtotal_r": 40, + "silttotal_h": 50, + "silttotal_l": 31, + "silttotal_r": 42, + "total_frag_volume": 9, + "wfifteenbar_h": 16.4, + "wfifteenbar_l": 9.4, + "wfifteenbar_r": 12.4, + "wthirdbar_h": 30.4, + "wthirdbar_l": 19.1, + "wthirdbar_r": 26.4 + }, + { + "cec7_h": 23.3, + "cec7_l": 8.9, + "cec7_r": 15.7, + "chkey": 79918146, + "claytotal_h": 30, + "claytotal_l": 12, + "claytotal_r": 20, + "cokey": 26772499, + "dbovendry_h": 2, + "dbovendry_l": 1.84, + "dbovendry_r": 1.89, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 150, + "hzdept_r": 127, + "hzname": "2BC", + "lep_h": 4.1, + "lep_l": 1, + "lep_r": 2.2, + "mukey": 162416, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.4, + "sandtotal_h": 50, + "sandtotal_l": 30, + "sandtotal_r": 45, + "silttotal_h": 54, + "silttotal_l": 20, + "silttotal_r": 35, + "total_frag_volume": 5, + "wfifteenbar_h": 22.4, + "wfifteenbar_l": 7.9, + "wfifteenbar_r": 14.1, + "wthirdbar_h": 30.4, + "wthirdbar_l": 18.1, + "wthirdbar_r": 24.6 + }, + { + "cec7_h": 15.8, + "cec7_l": 6.9, + "cec7_r": 13.6, + "chkey": 79918123, + "claytotal_h": 20, + "claytotal_l": 10, + "claytotal_r": 17.5, + "cokey": 26772494, + "dbovendry_h": 1.76, + "dbovendry_l": 1.59, + "dbovendry_r": 1.74, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 150, + "hzname": "2C", + "lep_h": 2, + "lep_l": 0.7, + "lep_r": 1.6, + "mukey": 162415, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.9, + "sandtotal_h": 60, + "sandtotal_l": 30, + "sandtotal_r": 40, + "silttotal_h": 50, + "silttotal_l": 25, + "silttotal_r": 42.5, + "total_frag_volume": 6, + "wfifteenbar_h": 14.6, + "wfifteenbar_l": 5.8, + "wfifteenbar_r": 11.5, + "wthirdbar_h": 29.4, + "wthirdbar_l": 19.4, + "wthirdbar_r": 26 + }, + { + "cec7_h": 16.6, + "cec7_l": 7.6, + "cec7_r": 14, + "chkey": 79918150, + "claytotal_h": 20, + "claytotal_l": 10, + "claytotal_r": 17, + "cokey": 26772500, + "dbovendry_h": 1.83, + "dbovendry_l": 1.69, + "dbovendry_r": 1.79, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 150, + "hzname": "2C", + "lep_h": 2.4, + "lep_l": 0.8, + "lep_r": 1.6, + "mukey": 162416, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.9, + "sandtotal_h": 60, + "sandtotal_l": 30, + "sandtotal_r": 40, + "silttotal_h": 50, + "silttotal_l": 25, + "silttotal_r": 43, + "total_frag_volume": 7, + "wfifteenbar_h": 15, + "wfifteenbar_l": 6.1, + "wfifteenbar_r": 11.5, + "wthirdbar_h": 29.5, + "wthirdbar_l": 20.1, + "wthirdbar_r": 26 + }, + { + "cec7_h": 12, + "cec7_l": 5, + "cec7_r": 8.5, + "chkey": 79917896, + "claytotal_h": 25, + "claytotal_l": 12, + "claytotal_r": 17, + "cokey": 26772439, + "dbovendry_h": 1.81, + "dbovendry_l": 1.58, + "dbovendry_r": 1.73, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 150, + "hzname": "2Cg", + "lep_h": 2.3, + "lep_l": 0.7, + "lep_r": 1.3, + "mukey": 162395, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 8, + "sandtotal_h": 60, + "sandtotal_l": 28, + "sandtotal_r": 40, + "silttotal_h": 50, + "silttotal_l": 22.5, + "silttotal_r": 43, + "total_frag_volume": 6, + "wfifteenbar_h": 12.5, + "wfifteenbar_l": 7.2, + "wfifteenbar_r": 11, + "wthirdbar_h": 27.7, + "wthirdbar_l": 21.4, + "wthirdbar_r": 25.7 + }, + { + "cec7_h": 20.5, + "cec7_l": 8.9, + "cec7_r": 12.1, + "chkey": 79918147, + "claytotal_h": 26, + "claytotal_l": 12, + "claytotal_r": 15, + "cokey": 26772499, + "dbovendry_h": 2.03, + "dbovendry_l": 1.82, + "dbovendry_r": 1.93, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 150, + "hzname": "2Cd", + "lep_h": 3.3, + "lep_l": 0.9, + "lep_r": 1.3, + "mukey": 162416, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 8, + "sandtotal_h": 60, + "sandtotal_l": 35, + "sandtotal_r": 45, + "silttotal_h": 53, + "silttotal_l": 20.5, + "silttotal_r": 40, + "total_frag_volume": 12, + "wfifteenbar_h": 19.5, + "wfifteenbar_l": 7.4, + "wfifteenbar_r": 9.9, + "wthirdbar_h": 29.5, + "wthirdbar_l": 16.9, + "wthirdbar_r": 23.6 + }, + { + "cec7_h": 13.1, + "cec7_l": 5.5, + "cec7_r": 9.8, + "chkey": 79917915, + "claytotal_h": 24, + "claytotal_l": 10, + "claytotal_r": 18, + "cokey": 26772444, + "dbovendry_h": 1.67, + "dbovendry_l": 1.37, + "dbovendry_r": 1.52, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 20, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 2.4, + "lep_l": 0.7, + "lep_r": 1.5, + "mukey": 162397, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 6.2, + "sandtotal_h": 30, + "sandtotal_l": 10, + "sandtotal_r": 18, + "silttotal_h": 80, + "silttotal_l": 50, + "silttotal_r": 64, + "total_frag_volume": 4, + "wfifteenbar_h": 17.9, + "wfifteenbar_l": 7.8, + "wfifteenbar_r": 13.3, + "wthirdbar_h": 31.6, + "wthirdbar_l": 22.3, + "wthirdbar_r": 27.7 + }, + { + "cec7_h": 9.8, + "cec7_l": 3.3, + "cec7_r": 7.1, + "chkey": 79917828, + "claytotal_h": 18, + "claytotal_l": 6, + "claytotal_r": 13, + "cokey": 26772424, + "dbovendry_h": 1.59, + "dbovendry_l": 1.39, + "dbovendry_r": 1.49, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 36, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 1.5, + "lep_l": 0.3, + "lep_r": 1, + "mukey": 162389, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.1, + "sandtotal_h": 45, + "sandtotal_l": 20, + "sandtotal_r": 30, + "silttotal_h": 65, + "silttotal_l": 45, + "silttotal_r": 57, + "total_frag_volume": 0, + "wfifteenbar_h": 13.1, + "wfifteenbar_l": 4.9, + "wfifteenbar_r": 9.6, + "wthirdbar_h": 28.4, + "wthirdbar_l": 20, + "wthirdbar_r": 25.4 + }, + { + "cec7_h": 29.5, + "cec7_l": 23.5, + "cec7_r": 23.7, + "chkey": 79917869, + "claytotal_h": 35, + "claytotal_l": 28, + "claytotal_r": 28, + "cokey": 26772434, + "dbovendry_h": 1.73, + "dbovendry_l": 1.5, + "dbovendry_r": 1.65, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 41, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 6, + "lep_l": 4.3, + "lep_r": 4.3, + "mukey": 162394, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.5, + "sandtotal_h": 19, + "sandtotal_l": 5, + "sandtotal_r": 13, + "silttotal_h": 67, + "silttotal_l": 50, + "silttotal_r": 59, + "total_frag_volume": 0, + "wfifteenbar_h": 27.8, + "wfifteenbar_l": 20.1, + "wfifteenbar_r": 21.4, + "wthirdbar_h": 37, + "wthirdbar_l": 33, + "wthirdbar_r": 33.7 + }, + { + "cec7_h": 13, + "cec7_l": 5.4, + "cec7_r": 9.2, + "chkey": 79917916, + "claytotal_h": 24, + "claytotal_l": 10, + "claytotal_r": 17, + "cokey": 26772444, + "dbovendry_h": 1.67, + "dbovendry_l": 1.37, + "dbovendry_r": 1.52, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 28, + "hzdept_r": 20, + "hzname": "BE", + "lep_h": 2.3, + "lep_l": 0.7, + "lep_r": 1.4, + "mukey": 162397, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 6.2, + "sandtotal_h": 30, + "sandtotal_l": 15, + "sandtotal_r": 20, + "silttotal_h": 75, + "silttotal_l": 50, + "silttotal_r": 63, + "total_frag_volume": 5, + "wfifteenbar_h": 16.5, + "wfifteenbar_l": 6.6, + "wfifteenbar_r": 11.3, + "wthirdbar_h": 30.8, + "wthirdbar_l": 20.9, + "wthirdbar_r": 26 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79917917, + "claytotal_h": 26, + "claytotal_l": 20, + "claytotal_r": 25, + "cokey": 26772444, + "dbovendry_h": 1.73, + "dbovendry_l": 1.53, + "dbovendry_r": 1.63, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 8.7, + "ecec_l": 5.9, + "ecec_r": 7.9, + "hzdepb_r": 36, + "hzdept_r": 28, + "hzname": "Bt1", + "lep_h": 1.9, + "lep_l": 1, + "lep_r": 1.6, + "mukey": 162397, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 5.5, + "sandtotal_h": 30, + "sandtotal_l": 15, + "sandtotal_r": 21, + "silttotal_h": 65, + "silttotal_l": 50, + "silttotal_r": 54, + "total_frag_volume": 5, + "wfifteenbar_h": 17.5, + "wfifteenbar_l": 12, + "wfifteenbar_r": 15.7, + "wthirdbar_h": 31.4, + "wthirdbar_l": 25.9, + "wthirdbar_r": 29.3 + }, + { + "cec7_h": 9.7, + "cec7_l": 3.1, + "cec7_r": 6.9, + "chkey": 79917826, + "claytotal_h": 18, + "claytotal_l": 6, + "claytotal_r": 13, + "cokey": 26772424, + "dbovendry_h": 1.59, + "dbovendry_l": 1.39, + "dbovendry_r": 1.49, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 104, + "hzdept_r": 36, + "hzname": "Bg", + "lep_h": 1.5, + "lep_l": 0.3, + "lep_r": 1, + "mukey": 162389, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 6.1, + "sandtotal_h": 70, + "sandtotal_l": 25, + "sandtotal_r": 55, + "silttotal_h": 57, + "silttotal_l": 24, + "silttotal_r": 32, + "total_frag_volume": 1, + "wfifteenbar_h": 13.1, + "wfifteenbar_l": 3.3, + "wfifteenbar_r": 9.1, + "wthirdbar_h": 22.1, + "wthirdbar_l": 10.9, + "wthirdbar_r": 18.7 + }, + { + "cec7_h": 23.9, + "cec7_l": 18.4, + "cec7_r": 21.2, + "chkey": 79917918, + "claytotal_h": 45, + "claytotal_l": 35, + "claytotal_r": 40, + "cokey": 26772444, + "dbovendry_h": 1.91, + "dbovendry_l": 1.72, + "dbovendry_r": 1.82, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 71, + "hzdept_r": 36, + "hzname": "2Bt2", + "lep_h": 6.6, + "lep_l": 3.9, + "lep_r": 5, + "mukey": 162397, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 6.2, + "sandtotal_h": 30, + "sandtotal_l": 10, + "sandtotal_r": 19, + "silttotal_h": 55, + "silttotal_l": 28, + "silttotal_r": 41, + "total_frag_volume": 9, + "wfifteenbar_h": 26.2, + "wfifteenbar_l": 16.7, + "wfifteenbar_r": 21, + "wthirdbar_h": 36.2, + "wthirdbar_l": 27.4, + "wthirdbar_r": 31.5 + }, + { + "cec7_h": 28.2, + "cec7_l": 21.9, + "cec7_r": 27, + "chkey": 79917870, + "claytotal_h": 35, + "claytotal_l": 28, + "claytotal_r": 34, + "cokey": 26772434, + "dbovendry_h": 1.78, + "dbovendry_l": 1.66, + "dbovendry_r": 1.76, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 81, + "hzdept_r": 41, + "hzname": "Btg1", + "lep_h": 5.8, + "lep_l": 4.1, + "lep_r": 5.5, + "mukey": 162394, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 7, + "sandtotal_h": 19, + "sandtotal_l": 5, + "sandtotal_r": 19, + "silttotal_h": 67, + "silttotal_l": 46, + "silttotal_r": 47, + "total_frag_volume": 0, + "wfifteenbar_h": 23.6, + "wfifteenbar_l": 17.5, + "wfifteenbar_r": 22, + "wthirdbar_h": 34.9, + "wthirdbar_l": 31.4, + "wthirdbar_r": 34.1 + }, + { + "cec7_h": 14.3, + "cec7_l": 6.3, + "cec7_r": 11.5, + "chkey": 79917919, + "claytotal_h": 35, + "claytotal_l": 12, + "claytotal_r": 26, + "cokey": 26772444, + "dbovendry_h": 1.88, + "dbovendry_l": 1.64, + "dbovendry_r": 1.74, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 91, + "hzdept_r": 71, + "hzname": "2BCt", + "lep_h": 4, + "lep_l": 0.4, + "lep_r": 1.6, + "mukey": 162397, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.8, + "sandtotal_h": 55, + "sandtotal_l": 25, + "sandtotal_r": 36, + "silttotal_h": 53, + "silttotal_l": 14, + "silttotal_r": 38, + "total_frag_volume": 12, + "wfifteenbar_h": 23.8, + "wfifteenbar_l": 6.4, + "wfifteenbar_r": 15.5, + "wthirdbar_h": 35, + "wthirdbar_l": 18.8, + "wthirdbar_r": 27.8 + }, + { + "cec7_h": 27.5, + "cec7_l": 16.2, + "cec7_r": 20.5, + "chkey": 79917867, + "claytotal_h": 35, + "claytotal_l": 20, + "claytotal_r": 25, + "cokey": 26772434, + "dbovendry_h": 1.8, + "dbovendry_l": 1.56, + "dbovendry_r": 1.66, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 112, + "hzdept_r": 81, + "hzname": "Btg2", + "lep_h": 5.7, + "lep_l": 1.9, + "lep_r": 3.1, + "mukey": 162394, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.2, + "sandtotal_h": 44, + "sandtotal_l": 20, + "sandtotal_r": 34, + "silttotal_h": 50, + "silttotal_l": 25, + "silttotal_r": 41, + "total_frag_volume": 9, + "wfifteenbar_h": 23.6, + "wfifteenbar_l": 10.8, + "wfifteenbar_r": 15.3, + "wthirdbar_h": 34.9, + "wthirdbar_l": 23.8, + "wthirdbar_r": 28.3 + }, + { + "cec7_h": 10.1, + "cec7_l": 5.1, + "cec7_r": 7.4, + "chkey": 79917920, + "claytotal_h": 25, + "claytotal_l": 10, + "claytotal_r": 17.5, + "cokey": 26772444, + "dbovendry_h": 2.06, + "dbovendry_l": 1.81, + "dbovendry_r": 1.91, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 91, + "hzname": "2Cd", + "lep_h": 2.1, + "lep_l": 0.3, + "lep_r": 1, + "mukey": 162397, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 8.1, + "sandtotal_h": 60, + "sandtotal_l": 30, + "sandtotal_r": 42, + "silttotal_h": 50, + "silttotal_l": 18, + "silttotal_r": 40.5, + "total_frag_volume": 12, + "wfifteenbar_h": 19.3, + "wfifteenbar_l": 5.8, + "wfifteenbar_r": 11.7, + "wthirdbar_h": 29.2, + "wthirdbar_l": 14.1, + "wthirdbar_r": 21.2 + }, + { + "cec7_h": 14.3, + "cec7_l": 3.1, + "cec7_r": 7.9, + "chkey": 79917827, + "claytotal_h": 27, + "claytotal_l": 6, + "claytotal_r": 15, + "cokey": 26772424, + "dbovendry_h": 1.64, + "dbovendry_l": 1.46, + "dbovendry_r": 1.56, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 152, + "hzdept_r": 104, + "hzname": "Cg", + "lep_h": 2.9, + "lep_l": 0.3, + "lep_r": 1.2, + "mukey": 162389, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 6.6, + "sandtotal_h": 74, + "sandtotal_l": 25, + "sandtotal_r": 55, + "silttotal_h": 50, + "silttotal_l": 20, + "silttotal_r": 30, + "total_frag_volume": 1, + "wfifteenbar_h": 18.9, + "wfifteenbar_l": 3.1, + "wfifteenbar_r": 10.4, + "wthirdbar_h": 26.2, + "wthirdbar_l": 9.9, + "wthirdbar_r": 19.8 + }, + { + "cec7_h": 14.3, + "cec7_l": 9.4, + "cec7_r": 11.9, + "chkey": 79917868, + "claytotal_h": 19, + "claytotal_l": 12, + "claytotal_r": 15, + "cokey": 26772434, + "dbovendry_h": 1.75, + "dbovendry_l": 1.67, + "dbovendry_r": 1.72, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 112, + "hzname": "C", + "lep_h": 1.9, + "lep_l": 0.9, + "lep_r": 1.3, + "mukey": 162394, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.9, + "sandtotal_h": 60, + "sandtotal_l": 31, + "sandtotal_r": 36, + "silttotal_h": 50, + "silttotal_l": 22, + "silttotal_r": 49, + "total_frag_volume": 9, + "wfifteenbar_h": 14.1, + "wfifteenbar_l": 7.4, + "wfifteenbar_r": 10.1, + "wthirdbar_h": 29.1, + "wthirdbar_l": 20.9, + "wthirdbar_r": 24.5 + }, + { + "cec7_h": 29.5, + "cec7_l": 21.2, + "cec7_r": 25.4, + "chkey": 79917905, + "claytotal_h": 35, + "claytotal_l": 25, + "claytotal_r": 30, + "cokey": 26772441, + "dbovendry_h": 1.72, + "dbovendry_l": 1.5, + "dbovendry_r": 1.65, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 36, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 5.5, + "lep_l": 3.4, + "lep_r": 4.4, + "mukey": 162396, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.3, + "sandtotal_h": 20, + "sandtotal_l": 10, + "sandtotal_r": 13, + "silttotal_h": 59, + "silttotal_l": 50, + "silttotal_r": 57, + "total_frag_volume": 0, + "wfifteenbar_h": 27.8, + "wfifteenbar_l": 18.4, + "wfifteenbar_r": 23.1, + "wthirdbar_h": 37, + "wthirdbar_l": 32, + "wthirdbar_r": 34.7 + }, + { + "cec7_h": 10, + "cec7_l": 4.4, + "cec7_r": 6.7, + "chkey": 79917837, + "claytotal_h": 18, + "claytotal_l": 8, + "claytotal_r": 12, + "cokey": 26772426, + "dbovendry_h": 1.64, + "dbovendry_l": 1.34, + "dbovendry_r": 1.49, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 15, + "hzdept_r": 0, + "hzname": "A", + "lep_h": 1.8, + "lep_l": 0.6, + "lep_r": 1.1, + "mukey": 162389, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 5.9, + "sandtotal_h": 35, + "sandtotal_l": 12, + "sandtotal_r": 24, + "silttotal_h": 80, + "silttotal_l": 50, + "silttotal_r": 64, + "total_frag_volume": 0, + "wfifteenbar_h": 20.5, + "wfifteenbar_l": 10.3, + "wfifteenbar_r": 15.9, + "wthirdbar_h": 33.2, + "wthirdbar_l": 26, + "wthirdbar_r": 30.4 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79917834, + "claytotal_h": 32, + "claytotal_l": 20, + "claytotal_r": 26, + "cokey": 26772426, + "dbovendry_h": 1.66, + "dbovendry_l": 1.48, + "dbovendry_r": 1.58, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 16.3, + "ecec_l": 5.9, + "ecec_r": 8.7, + "hzdepb_r": 23, + "hzdept_r": 15, + "hzname": "Bt1", + "lep_h": 3.4, + "lep_l": 1.1, + "lep_r": 1.8, + "mukey": 162389, + "ph1to1h2o_h": 5.5, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 5, + "sandtotal_h": 32, + "sandtotal_l": 12, + "sandtotal_r": 20, + "silttotal_h": 65, + "silttotal_l": 40, + "silttotal_r": 54, + "total_frag_volume": 0, + "wfifteenbar_h": 20.5, + "wfifteenbar_l": 12, + "wfifteenbar_r": 16.3, + "wthirdbar_h": 33.2, + "wthirdbar_l": 27.5, + "wthirdbar_r": 30.6 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79917838, + "claytotal_h": 48, + "claytotal_l": 35, + "claytotal_r": 42, + "cokey": 26772426, + "dbovendry_h": 1.97, + "dbovendry_l": 1.72, + "dbovendry_r": 1.82, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 26, + "ecec_l": 11.3, + "ecec_r": 15.1, + "hzdepb_r": 112, + "hzdept_r": 23, + "hzname": "2Bt2", + "lep_h": 5.9, + "lep_l": 2.7, + "lep_r": 3.7, + "mukey": 162389, + "ph1to1h2o_h": 5.5, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 5.3, + "sandtotal_h": 35, + "sandtotal_l": 15, + "sandtotal_r": 20, + "silttotal_h": 45, + "silttotal_l": 30, + "silttotal_r": 38, + "total_frag_volume": 4, + "wfifteenbar_h": 23.7, + "wfifteenbar_l": 15.3, + "wfifteenbar_r": 20.1, + "wthirdbar_h": 33.2, + "wthirdbar_l": 25.1, + "wthirdbar_r": 31.9 + }, + { + "cec7_h": 28.2, + "cec7_l": 19.7, + "cec7_r": 21.2, + "chkey": 79917903, + "claytotal_h": 35, + "claytotal_l": 25, + "claytotal_r": 26, + "cokey": 26772441, + "dbovendry_h": 1.78, + "dbovendry_l": 1.61, + "dbovendry_r": 1.71, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 51, + "hzdept_r": 36, + "hzname": "Bt1", + "lep_h": 5.3, + "lep_l": 3.2, + "lep_r": 3.5, + "mukey": 162396, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 6.9, + "sandtotal_h": 19, + "sandtotal_l": 2, + "sandtotal_r": 12, + "silttotal_h": 66, + "silttotal_l": 47, + "silttotal_r": 62, + "total_frag_volume": 0, + "wfifteenbar_h": 23.6, + "wfifteenbar_l": 15.7, + "wfifteenbar_r": 17.3, + "wthirdbar_h": 34.9, + "wthirdbar_l": 30.2, + "wthirdbar_r": 31.3 + }, + { + "cec7_h": 28.2, + "cec7_l": 19.7, + "cec7_r": 24.1, + "chkey": 79917904, + "claytotal_h": 35, + "claytotal_l": 25, + "claytotal_r": 30, + "cokey": 26772441, + "dbovendry_h": 1.78, + "dbovendry_l": 1.61, + "dbovendry_r": 1.71, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 124, + "hzdept_r": 51, + "hzname": "Bt2", + "lep_h": 5.3, + "lep_l": 3.2, + "lep_r": 4.2, + "mukey": 162396, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 7.3, + "sandtotal_h": 19, + "sandtotal_l": 2, + "sandtotal_r": 12, + "silttotal_h": 70, + "silttotal_l": 46, + "silttotal_r": 58, + "total_frag_volume": 0, + "wfifteenbar_h": 23.6, + "wfifteenbar_l": 15.7, + "wfifteenbar_r": 19.7, + "wthirdbar_h": 34.9, + "wthirdbar_l": 30.2, + "wthirdbar_r": 32.7 + }, + { + "cec7_h": 17.9, + "cec7_l": 12.1, + "cec7_r": 15.2, + "chkey": 79917835, + "claytotal_h": 34, + "claytotal_l": 24, + "claytotal_r": 29, + "cokey": 26772426, + "dbovendry_h": 1.73, + "dbovendry_l": 1.64, + "dbovendry_r": 1.69, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 178, + "hzdept_r": 112, + "hzname": "2Bt3", + "lep_h": 3.6, + "lep_l": 2, + "lep_r": 2.8, + "mukey": 162389, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 6.5, + "sandtotal_h": 44, + "sandtotal_l": 20, + "sandtotal_r": 30, + "silttotal_h": 46, + "silttotal_l": 25, + "silttotal_r": 41, + "total_frag_volume": 4, + "wfifteenbar_h": 22.1, + "wfifteenbar_l": 14.2, + "wfifteenbar_r": 18.4, + "wthirdbar_h": 33.5, + "wthirdbar_l": 27.4, + "wthirdbar_r": 31.1 + }, + { + "cec7_h": 24.6, + "cec7_l": 12.5, + "cec7_r": 19.7, + "chkey": 79917906, + "claytotal_h": 30, + "claytotal_l": 15, + "claytotal_r": 24, + "cokey": 26772441, + "dbovendry_h": 1.79, + "dbovendry_l": 1.61, + "dbovendry_r": 1.71, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 152, + "hzdept_r": 124, + "hzname": "2Bt3", + "lep_h": 4.3, + "lep_l": 1.4, + "lep_r": 3.1, + "mukey": 162396, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 7.3, + "sandtotal_h": 45, + "sandtotal_l": 15, + "sandtotal_r": 35, + "silttotal_h": 60, + "silttotal_l": 40, + "silttotal_r": 41, + "total_frag_volume": 2, + "wfifteenbar_h": 20.6, + "wfifteenbar_l": 8.8, + "wfifteenbar_r": 15.9, + "wthirdbar_h": 33.3, + "wthirdbar_l": 23.2, + "wthirdbar_r": 30.1 + }, + { + "cec7_h": 20.3, + "cec7_l": 7.9, + "cec7_r": 12.7, + "chkey": 79917907, + "claytotal_h": 25, + "claytotal_l": 9, + "claytotal_r": 15, + "cokey": 26772441, + "dbovendry_h": 1.81, + "dbovendry_l": 1.68, + "dbovendry_r": 1.73, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 152, + "hzname": "2C", + "lep_h": 3.2, + "lep_l": 0.8, + "lep_r": 1.4, + "mukey": 162396, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 8.1, + "sandtotal_h": 56, + "sandtotal_l": 30, + "sandtotal_r": 40, + "silttotal_h": 50, + "silttotal_l": 34, + "silttotal_r": 45, + "total_frag_volume": 6, + "wfifteenbar_h": 17.8, + "wfifteenbar_l": 5.9, + "wfifteenbar_r": 10.3, + "wthirdbar_h": 31.3, + "wthirdbar_l": 19.7, + "wthirdbar_r": 24.9 + }, + { + "cec7_h": 17.9, + "cec7_l": 9.1, + "cec7_r": 13.6, + "chkey": 79917836, + "claytotal_h": 34, + "claytotal_l": 18, + "claytotal_r": 26, + "cokey": 26772426, + "dbovendry_h": 1.91, + "dbovendry_l": 1.73, + "dbovendry_r": 1.83, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 178, + "hzname": "2C", + "lep_h": 3.6, + "lep_l": 1.3, + "lep_r": 2.3, + "mukey": 162389, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.9, + "sandtotal_h": 50, + "sandtotal_l": 25, + "sandtotal_r": 40, + "silttotal_h": 41, + "silttotal_l": 24, + "silttotal_r": 34, + "total_frag_volume": 8, + "wfifteenbar_h": 23.2, + "wfifteenbar_l": 10.5, + "wfifteenbar_r": 16.6, + "wthirdbar_h": 34.1, + "wthirdbar_l": 23.7, + "wthirdbar_r": 29.2 + }, + { + "cec7_h": 14.7, + "cec7_l": 10.8, + "cec7_r": 13.1, + "chkey": 79917935, + "claytotal_h": 27, + "claytotal_l": 20, + "claytotal_r": 24, + "cokey": 26772448, + "dbovendry_h": 1.54, + "dbovendry_l": 1.47, + "dbovendry_r": 1.49, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 10, + "hzdept_r": 0, + "hzname": "A", + "lep_h": 3, + "lep_l": 1.3, + "lep_r": 2.1, + "mukey": 162398, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 6.3, + "sandtotal_h": 30, + "sandtotal_l": 21, + "sandtotal_r": 25, + "silttotal_h": 55, + "silttotal_l": 50, + "silttotal_r": 51, + "total_frag_volume": 11, + "wfifteenbar_h": 20.1, + "wfifteenbar_l": 12.9, + "wfifteenbar_r": 16.6, + "wthirdbar_h": 33, + "wthirdbar_l": 26.9, + "wthirdbar_r": 30.1 + }, + { + "cec7_h": 14.1, + "cec7_l": 6.5, + "cec7_r": 10.3, + "chkey": 79917839, + "claytotal_h": 26, + "claytotal_l": 12, + "claytotal_r": 19, + "cokey": 26772427, + "dbovendry_h": 1.72, + "dbovendry_l": 1.27, + "dbovendry_r": 1.5, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 18, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 2.8, + "lep_l": 0.8, + "lep_r": 1.6, + "mukey": 162389, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 5.9, + "sandtotal_h": 20, + "sandtotal_l": 5, + "sandtotal_r": 12, + "silttotal_h": 80, + "silttotal_l": 54, + "silttotal_r": 69, + "total_frag_volume": 0, + "wfifteenbar_h": 18.7, + "wfifteenbar_l": 7.5, + "wfifteenbar_r": 13.5, + "wthirdbar_h": 32.2, + "wthirdbar_l": 22, + "wthirdbar_r": 28.7 + }, + { + "cec7_h": 13.1, + "cec7_l": 5.4, + "cec7_r": 8.7, + "chkey": 79917822, + "claytotal_h": 24, + "claytotal_l": 10, + "claytotal_r": 16, + "cokey": 26772423, + "dbovendry_h": 1.66, + "dbovendry_l": 1.36, + "dbovendry_r": 1.51, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 20, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 2.3, + "lep_l": 0.7, + "lep_r": 1.3, + "mukey": 162389, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 5.9, + "sandtotal_h": 26, + "sandtotal_l": 5, + "sandtotal_r": 13, + "silttotal_h": 80, + "silttotal_l": 60, + "silttotal_r": 71, + "total_frag_volume": 0, + "wfifteenbar_h": 17.9, + "wfifteenbar_l": 7, + "wfifteenbar_r": 12, + "wthirdbar_h": 31.6, + "wthirdbar_l": 22.4, + "wthirdbar_r": 27.5 + }, + { + "cec7_h": 33.2, + "cec7_l": 8.4, + "cec7_r": 20.7, + "chkey": 79917862, + "claytotal_h": 40, + "claytotal_l": 9, + "claytotal_r": 24, + "cokey": 26772433, + "dbovendry_h": 1.7, + "dbovendry_l": 1.49, + "dbovendry_r": 1.53, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 25, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 7.2, + "lep_l": 0.9, + "lep_r": 3.4, + "mukey": 162394, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.5, + "sandtotal_h": 20, + "sandtotal_l": 5, + "sandtotal_r": 17, + "silttotal_h": 80, + "silttotal_l": 40, + "silttotal_r": 59, + "total_frag_volume": 0, + "wfifteenbar_h": 29, + "wfifteenbar_l": 8.8, + "wfifteenbar_r": 18.9, + "wthirdbar_h": 37.6, + "wthirdbar_l": 24.3, + "wthirdbar_r": 32.3 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79917844, + "claytotal_h": 26, + "claytotal_l": 12, + "claytotal_r": 19, + "cokey": 26772428, + "dbovendry_h": 1.44, + "dbovendry_l": 1.24, + "dbovendry_r": 1.34, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 4.7, + "ecec_l": 2, + "ecec_r": 3.3, + "hzdepb_r": 13, + "hzdept_r": 0, + "hzname": "A", + "lep_h": 1.2, + "lep_l": 0.5, + "lep_r": 0.9, + "mukey": 162389, + "ph1to1h2o_h": 5.5, + "ph1to1h2o_l": 3.5, + "ph1to1h2o_r": 4.8, + "sandtotal_h": 15, + "sandtotal_l": 5, + "sandtotal_r": 8, + "silttotal_h": 83, + "silttotal_l": 60, + "silttotal_r": 73, + "total_frag_volume": 2, + "wfifteenbar_h": 18.2, + "wfifteenbar_l": 8.3, + "wfifteenbar_r": 13.2, + "wthirdbar_h": 31.8, + "wthirdbar_l": 23.3, + "wthirdbar_r": 28.1 + }, + { + "cec7_h": 15.8, + "cec7_l": 9.1, + "cec7_r": 14.1, + "chkey": 79917936, + "claytotal_h": 35, + "claytotal_l": 18, + "claytotal_r": 27, + "cokey": 26772448, + "dbovendry_h": 1.62, + "dbovendry_l": 1.51, + "dbovendry_r": 1.54, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 30, + "hzdept_r": 10, + "hzname": "Bw", + "lep_h": 4.5, + "lep_l": 0.9, + "lep_r": 2.5, + "mukey": 162398, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 7, + "sandtotal_h": 50, + "sandtotal_l": 20, + "sandtotal_r": 38, + "silttotal_h": 50, + "silttotal_l": 20, + "silttotal_r": 35, + "total_frag_volume": 14, + "wfifteenbar_h": 21.8, + "wfifteenbar_l": 9.8, + "wfifteenbar_r": 15.9, + "wthirdbar_h": 33.9, + "wthirdbar_l": 23.9, + "wthirdbar_r": 29.5 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79917845, + "claytotal_h": 34, + "claytotal_l": 20, + "claytotal_r": 28, + "cokey": 26772428, + "dbovendry_h": 1.54, + "dbovendry_l": 1.24, + "dbovendry_r": 1.39, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 6.7, + "ecec_l": 3.6, + "ecec_r": 5.2, + "hzdepb_r": 58, + "hzdept_r": 13, + "hzname": "2Bt", + "lep_h": 1.9, + "lep_l": 0.3, + "lep_r": 1, + "mukey": 162389, + "ph1to1h2o_h": 5.5, + "ph1to1h2o_l": 3.5, + "ph1to1h2o_r": 4.5, + "sandtotal_h": 15, + "sandtotal_l": 1, + "sandtotal_r": 4, + "silttotal_h": 79, + "silttotal_l": 51, + "silttotal_r": 68, + "total_frag_volume": 26, + "wfifteenbar_h": 19.7, + "wfifteenbar_l": 5.7, + "wfifteenbar_r": 12.3, + "wthirdbar_h": 31.7, + "wthirdbar_l": 13.5, + "wthirdbar_r": 22.8 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79917840, + "claytotal_h": 33, + "claytotal_l": 22, + "claytotal_r": 26, + "cokey": 26772427, + "dbovendry_h": 1.73, + "dbovendry_l": 1.49, + "dbovendry_r": 1.64, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 16.9, + "ecec_l": 7.2, + "ecec_r": 9.4, + "hzdepb_r": 41, + "hzdept_r": 18, + "hzname": "Bt1", + "lep_h": 3.7, + "lep_l": 1.3, + "lep_r": 2, + "mukey": 162389, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 5.5, + "sandtotal_h": 25, + "sandtotal_l": 10, + "sandtotal_r": 20, + "silttotal_h": 68, + "silttotal_l": 50, + "silttotal_r": 54, + "total_frag_volume": 0, + "wfifteenbar_h": 21.1, + "wfifteenbar_l": 12.5, + "wfifteenbar_r": 16.5, + "wthirdbar_h": 33.6, + "wthirdbar_l": 26.3, + "wthirdbar_r": 30.7 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79917823, + "claytotal_h": 30, + "claytotal_l": 22, + "claytotal_r": 26, + "cokey": 26772423, + "dbovendry_h": 1.69, + "dbovendry_l": 1.54, + "dbovendry_r": 1.64, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 15.1, + "ecec_l": 6.6, + "ecec_r": 8.7, + "hzdepb_r": 61, + "hzdept_r": 20, + "hzname": "Bt", + "lep_h": 3, + "lep_l": 1.3, + "lep_r": 1.8, + "mukey": 162389, + "ph1to1h2o_h": 5.5, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 4.9, + "sandtotal_h": 28, + "sandtotal_l": 5, + "sandtotal_r": 8, + "silttotal_h": 70, + "silttotal_l": 50, + "silttotal_r": 66, + "total_frag_volume": 0, + "wfifteenbar_h": 20, + "wfifteenbar_l": 13.4, + "wfifteenbar_r": 16.8, + "wthirdbar_h": 32.9, + "wthirdbar_l": 28.3, + "wthirdbar_r": 31 + }, + { + "cec7_h": 33.2, + "cec7_l": 8.3, + "cec7_r": 22.2, + "chkey": 79917863, + "claytotal_h": 40, + "claytotal_l": 9, + "claytotal_r": 26, + "cokey": 26772433, + "dbovendry_h": 1.61, + "dbovendry_l": 1.42, + "dbovendry_r": 1.47, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 35, + "hzdept_r": 25, + "hzname": "A", + "lep_h": 7.2, + "lep_l": 0.9, + "lep_r": 3.8, + "mukey": 162394, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.5, + "sandtotal_h": 20, + "sandtotal_l": 5, + "sandtotal_r": 16, + "silttotal_h": 80, + "silttotal_l": 40, + "silttotal_r": 58, + "total_frag_volume": 0, + "wfifteenbar_h": 27.6, + "wfifteenbar_l": 7.1, + "wfifteenbar_r": 18.3, + "wthirdbar_h": 36.9, + "wthirdbar_l": 22.5, + "wthirdbar_r": 31.9 + }, + { + "cec7_h": 15.3, + "cec7_l": 9.1, + "cec7_r": 11.5, + "chkey": 79917937, + "claytotal_h": 35, + "claytotal_l": 18, + "claytotal_r": 26, + "cokey": 26772448, + "dbovendry_h": 1.6, + "dbovendry_l": 1.5, + "dbovendry_r": 1.52, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 30, + "hzname": "C", + "lep_h": 4.5, + "lep_l": 0.8, + "lep_r": 1.8, + "mukey": 162398, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.9, + "sandtotal_h": 39, + "sandtotal_l": 20, + "sandtotal_r": 38, + "silttotal_h": 50, + "silttotal_l": 26, + "silttotal_r": 36, + "total_frag_volume": 14, + "wfifteenbar_h": 20.5, + "wfifteenbar_l": 9.2, + "wfifteenbar_r": 14.4, + "wthirdbar_h": 33.2, + "wthirdbar_l": 23.4, + "wthirdbar_r": 28.5 + }, + { + "cec7_h": 28.2, + "cec7_l": 19.6, + "cec7_r": 26.5, + "chkey": 79917864, + "claytotal_h": 35, + "claytotal_l": 24, + "claytotal_r": 33, + "cokey": 26772433, + "dbovendry_h": 1.6, + "dbovendry_l": 1.56, + "dbovendry_r": 1.58, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 91, + "hzdept_r": 35, + "hzname": "Btg1", + "lep_h": 5.8, + "lep_l": 3.1, + "lep_r": 5.3, + "mukey": 162394, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 7, + "sandtotal_h": 15, + "sandtotal_l": 5, + "sandtotal_r": 12, + "silttotal_h": 66, + "silttotal_l": 50, + "silttotal_r": 55, + "total_frag_volume": 0, + "wfifteenbar_h": 21.2, + "wfifteenbar_l": 13.9, + "wfifteenbar_r": 19.6, + "wthirdbar_h": 33.6, + "wthirdbar_l": 28.6, + "wthirdbar_r": 32.7 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79917841, + "claytotal_h": 39, + "claytotal_l": 24, + "claytotal_r": 30, + "cokey": 26772427, + "dbovendry_h": 1.73, + "dbovendry_l": 1.46, + "dbovendry_r": 1.61, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 20.4, + "ecec_l": 7.9, + "ecec_r": 11.1, + "hzdepb_r": 114, + "hzdept_r": 41, + "hzname": "2Bt2", + "lep_h": 4.6, + "lep_l": 1.5, + "lep_r": 2.3, + "mukey": 162389, + "ph1to1h2o_h": 5.5, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 5, + "sandtotal_h": 35, + "sandtotal_l": 20, + "sandtotal_r": 28, + "silttotal_h": 56, + "silttotal_l": 26, + "silttotal_r": 42, + "total_frag_volume": 7, + "wfifteenbar_h": 24.9, + "wfifteenbar_l": 12.6, + "wfifteenbar_r": 17.8, + "wthirdbar_h": 35.3, + "wthirdbar_l": 24.9, + "wthirdbar_r": 30.1 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79917846, + "claytotal_h": 45, + "claytotal_l": 27, + "claytotal_r": 40, + "cokey": 26772428, + "dbovendry_h": 1.53, + "dbovendry_l": 1.23, + "dbovendry_r": 1.38, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 9, + "ecec_l": 4.9, + "ecec_r": 7.6, + "hzdepb_r": 76, + "hzdept_r": 58, + "hzname": "2CB", + "lep_h": 2, + "lep_l": 0.3, + "lep_r": 0.8, + "mukey": 162389, + "ph1to1h2o_h": 5.5, + "ph1to1h2o_l": 3.5, + "ph1to1h2o_r": 4.5, + "sandtotal_h": 15, + "sandtotal_l": 5, + "sandtotal_r": 9, + "silttotal_h": 60, + "silttotal_l": 40, + "silttotal_r": 51, + "total_frag_volume": 66, + "wfifteenbar_h": 17, + "wfifteenbar_l": 3.7, + "wfifteenbar_r": 7.7, + "wthirdbar_h": 21.4, + "wthirdbar_l": 6.6, + "wthirdbar_r": 10.6 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79917824, + "claytotal_h": 26, + "claytotal_l": 20, + "claytotal_r": 23, + "cokey": 26772423, + "dbovendry_h": 1.91, + "dbovendry_l": 1.66, + "dbovendry_r": 1.79, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 12.8, + "ecec_l": 6.4, + "ecec_r": 8.2, + "hzdepb_r": 188, + "hzdept_r": 61, + "hzname": "2Btx", + "lep_h": 1.6, + "lep_l": 0.8, + "lep_r": 1.1, + "mukey": 162389, + "ph1to1h2o_h": 6, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 4.9, + "sandtotal_h": 40, + "sandtotal_l": 10, + "sandtotal_r": 26, + "silttotal_h": 64, + "silttotal_l": 40, + "silttotal_r": 51, + "total_frag_volume": 2, + "wfifteenbar_h": 18.4, + "wfifteenbar_l": 13.3, + "wfifteenbar_r": 16, + "wthirdbar_h": 31.6, + "wthirdbar_l": 24.6, + "wthirdbar_r": 30 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79917847, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26772428, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 101, + "hzdept_r": 76, + "hzname": "3R", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 162389, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": 26.6, + "cec7_l": 16.2, + "cec7_r": 20.3, + "chkey": 79917865, + "claytotal_h": 35, + "claytotal_l": 20, + "claytotal_r": 26, + "cokey": 26772433, + "dbovendry_h": 1.76, + "dbovendry_l": 1.54, + "dbovendry_r": 1.64, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 150, + "hzdept_r": 91, + "hzname": "2Btg2", + "lep_h": 5.6, + "lep_l": 1.9, + "lep_r": 3.3, + "mukey": 162394, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.5, + "sandtotal_h": 45, + "sandtotal_l": 15, + "sandtotal_r": 30, + "silttotal_h": 65, + "silttotal_l": 22, + "silttotal_r": 44, + "total_frag_volume": 5, + "wfifteenbar_h": 21.7, + "wfifteenbar_l": 11.4, + "wfifteenbar_r": 15.5, + "wthirdbar_h": 33.7, + "wthirdbar_l": 25.4, + "wthirdbar_r": 29.1 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79917842, + "claytotal_h": 80, + "claytotal_l": 42, + "claytotal_r": 54, + "cokey": 26772427, + "dbovendry_h": 2.06, + "dbovendry_l": 1.62, + "dbovendry_r": 1.77, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 46.7, + "ecec_l": 15.1, + "ecec_r": 21.8, + "hzdepb_r": 132, + "hzdept_r": 114, + "hzname": "3Bt3", + "lep_h": 11, + "lep_l": 2.5, + "lep_r": 4.9, + "mukey": 162389, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 5.5, + "sandtotal_h": 20, + "sandtotal_l": 5, + "sandtotal_r": 18, + "silttotal_h": 53, + "silttotal_l": 15, + "silttotal_r": 28, + "total_frag_volume": 13, + "wfifteenbar_h": 35.9, + "wfifteenbar_l": 10.6, + "wfifteenbar_r": 26.1, + "wthirdbar_h": 39.9, + "wthirdbar_l": 16.2, + "wthirdbar_r": 32.6 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79917843, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26772427, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 157, + "hzdept_r": 132, + "hzname": "4R", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 162389, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": 14.9, + "cec7_l": 7, + "cec7_r": 13, + "chkey": 79917866, + "claytotal_h": 20, + "claytotal_l": 10, + "claytotal_r": 18, + "cokey": 26772433, + "dbovendry_h": 1.63, + "dbovendry_l": 1.44, + "dbovendry_r": 1.53, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 150, + "hzname": "2C", + "lep_h": 1.9, + "lep_l": 0.6, + "lep_r": 1.5, + "mukey": 162394, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.9, + "sandtotal_h": 60, + "sandtotal_l": 30, + "sandtotal_r": 40, + "silttotal_h": 50, + "silttotal_l": 22, + "silttotal_r": 42, + "total_frag_volume": 6, + "wfifteenbar_h": 13, + "wfifteenbar_l": 5.1, + "wfifteenbar_r": 10.4, + "wthirdbar_h": 28.1, + "wthirdbar_l": 18.6, + "wthirdbar_r": 25 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79917825, + "claytotal_h": 40, + "claytotal_l": 25, + "claytotal_r": 32, + "cokey": 26772423, + "dbovendry_h": 1.91, + "dbovendry_l": 1.72, + "dbovendry_r": 1.82, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 21, + "ecec_l": 8.3, + "ecec_r": 12, + "hzdepb_r": 200, + "hzdept_r": 188, + "hzname": "3Bt", + "lep_h": 4.7, + "lep_l": 1.5, + "lep_r": 2.6, + "mukey": 162389, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 5.5, + "sandtotal_h": 40, + "sandtotal_l": 20, + "sandtotal_r": 26, + "silttotal_h": 50, + "silttotal_l": 30, + "silttotal_r": 42, + "total_frag_volume": 8, + "wfifteenbar_h": 27.9, + "wfifteenbar_l": 14, + "wfifteenbar_r": 20.8, + "wthirdbar_h": 37.4, + "wthirdbar_l": 23.9, + "wthirdbar_r": 31.2 + }, + { + "cec7_h": 18.9, + "cec7_l": 7.5, + "cec7_r": 10.3, + "chkey": 79917938, + "claytotal_h": 35, + "claytotal_l": 14, + "claytotal_r": 19, + "cokey": 26772449, + "dbovendry_h": 1.67, + "dbovendry_l": 1.37, + "dbovendry_r": 1.52, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 23, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 4.6, + "lep_l": 1, + "lep_r": 1.6, + "mukey": 162398, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 6.2, + "sandtotal_h": 40, + "sandtotal_l": 10, + "sandtotal_r": 24, + "silttotal_h": 76, + "silttotal_l": 32, + "silttotal_r": 57, + "total_frag_volume": 3, + "wfifteenbar_h": 23.4, + "wfifteenbar_l": 8.3, + "wfifteenbar_r": 12.7, + "wthirdbar_h": 34.8, + "wthirdbar_l": 22.3, + "wthirdbar_r": 27.5 + }, + { + "cec7_h": 18.6, + "cec7_l": 14.3, + "cec7_r": 15.9, + "chkey": 79917940, + "claytotal_h": 35, + "claytotal_l": 27, + "claytotal_r": 30, + "cokey": 26772449, + "dbovendry_h": 1.85, + "dbovendry_l": 1.67, + "dbovendry_r": 1.77, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 84, + "hzdept_r": 23, + "hzname": "2Bt", + "lep_h": 4.6, + "lep_l": 2.5, + "lep_r": 3.2, + "mukey": 162398, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 5.9, + "sandtotal_h": 45, + "sandtotal_l": 15, + "sandtotal_r": 35, + "silttotal_h": 54, + "silttotal_l": 20, + "silttotal_r": 35, + "total_frag_volume": 8, + "wfifteenbar_h": 24.9, + "wfifteenbar_l": 16.1, + "wfifteenbar_r": 19.5, + "wthirdbar_h": 35.6, + "wthirdbar_l": 27.6, + "wthirdbar_r": 30.8 + }, + { + "cec7_h": 11.7, + "cec7_l": 7.6, + "cec7_r": 9.5, + "chkey": 79917939, + "claytotal_h": 27, + "claytotal_l": 15, + "claytotal_r": 20, + "cokey": 26772449, + "dbovendry_h": 1.84, + "dbovendry_l": 1.66, + "dbovendry_r": 1.76, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 94, + "hzdept_r": 84, + "hzname": "2BCt", + "lep_h": 2.7, + "lep_l": 0.7, + "lep_r": 1, + "mukey": 162398, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.5, + "sandtotal_h": 60, + "sandtotal_l": 25, + "sandtotal_r": 45, + "silttotal_h": 50, + "silttotal_l": 13, + "silttotal_r": 35, + "total_frag_volume": 8, + "wfifteenbar_h": 18.9, + "wfifteenbar_l": 8.7, + "wfifteenbar_r": 12.9, + "wthirdbar_h": 32, + "wthirdbar_l": 22.2, + "wthirdbar_r": 26.7 + }, + { + "cec7_h": 8, + "cec7_l": 5.1, + "cec7_r": 6.3, + "chkey": 79917941, + "claytotal_h": 20, + "claytotal_l": 10, + "claytotal_r": 15, + "cokey": 26772449, + "dbovendry_h": 2.05, + "dbovendry_l": 1.8, + "dbovendry_r": 1.85, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 94, + "hzname": "2Cd", + "lep_h": 1.1, + "lep_l": 0.3, + "lep_r": 0.8, + "mukey": 162398, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.9, + "sandtotal_h": 60, + "sandtotal_l": 35, + "sandtotal_r": 45, + "silttotal_h": 50, + "silttotal_l": 22, + "silttotal_r": 40, + "total_frag_volume": 9, + "wfifteenbar_h": 15.1, + "wfifteenbar_l": 6.2, + "wfifteenbar_r": 10.2, + "wthirdbar_h": 29.7, + "wthirdbar_l": 15.3, + "wthirdbar_r": 24.4 + } + ], + "spn": [ + { + "closest_pt_x": -85.50621214, + "closest_pt_y": 39.26009312, + "cokey": 26772435, + "compkind": "Series", + "compname": "miami", + "comppct_r": 85, + "dist_meters": 0, + "elev_r": 275, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "eroded", + "majcompflag": "Yes", + "mukey": 162394, + "nirrcapcl": 2, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 4, + "taxorder": "Alfisols", + "taxsubgrp": "Oxyaquic Hapludalfs", + "which": "a" + }, + { + "closest_pt_x": -85.50621214, + "closest_pt_y": 39.26009312, + "cokey": 26772436, + "compkind": "Series", + "compname": "crosby", + "comppct_r": 9, + "dist_meters": 0, + "elev_r": 275, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "eroded", + "majcompflag": "No ", + "mukey": 162394, + "nirrcapcl": 2, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 2, + "taxorder": "Alfisols", + "taxsubgrp": "Aeric Epiaqualfs", + "which": "a" + }, + { + "closest_pt_x": -85.50621214, + "closest_pt_y": 39.26009312, + "cokey": 26772434, + "compkind": "Series", + "compname": "brookston", + "comppct_r": 4, + "dist_meters": 0, + "elev_r": 275, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 162394, + "nirrcapcl": 2, + "nirrcapscl": "w", + "nirrcapunit": null, + "slope_r": 0.5, + "taxorder": "Mollisols", + "taxsubgrp": "Typic Argiaquolls", + "which": "a" + }, + { + "closest_pt_x": -85.50621214, + "closest_pt_y": 39.26009312, + "cokey": 26772433, + "compkind": "Series", + "compname": "treaty", + "comppct_r": 2, + "dist_meters": 0, + "elev_r": 275, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "frequently ponded, drained", + "majcompflag": "No ", + "mukey": 162394, + "nirrcapcl": 2, + "nirrcapscl": "w", + "nirrcapunit": null, + "slope_r": 0.5, + "taxorder": "Mollisols", + "taxsubgrp": "Typic Argiaquolls", + "which": "a" + }, + { + "closest_pt_x": -85.5068089763896, + "closest_pt_y": 39.2603561373222, + "cokey": 26772443, + "compkind": "Taxadjunct", + "compname": "miami", + "comppct_r": 92, + "dist_meters": 59, + "elev_r": 243.7, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "well drained, eroded", + "majcompflag": "Yes", + "mukey": 162396, + "nirrcapcl": 4, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 15, + "taxorder": "Alfisols", + "taxsubgrp": "Typic Hapludalfs", + "which": "b" + }, + { + "closest_pt_x": -85.5068089763896, + "closest_pt_y": 39.2603561373222, + "cokey": 26772442, + "compkind": "Series", + "compname": "hennepin", + "comppct_r": 5, + "dist_meters": 59, + "elev_r": 311.8, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 162396, + "nirrcapcl": 7, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 38, + "taxorder": "Inceptisols", + "taxsubgrp": "Typic Eutrudepts", + "which": "b" + }, + { + "closest_pt_x": -85.5068089763896, + "closest_pt_y": 39.2603561373222, + "cokey": 26772441, + "compkind": "Series", + "compname": "cyclone", + "comppct_r": 3, + "dist_meters": 59, + "elev_r": 244, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 162396, + "nirrcapcl": 2, + "nirrcapscl": "w", + "nirrcapunit": null, + "slope_r": 0.5, + "taxorder": "Mollisols", + "taxsubgrp": "Typic Argiaquolls", + "which": "b" + }, + { + "closest_pt_x": -85.5063616842939, + "closest_pt_y": 39.2595714089377, + "cokey": 26772496, + "compkind": "Series", + "compname": "williamstown", + "comppct_r": 85, + "dist_meters": 59, + "elev_r": 264, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "eroded", + "majcompflag": "Yes", + "mukey": 162415, + "nirrcapcl": 2, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 3, + "taxorder": "Alfisols", + "taxsubgrp": "Aquic Hapludalfs", + "which": "b" + }, + { + "closest_pt_x": -85.5063616842939, + "closest_pt_y": 39.2595714089377, + "cokey": 26772495, + "compkind": "Series", + "compname": "crosby", + "comppct_r": 10, + "dist_meters": 59, + "elev_r": 263, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 162415, + "nirrcapcl": 2, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 2, + "taxorder": "Alfisols", + "taxsubgrp": "Aeric Epiaqualfs", + "which": "b" + }, + { + "closest_pt_x": -85.5063616842939, + "closest_pt_y": 39.2595714089377, + "cokey": 26772494, + "compkind": "Series", + "compname": "treaty", + "comppct_r": 5, + "dist_meters": 59, + "elev_r": 262, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "drained", + "majcompflag": "No ", + "mukey": 162415, + "nirrcapcl": 2, + "nirrcapscl": "w", + "nirrcapunit": null, + "slope_r": 0.5, + "taxorder": "Mollisols", + "taxsubgrp": "Typic Argiaquolls", + "which": "b" + }, + { + "closest_pt_x": -85.5055293134731, + "closest_pt_y": 39.2607883319011, + "cokey": 26772445, + "compkind": "Series", + "compname": "miami", + "comppct_r": 96, + "dist_meters": 85, + "elev_r": 253, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "severely eroded", + "majcompflag": "Yes", + "mukey": 162397, + "nirrcapcl": 4, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 9, + "taxorder": "Alfisols", + "taxsubgrp": "Oxyaquic Hapludalfs", + "which": "b" + }, + { + "closest_pt_x": -85.5055293134731, + "closest_pt_y": 39.2607883319011, + "cokey": 26772444, + "compkind": "Series", + "compname": "crosby", + "comppct_r": 4, + "dist_meters": 85, + "elev_r": 253, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 162397, + "nirrcapcl": 2, + "nirrcapscl": "w", + "nirrcapunit": null, + "slope_r": 1, + "taxorder": "Alfisols", + "taxsubgrp": "Aeric Epiaqualfs", + "which": "b" + }, + { + "closest_pt_x": -85.5048462695407, + "closest_pt_y": 39.2589943723591, + "cokey": 26772402, + "compkind": "Series", + "compname": "fincastle", + "comppct_r": 85, + "dist_meters": 170, + "elev_r": 267, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 162380, + "nirrcapcl": 2, + "nirrcapscl": "w", + "nirrcapunit": null, + "slope_r": 1, + "taxorder": "Alfisols", + "taxsubgrp": "Aeric Epiaqualfs", + "which": "b" + }, + { + "closest_pt_x": -85.5048462695407, + "closest_pt_y": 39.2589943723591, + "cokey": 26772403, + "compkind": "Series", + "compname": "cyclone", + "comppct_r": 10, + "dist_meters": 170, + "elev_r": 267, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 162380, + "nirrcapcl": 2, + "nirrcapscl": "w", + "nirrcapunit": null, + "slope_r": 0.5, + "taxorder": "Mollisols", + "taxsubgrp": "Typic Argiaquolls", + "which": "b" + }, + { + "closest_pt_x": -85.5048462695407, + "closest_pt_y": 39.2589943723591, + "cokey": 26772404, + "compkind": "Series", + "compname": "williamstown", + "comppct_r": 5, + "dist_meters": 170, + "elev_r": 267, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 162380, + "nirrcapcl": 2, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 4, + "taxorder": "Alfisols", + "taxsubgrp": "Aquic Hapludalfs", + "which": "b" + }, + { + "closest_pt_x": -85.5047447294221, + "closest_pt_y": 39.2611824965313, + "cokey": 26772420, + "compkind": "Series", + "compname": "hennepin", + "comppct_r": 90, + "dist_meters": 175, + "elev_r": 239, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 162386, + "nirrcapcl": 7, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 35, + "taxorder": "Inceptisols", + "taxsubgrp": "Typic Eutrudepts", + "which": "b" + }, + { + "closest_pt_x": -85.5047447294221, + "closest_pt_y": 39.2611824965313, + "cokey": 26772419, + "compkind": "Series", + "compname": "miami", + "comppct_r": 10, + "dist_meters": 175, + "elev_r": 240, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "eroded", + "majcompflag": "No ", + "mukey": 162386, + "nirrcapcl": 2, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 4, + "taxorder": "Alfisols", + "taxsubgrp": "Oxyaquic Hapludalfs", + "which": "b" + }, + { + "closest_pt_x": -85.5064679134177, + "closest_pt_y": 39.2618201931071, + "cokey": 26772497, + "compkind": "Series", + "compname": "xenia", + "comppct_r": 85, + "dist_meters": 193, + "elev_r": 220, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 162416, + "nirrcapcl": 1, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": 1, + "taxorder": "Alfisols", + "taxsubgrp": "Aquic Hapludalfs", + "which": "b" + }, + { + "closest_pt_x": -85.5064679134177, + "closest_pt_y": 39.2618201931071, + "cokey": 26772500, + "compkind": "Series", + "compname": "treaty", + "comppct_r": 5, + "dist_meters": 193, + "elev_r": 208, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 162416, + "nirrcapcl": 2, + "nirrcapscl": "w", + "nirrcapunit": null, + "slope_r": 0.5, + "taxorder": "Mollisols", + "taxsubgrp": "Typic Argiaquolls", + "which": "b" + }, + { + "closest_pt_x": -85.5064679134177, + "closest_pt_y": 39.2618201931071, + "cokey": 26772498, + "compkind": "Series", + "compname": "celina", + "comppct_r": 5, + "dist_meters": 193, + "elev_r": 222, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 162416, + "nirrcapcl": 2, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 4, + "taxorder": "Alfisols", + "taxsubgrp": "Aquic Hapludalfs", + "which": "b" + }, + { + "closest_pt_x": -85.5064679134177, + "closest_pt_y": 39.2618201931071, + "cokey": 26772499, + "compkind": "Series", + "compname": "fincastle", + "comppct_r": 5, + "dist_meters": 193, + "elev_r": 214, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 162416, + "nirrcapcl": 2, + "nirrcapscl": "w", + "nirrcapunit": null, + "slope_r": 1, + "taxorder": "Alfisols", + "taxsubgrp": "Aeric Epiaqualfs", + "which": "b" + }, + { + "closest_pt_x": -85.5060260988997, + "closest_pt_y": 39.2646088375748, + "cokey": 26772447, + "compkind": "Series", + "compname": "miami", + "comppct_r": 90, + "dist_meters": 502, + "elev_r": 251, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "severely eroded", + "majcompflag": "Yes", + "mukey": 162398, + "nirrcapcl": 6, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 15, + "taxorder": "Alfisols", + "taxsubgrp": "Oxyaquic Hapludalfs", + "which": "b" + }, + { + "closest_pt_x": -85.5060260988997, + "closest_pt_y": 39.2646088375748, + "cokey": 26772446, + "compkind": "Series", + "compname": "crosby", + "comppct_r": 7, + "dist_meters": 502, + "elev_r": 251, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 162398, + "nirrcapcl": 2, + "nirrcapscl": "w", + "nirrcapunit": null, + "slope_r": 1, + "taxorder": "Alfisols", + "taxsubgrp": "Aeric Epiaqualfs", + "which": "b" + }, + { + "closest_pt_x": -85.5060260988997, + "closest_pt_y": 39.2646088375748, + "cokey": 26772448, + "compkind": "Series", + "compname": "hennepin", + "comppct_r": 2, + "dist_meters": 502, + "elev_r": 251, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "eroded", + "majcompflag": "No ", + "mukey": 162398, + "nirrcapcl": 6, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 22, + "taxorder": "Inceptisols", + "taxsubgrp": "Typic Eutrudepts", + "which": "b" + }, + { + "closest_pt_x": -85.5060260988997, + "closest_pt_y": 39.2646088375748, + "cokey": 26772449, + "compkind": "Series", + "compname": "williamstown", + "comppct_r": 1, + "dist_meters": 502, + "elev_r": 251, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 162398, + "nirrcapcl": 2, + "nirrcapscl": "s", + "nirrcapunit": null, + "slope_r": 1, + "taxorder": "Alfisols", + "taxsubgrp": "Aquic Hapludalfs", + "which": "b" + }, + { + "closest_pt_x": -85.5160678385033, + "closest_pt_y": 39.2565820770867, + "cokey": 26772425, + "compkind": "Series", + "compname": "hickory", + "comppct_r": 87, + "dist_meters": 936, + "elev_r": 230, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 162389, + "nirrcapcl": 7, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 40, + "taxorder": "Alfisols", + "taxsubgrp": "Typic Hapludalfs", + "which": "b" + }, + { + "closest_pt_x": -85.5160678385033, + "closest_pt_y": 39.2565820770867, + "cokey": 26772424, + "compkind": "Series", + "compname": "holton", + "comppct_r": 4, + "dist_meters": 936, + "elev_r": 227, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "drained", + "majcompflag": "No ", + "mukey": 162389, + "nirrcapcl": 2, + "nirrcapscl": "w", + "nirrcapunit": null, + "slope_r": 0.5, + "taxorder": "Inceptisols", + "taxsubgrp": "Aeric Endoaquepts", + "which": "b" + }, + { + "closest_pt_x": -85.5160678385033, + "closest_pt_y": 39.2565820770867, + "cokey": 26772426, + "compkind": "Series", + "compname": "bonnell", + "comppct_r": 3, + "dist_meters": 936, + "elev_r": 230, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "eroded", + "majcompflag": "No ", + "mukey": 162389, + "nirrcapcl": 6, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 21, + "taxorder": "Alfisols", + "taxsubgrp": "Typic Hapludalfs", + "which": "b" + }, + { + "closest_pt_x": -85.5160678385033, + "closest_pt_y": 39.2565820770867, + "cokey": 26772428, + "compkind": "Series", + "compname": "jessietown", + "comppct_r": 2, + "dist_meters": 936, + "elev_r": 230, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 162389, + "nirrcapcl": 7, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 38, + "taxorder": "Ultisols", + "taxsubgrp": "Typic Hapludults", + "which": "b" + }, + { + "closest_pt_x": -85.5160678385033, + "closest_pt_y": 39.2565820770867, + "cokey": 26772427, + "compkind": "Series", + "compname": "grayford", + "comppct_r": 2, + "dist_meters": 936, + "elev_r": 230, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "eroded", + "majcompflag": "No ", + "mukey": 162389, + "nirrcapcl": 4, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 17, + "taxorder": "Alfisols", + "taxsubgrp": "Ultic Hapludalfs", + "which": "b" + }, + { + "closest_pt_x": -85.5160678385033, + "closest_pt_y": 39.2565820770867, + "cokey": 26772423, + "compkind": "Series", + "compname": "cincinnati", + "comppct_r": 2, + "dist_meters": 936, + "elev_r": 230, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "eroded", + "majcompflag": "No ", + "mukey": 162389, + "nirrcapcl": 3, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 9, + "taxorder": "Alfisols", + "taxsubgrp": "Oxyaquic Fragiudalfs", + "which": "b" + }, + { + "closest_pt_x": -85.5171149710705, + "closest_pt_y": 39.2625568012924, + "cokey": 26772437, + "compkind": "Series", + "compname": "miami", + "comppct_r": 85, + "dist_meters": 980, + "elev_r": 275, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "eroded", + "majcompflag": "Yes", + "mukey": 162395, + "nirrcapcl": 3, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 8, + "taxorder": "Alfisols", + "taxsubgrp": "Oxyaquic Hapludalfs", + "which": "b" + }, + { + "closest_pt_x": -85.5171149710705, + "closest_pt_y": 39.2625568012924, + "cokey": 26772439, + "compkind": "Series", + "compname": "treaty", + "comppct_r": 5, + "dist_meters": 980, + "elev_r": 272, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 162395, + "nirrcapcl": 2, + "nirrcapscl": "w", + "nirrcapunit": null, + "slope_r": 0.5, + "taxorder": "Mollisols", + "taxsubgrp": "Typic Argiaquolls", + "which": "b" + }, + { + "closest_pt_x": -85.5171149710705, + "closest_pt_y": 39.2625568012924, + "cokey": 26772440, + "compkind": "Series", + "compname": "rainsville", + "comppct_r": 5, + "dist_meters": 980, + "elev_r": 274, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "eroded", + "majcompflag": "No ", + "mukey": 162395, + "nirrcapcl": 3, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 8, + "taxorder": "Alfisols", + "taxsubgrp": "Oxyaquic Hapludalfs", + "which": "b" + }, + { + "closest_pt_x": -85.5171149710705, + "closest_pt_y": 39.2625568012924, + "cokey": 26772438, + "compkind": "Series", + "compname": "crosby", + "comppct_r": 5, + "dist_meters": 980, + "elev_r": 273, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 162395, + "nirrcapcl": 2, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 1, + "taxorder": "Alfisols", + "taxsubgrp": "Aeric Epiaqualfs", + "which": "b" + } + ] + } +} diff --git a/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[42.494912,-123.064531].json b/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[42.494912,-123.064531].json new file mode 100644 index 0000000..299c7de --- /dev/null +++ b/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[42.494912,-123.064531].json @@ -0,0 +1,4844 @@ +{ + "elev": { + "location": { + "spatialReference": { + "latestWkid": 4326, + "wkid": 4326 + }, + "x": -123.064531, + "y": 42.494912 + }, + "locationId": 0, + "rasterId": 5086, + "resolution": 9.259259341472414e-05, + "value": "500.710327148" + }, + "soilweb": { + "ESD": [ + { + "cokey": 27529223, + "ecoclassid": "F005XZ014CA", + "ecoclassname": "Mesic Mountains <40ppt", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/005X/F005XZ014CA" + }, + { + "cokey": 27529224, + "ecoclassid": "F005XZ014CA", + "ecoclassname": "Mesic Mountains <40ppt", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/005X/F005XZ014CA" + }, + { + "cokey": 27529265, + "ecoclassid": "F005XZ003CA", + "ecoclassname": "Terraces", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/005X/F005XZ003CA" + }, + { + "cokey": 27529279, + "ecoclassid": "F005XZ014CA", + "ecoclassname": "Mesic Mountains <40ppt", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/005X/F005XZ014CA" + }, + { + "cokey": 27529280, + "ecoclassid": "F005XZ014CA", + "ecoclassname": "Mesic Mountains <40ppt", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/005X/F005XZ014CA" + }, + { + "cokey": 27529282, + "ecoclassid": "F005XZ014CA", + "ecoclassname": "Mesic Mountains <40ppt", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/005X/F005XZ014CA" + }, + { + "cokey": 27529335, + "ecoclassid": "F005XZ007CA", + "ecoclassname": "Moderately Deep Mesic Hills 40-60ppt", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/005X/F005XZ007CA" + }, + { + "cokey": 27529336, + "ecoclassid": "F005XZ024CA", + "ecoclassname": "Ridges", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/005X/F005XZ024CA" + }, + { + "cokey": 27529400, + "ecoclassid": "R005XY016OR", + "ecoclassname": "POORLY DRAINED BOTTOM", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/005X/R005XY016OR" + }, + { + "cokey": 27529401, + "ecoclassid": "F005XZ003CA", + "ecoclassname": "Terraces", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/005X/F005XZ003CA" + }, + { + "cokey": 27529517, + "ecoclassid": "F005XZ018CA", + "ecoclassname": "Moderately Deep Gravelly Mesic Mountains 40-60ppt", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/005X/F005XZ018CA" + }, + { + "cokey": 27529518, + "ecoclassid": "F005XZ018CA", + "ecoclassname": "Moderately Deep Gravelly Mesic Mountains 40-60ppt", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/005X/F005XZ018CA" + }, + { + "cokey": 27529611, + "ecoclassid": "F005XZ009CA", + "ecoclassname": "Very Deep Mesic Hills 40-60ppt", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/005X/F005XZ009CA" + }, + { + "cokey": 27529612, + "ecoclassid": "F005XZ024CA", + "ecoclassname": "Ridges", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/005X/F005XZ024CA" + }, + { + "cokey": 27529617, + "ecoclassid": "F005XZ007CA", + "ecoclassname": "Moderately Deep Mesic Hills 40-60ppt", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/005X/F005XZ007CA" + }, + { + "cokey": 27529618, + "ecoclassid": "F005XZ024CA", + "ecoclassname": "Ridges", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/005X/F005XZ024CA" + } + ], + "OSD_morph": [ + { + "bottom": 5, + "cf_class": null, + "cielab_a": 5.75265137752021, + "cielab_b": 11.6701083904344, + "cielab_l": 40.9091053785084, + "hzname": "Oi", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 4, + "series": "abegg", + "srgb_b": 0.304639193182857, + "srgb_g": 0.363184577749211, + "srgb_r": 0.441777408935627, + "texture_class": null, + "top": 0 + }, + { + "bottom": 15, + "cf_class": "gravelly", + "cielab_a": 5.57448531263113, + "cielab_b": 17.8611867437947, + "cielab_l": 30.2642297183594, + "hzname": "A1", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 3, + "series": "abegg", + "srgb_b": 0.171184711754676, + "srgb_g": 0.2644251878802, + "srgb_r": 0.346227592378953, + "texture_class": "loam", + "top": 5 + }, + { + "bottom": 28, + "cf_class": "gravelly", + "cielab_a": 5.59646217145787, + "cielab_b": 19.7307610177311, + "cielab_l": 40.9264484899888, + "hzname": "A2", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "abegg", + "srgb_b": 0.252653362523879, + "srgb_g": 0.362204899697049, + "srgb_r": 0.454695384023485, + "texture_class": "loam", + "top": 15 + }, + { + "bottom": 46, + "cf_class": "gravelly", + "cielab_a": 7.33469149177576, + "cielab_b": 25.8475929061727, + "cielab_l": 40.9361368369374, + "hzname": "BA", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "abegg", + "srgb_b": 0.212414841208295, + "srgb_g": 0.35735626513352, + "srgb_r": 0.472691508652081, + "texture_class": "loam", + "top": 28 + }, + { + "bottom": 74, + "cf_class": "very gravelly", + "cielab_a": 14.8988616945204, + "cielab_b": 34.1458846464095, + "cielab_l": 40.942672991055, + "hzname": "Bt1", + "matrix_dry_color_chroma": 6, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 4, + "series": "abegg", + "srgb_b": 0.15629626380523, + "srgb_g": 0.337551851173978, + "srgb_r": 0.520972226519258, + "texture_class": "clay loam", + "top": 46 + }, + { + "bottom": 102, + "cf_class": "extremely gravelly", + "cielab_a": 6.58953418555763, + "cielab_b": 25.3982799152076, + "cielab_l": 51.4149149786599, + "hzname": "Bt2", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "abegg", + "srgb_b": 0.311115146146663, + "srgb_g": 0.46014971014309, + "srgb_r": 0.577554513328993, + "texture_class": "clay loam", + "top": 74 + }, + { + "bottom": 147, + "cf_class": "extremely gravelly", + "cielab_a": 9.91791561017435, + "cielab_b": 38.6888986191802, + "cielab_l": 51.4337014216073, + "hzname": "BCt", + "matrix_dry_color_chroma": 6, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "abegg", + "srgb_b": 0.216677275892247, + "srgb_g": 0.450352989954951, + "srgb_r": 0.613039703549513, + "texture_class": "loam", + "top": 102 + }, + { + "bottom": 157, + "cf_class": "extremely gravelly", + "cielab_a": 9.91791561017435, + "cielab_b": 38.6888986191802, + "cielab_l": 51.4337014216073, + "hzname": "C", + "matrix_dry_color_chroma": 6, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "abegg", + "srgb_b": 0.216677275892247, + "srgb_g": 0.450352989954951, + "srgb_r": 0.613039703549513, + "texture_class": "loamy sand", + "top": 147 + }, + { + "bottom": 13, + "cf_class": "gravelly", + "cielab_a": 5.59646217145787, + "cielab_b": 19.7307610177311, + "cielab_l": 40.9264484899888, + "hzname": "A", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "beekman", + "srgb_b": 0.252653362523879, + "srgb_g": 0.362204899697049, + "srgb_r": 0.454695384023485, + "texture_class": "loam", + "top": 0 + }, + { + "bottom": 36, + "cf_class": "very gravelly", + "cielab_a": 6.58953418555763, + "cielab_b": 25.3982799152076, + "cielab_l": 51.4149149786599, + "hzname": "AB", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "beekman", + "srgb_b": 0.311115146146663, + "srgb_g": 0.46014971014309, + "srgb_r": 0.577554513328993, + "texture_class": "loam", + "top": 13 + }, + { + "bottom": 64, + "cf_class": "very gravelly", + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "Bw", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "beekman", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "loam", + "top": 36 + }, + { + "bottom": 79, + "cf_class": null, + "cielab_a": null, + "cielab_b": null, + "cielab_l": null, + "hzname": "R", + "matrix_dry_color_chroma": null, + "matrix_dry_color_hue": null, + "matrix_dry_color_value": null, + "series": "beekman", + "srgb_b": null, + "srgb_g": null, + "srgb_r": null, + "texture_class": null, + "top": 64 + }, + { + "bottom": 18, + "cf_class": "gravelly", + "cielab_a": 2.89064271156414, + "cielab_b": 13.064616880291, + "cielab_l": 61.5701956263403, + "hzname": "A", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "caris", + "srgb_b": 0.493496194704249, + "srgb_g": 0.573230189582846, + "srgb_r": 0.638561136802744, + "texture_class": "loam", + "top": 0 + }, + { + "bottom": 0, + "cf_class": null, + "cielab_a": 5.75265137752021, + "cielab_b": 11.6701083904344, + "cielab_l": 40.9091053785084, + "hzname": "Oi", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 4, + "series": "caris", + "srgb_b": 0.304639193182857, + "srgb_g": 0.363184577749211, + "srgb_r": 0.441777408935627, + "texture_class": null, + "top": 3 + }, + { + "bottom": 30, + "cf_class": "very gravelly", + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "BA", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "caris", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "clay loam", + "top": 18 + }, + { + "bottom": 51, + "cf_class": "very gravelly", + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "Bw1", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "caris", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "clay loam", + "top": 30 + }, + { + "bottom": 79, + "cf_class": "extremely gravelly", + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "Bw2", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "caris", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "loam", + "top": 51 + }, + { + "bottom": 94, + "cf_class": null, + "cielab_a": null, + "cielab_b": null, + "cielab_l": null, + "hzname": "R", + "matrix_dry_color_chroma": null, + "matrix_dry_color_hue": null, + "matrix_dry_color_value": null, + "series": "caris", + "srgb_b": null, + "srgb_g": null, + "srgb_r": null, + "texture_class": null, + "top": 79 + }, + { + "bottom": 10, + "cf_class": "gravelly", + "cielab_a": 6.58953418555763, + "cielab_b": 25.3982799152076, + "cielab_l": 51.4149149786599, + "hzname": "A1", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "colestine", + "srgb_b": 0.311115146146663, + "srgb_g": 0.46014971014309, + "srgb_r": 0.577554513328993, + "texture_class": "loam", + "top": 0 + }, + { + "bottom": 30, + "cf_class": "gravelly", + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "A2", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "colestine", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "loam", + "top": 10 + }, + { + "bottom": 61, + "cf_class": "gravelly", + "cielab_a": 3.8855918773385, + "cielab_b": 19.5237210898253, + "cielab_l": 71.5528118511221, + "hzname": "Bw1", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 7, + "series": "colestine", + "srgb_b": 0.549113835485318, + "srgb_g": 0.673315953150733, + "srgb_r": 0.766909809664938, + "texture_class": "clay loam", + "top": 30 + }, + { + "bottom": 86, + "cf_class": "gravelly", + "cielab_a": 3.8855918773385, + "cielab_b": 19.5237210898253, + "cielab_l": 71.5528118511221, + "hzname": "Bw2", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 7, + "series": "colestine", + "srgb_b": 0.549113835485318, + "srgb_g": 0.673315953150733, + "srgb_r": 0.766909809664938, + "texture_class": "clay loam", + "top": 61 + }, + { + "bottom": 101, + "cf_class": null, + "cielab_a": null, + "cielab_b": null, + "cielab_l": null, + "hzname": "R", + "matrix_dry_color_chroma": null, + "matrix_dry_color_hue": null, + "matrix_dry_color_value": null, + "series": "colestine", + "srgb_b": null, + "srgb_g": null, + "srgb_r": null, + "texture_class": null, + "top": 86 + }, + { + "bottom": 18, + "cf_class": null, + "cielab_a": 3.22690261250264, + "cielab_b": 12.65785928239, + "cielab_l": 51.3902579549971, + "hzname": "Ap", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "gregory", + "srgb_b": 0.396431450662527, + "srgb_g": 0.470047004516309, + "srgb_r": 0.534105039939954, + "texture_class": "silty clay loam", + "top": 0 + }, + { + "bottom": 30, + "cf_class": null, + "cielab_a": 3.22690261250264, + "cielab_b": 12.65785928239, + "cielab_l": 51.3902579549971, + "hzname": "A", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "gregory", + "srgb_b": 0.396431450662527, + "srgb_g": 0.470047004516309, + "srgb_r": 0.534105039939954, + "texture_class": "clay loam", + "top": 18 + }, + { + "bottom": 46, + "cf_class": null, + "cielab_a": 3.22690261250264, + "cielab_b": 12.65785928239, + "cielab_l": 51.3902579549971, + "hzname": "BA", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "gregory", + "srgb_b": 0.396431450662527, + "srgb_g": 0.470047004516309, + "srgb_r": 0.534105039939954, + "texture_class": "clay loam", + "top": 30 + }, + { + "bottom": 74, + "cf_class": null, + "cielab_a": 3.22690261250264, + "cielab_b": 12.65785928239, + "cielab_l": 51.3902579549971, + "hzname": "Bt1", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "gregory", + "srgb_b": 0.396431450662527, + "srgb_g": 0.470047004516309, + "srgb_r": 0.534105039939954, + "texture_class": "clay", + "top": 46 + }, + { + "bottom": 112, + "cf_class": null, + "cielab_a": 1.32004586474704, + "cielab_b": 13.7174249230097, + "cielab_l": 51.3940899501304, + "hzname": "Bt2", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 5, + "series": "gregory", + "srgb_b": 0.389079428537392, + "srgb_g": 0.474084046104631, + "srgb_r": 0.524359621723063, + "texture_class": "clay", + "top": 74 + }, + { + "bottom": 127, + "cf_class": null, + "cielab_a": 1.35288254510624, + "cielab_b": 20.7280825303816, + "cielab_l": 61.5889622491912, + "hzname": "2C", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 6, + "series": "gregory", + "srgb_b": 0.440190474142481, + "srgb_g": 0.575322240237554, + "srgb_r": 0.645238061865951, + "texture_class": "sandy clay loam", + "top": 112 + }, + { + "bottom": 142, + "cf_class": null, + "cielab_a": null, + "cielab_b": null, + "cielab_l": null, + "hzname": "3Cr", + "matrix_dry_color_chroma": null, + "matrix_dry_color_hue": null, + "matrix_dry_color_value": null, + "series": "gregory", + "srgb_b": null, + "srgb_g": null, + "srgb_r": null, + "texture_class": "sand", + "top": 127 + }, + { + "bottom": 5, + "cf_class": null, + "cielab_a": 5.75265137752021, + "cielab_b": 11.6701083904344, + "cielab_l": 40.9091053785084, + "hzname": "Oi", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 4, + "series": "josephine", + "srgb_b": 0.304639193182857, + "srgb_g": 0.363184577749211, + "srgb_r": 0.441777408935627, + "texture_class": null, + "top": 0 + }, + { + "bottom": 13, + "cf_class": "gravelly", + "cielab_a": 4.85456052724254, + "cielab_b": 18.8945154624908, + "cielab_l": 51.4032284580631, + "hzname": "A", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "josephine", + "srgb_b": 0.354980541712737, + "srgb_g": 0.465230900713657, + "srgb_r": 0.556494226652486, + "texture_class": "loam", + "top": 5 + }, + { + "bottom": 28, + "cf_class": "gravelly", + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "BA", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "josephine", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "loam", + "top": 13 + }, + { + "bottom": 46, + "cf_class": null, + "cielab_a": 8.81983377592771, + "cielab_b": 22.7800580194489, + "cielab_l": 71.5566437908835, + "hzname": "Bt1", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 7, + "series": "josephine", + "srgb_b": 0.526731598731362, + "srgb_g": 0.660581064041243, + "srgb_r": 0.805763039818603, + "texture_class": "clay loam", + "top": 28 + }, + { + "bottom": 86, + "cf_class": null, + "cielab_a": 8.81983377592771, + "cielab_b": 22.7800580194489, + "cielab_l": 71.5566437908835, + "hzname": "Bt2", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 7, + "series": "josephine", + "srgb_b": 0.526731598731362, + "srgb_g": 0.660581064041243, + "srgb_r": 0.805763039818603, + "texture_class": "clay loam", + "top": 46 + }, + { + "bottom": 112, + "cf_class": null, + "cielab_a": 17.1743165441653, + "cielab_b": 30.7950425431077, + "cielab_l": 61.5975233168624, + "hzname": "Bt3", + "matrix_dry_color_chroma": 6, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 6, + "series": "josephine", + "srgb_b": 0.37262697463063, + "srgb_g": 0.534154840451902, + "srgb_r": 0.757827873661392, + "texture_class": "clay loam", + "top": 86 + }, + { + "bottom": 135, + "cf_class": "gravelly", + "cielab_a": 17.1743165441653, + "cielab_b": 30.7950425431077, + "cielab_l": 61.5975233168624, + "hzname": "BC", + "matrix_dry_color_chroma": 6, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 6, + "series": "josephine", + "srgb_b": 0.37262697463063, + "srgb_g": 0.534154840451902, + "srgb_r": 0.757827873661392, + "texture_class": "clay loam", + "top": 112 + }, + { + "bottom": 155, + "cf_class": "gravelly", + "cielab_a": 13.6480264347485, + "cielab_b": 34.2977452233407, + "cielab_l": 61.6062158499921, + "hzname": "BCt", + "matrix_dry_color_chroma": 6, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 6, + "series": "josephine", + "srgb_b": 0.346615933782356, + "srgb_g": 0.543083841882347, + "srgb_r": 0.742225824337242, + "texture_class": "clay loam", + "top": 135 + }, + { + "bottom": 170, + "cf_class": null, + "cielab_a": null, + "cielab_b": null, + "cielab_l": null, + "hzname": "Crt", + "matrix_dry_color_chroma": null, + "matrix_dry_color_hue": null, + "matrix_dry_color_value": null, + "series": "josephine", + "srgb_b": null, + "srgb_g": null, + "srgb_r": null, + "texture_class": "silt", + "top": 155 + }, + { + "bottom": 10, + "cf_class": "gravelly", + "cielab_a": 2.89064271156414, + "cielab_b": 13.064616880291, + "cielab_l": 61.5701956263403, + "hzname": "A", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "offenbacher", + "srgb_b": 0.493496194704249, + "srgb_g": 0.573230189582846, + "srgb_r": 0.638561136802744, + "texture_class": "loam", + "top": 0 + }, + { + "bottom": 0, + "cf_class": null, + "cielab_a": 1.46898546730889, + "cielab_b": 6.1399480339165, + "cielab_l": 40.8982555194042, + "hzname": "O", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "offenbacher", + "srgb_b": 0.339204032769121, + "srgb_g": 0.373572298991998, + "srgb_r": 0.403971386567422, + "texture_class": null, + "top": 3 + }, + { + "bottom": 23, + "cf_class": "gravelly", + "cielab_a": 2.89064271156414, + "cielab_b": 13.064616880291, + "cielab_l": 61.5701956263403, + "hzname": "BAt", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "offenbacher", + "srgb_b": 0.493496194704249, + "srgb_g": 0.573230189582846, + "srgb_r": 0.638561136802744, + "texture_class": "loam", + "top": 10 + }, + { + "bottom": 53, + "cf_class": null, + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "Bt1", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "offenbacher", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "loam", + "top": 23 + }, + { + "bottom": 71, + "cf_class": null, + "cielab_a": 9.31189329898768, + "cielab_b": 22.4496446381707, + "cielab_l": 61.5870610331128, + "hzname": "Bt2", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 6, + "series": "offenbacher", + "srgb_b": 0.429645085489254, + "srgb_g": 0.556090686344839, + "srgb_r": 0.69835386071579, + "texture_class": "loam", + "top": 53 + }, + { + "bottom": 86, + "cf_class": null, + "cielab_a": 9.31189329898768, + "cielab_b": 22.4496446381707, + "cielab_l": 61.5870610331128, + "hzname": "Bt3", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 6, + "series": "offenbacher", + "srgb_b": 0.429645085489254, + "srgb_g": 0.556090686344839, + "srgb_r": 0.69835386071579, + "texture_class": "loam", + "top": 71 + }, + { + "bottom": 101, + "cf_class": null, + "cielab_a": null, + "cielab_b": null, + "cielab_l": null, + "hzname": "R", + "matrix_dry_color_chroma": null, + "matrix_dry_color_hue": null, + "matrix_dry_color_value": null, + "series": "offenbacher", + "srgb_b": null, + "srgb_g": null, + "srgb_r": null, + "texture_class": null, + "top": 86 + }, + { + "bottom": 8, + "cf_class": null, + "cielab_a": 10.8054115811398, + "cielab_b": 23.453599890202, + "cielab_l": 40.929538801321, + "hzname": "A1", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 4, + "series": "pollard", + "srgb_b": 0.229243737407669, + "srgb_g": 0.349362062820934, + "srgb_r": 0.488397126185639, + "texture_class": "loam", + "top": 0 + }, + { + "bottom": 0, + "cf_class": null, + "cielab_a": 5.75265137752021, + "cielab_b": 11.6701083904344, + "cielab_l": 40.9091053785084, + "hzname": "Oi", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 4, + "series": "pollard", + "srgb_b": 0.304639193182857, + "srgb_g": 0.363184577749211, + "srgb_r": 0.441777408935627, + "texture_class": null, + "top": 5 + }, + { + "bottom": 28, + "cf_class": null, + "cielab_a": 10.8054115811398, + "cielab_b": 23.453599890202, + "cielab_l": 40.929538801321, + "hzname": "A2", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 4, + "series": "pollard", + "srgb_b": 0.229243737407669, + "srgb_g": 0.349362062820934, + "srgb_r": 0.488397126185639, + "texture_class": "loam", + "top": 8 + }, + { + "bottom": 46, + "cf_class": null, + "cielab_a": 13.3742743259118, + "cielab_b": 20.7240750460895, + "cielab_l": 40.922656817286, + "hzname": "AB", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 4, + "series": "pollard", + "srgb_b": 0.247730598344407, + "srgb_g": 0.343312649829985, + "srgb_r": 0.498562877493358, + "texture_class": "clay loam", + "top": 28 + }, + { + "bottom": 91, + "cf_class": null, + "cielab_a": 13.3742743259118, + "cielab_b": 20.7240750460895, + "cielab_l": 40.922656817286, + "hzname": "Bt1", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 4, + "series": "pollard", + "srgb_b": 0.247730598344407, + "srgb_g": 0.343312649829985, + "srgb_r": 0.498562877493358, + "texture_class": "clay loam", + "top": 46 + }, + { + "bottom": 114, + "cf_class": null, + "cielab_a": 12.0187023642853, + "cielab_b": 20.083427492453, + "cielab_l": 51.4005810940307, + "hzname": "Bt2", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 5, + "series": "pollard", + "srgb_b": 0.348301053829705, + "srgb_g": 0.447730036366018, + "srgb_r": 0.600629634680312, + "texture_class": "clay loam", + "top": 91 + }, + { + "bottom": 155, + "cf_class": null, + "cielab_a": 9.84655820146585, + "cielab_b": 22.5907048453292, + "cielab_l": 51.407225870377, + "hzname": "BCt", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 5, + "series": "pollard", + "srgb_b": 0.330951470562884, + "srgb_g": 0.452732818442716, + "srgb_r": 0.592109859281186, + "texture_class": "clay loam", + "top": 114 + }, + { + "bottom": 5, + "cf_class": "gravelly", + "cielab_a": 4.85456052724254, + "cielab_b": 18.8945154624908, + "cielab_l": 51.4032284580631, + "hzname": "A1", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "ruch", + "srgb_b": 0.354980541712737, + "srgb_g": 0.465230900713657, + "srgb_r": 0.556494226652486, + "texture_class": "silt loam", + "top": 0 + }, + { + "bottom": 0, + "cf_class": null, + "cielab_a": 5.75265137752021, + "cielab_b": 11.6701083904344, + "cielab_l": 40.9091053785084, + "hzname": "Oi", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 4, + "series": "ruch", + "srgb_b": 0.304639193182857, + "srgb_g": 0.363184577749211, + "srgb_r": 0.441777408935627, + "texture_class": null, + "top": 2 + }, + { + "bottom": 18, + "cf_class": "gravelly", + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "A2", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "ruch", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "silt loam", + "top": 5 + }, + { + "bottom": 43, + "cf_class": null, + "cielab_a": 9.31189329898768, + "cielab_b": 22.4496446381707, + "cielab_l": 61.5870610331128, + "hzname": "BAt", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 6, + "series": "ruch", + "srgb_b": 0.429645085489254, + "srgb_g": 0.556090686344839, + "srgb_r": 0.69835386071579, + "texture_class": "loam", + "top": 18 + }, + { + "bottom": 66, + "cf_class": null, + "cielab_a": 18.0060166135125, + "cielab_b": 31.0102462439034, + "cielab_l": 51.4162585431746, + "hzname": "Bt1", + "matrix_dry_color_chroma": 6, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 5, + "series": "ruch", + "srgb_b": 0.274904528537146, + "srgb_g": 0.430132488944993, + "srgb_r": 0.648843794358158, + "texture_class": "loam", + "top": 43 + }, + { + "bottom": 117, + "cf_class": null, + "cielab_a": 18.0060166135125, + "cielab_b": 31.0102462439034, + "cielab_l": 51.4162585431746, + "hzname": "Bt2", + "matrix_dry_color_chroma": 6, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 5, + "series": "ruch", + "srgb_b": 0.274904528537146, + "srgb_g": 0.430132488944993, + "srgb_r": 0.648843794358158, + "texture_class": "loam", + "top": 66 + }, + { + "bottom": 178, + "cf_class": null, + "cielab_a": 18.0060166135125, + "cielab_b": 31.0102462439034, + "cielab_l": 51.4162585431746, + "hzname": "Bt3", + "matrix_dry_color_chroma": 6, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 5, + "series": "ruch", + "srgb_b": 0.274904528537146, + "srgb_g": 0.430132488944993, + "srgb_r": 0.648843794358158, + "texture_class": "loam", + "top": 117 + }, + { + "bottom": 3, + "cf_class": null, + "cielab_a": 1.46898546730889, + "cielab_b": 6.1399480339165, + "cielab_l": 40.8982555194042, + "hzname": "O", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "speaker", + "srgb_b": 0.339204032769121, + "srgb_g": 0.373572298991998, + "srgb_r": 0.403971386567422, + "texture_class": null, + "top": 0 + }, + { + "bottom": 10, + "cf_class": "gravelly", + "cielab_a": 7.37766464830225, + "cielab_b": 16.7198534169627, + "cielab_l": 51.3967258207869, + "hzname": "A1", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 5, + "series": "speaker", + "srgb_b": 0.370009311681262, + "srgb_g": 0.459709540670769, + "srgb_r": 0.567656651220777, + "texture_class": "loam", + "top": 3 + }, + { + "bottom": 18, + "cf_class": "gravelly", + "cielab_a": 9.84655820146585, + "cielab_b": 22.5907048453292, + "cielab_l": 51.407225870377, + "hzname": "A2", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 5, + "series": "speaker", + "srgb_b": 0.330951470562884, + "srgb_g": 0.452732818442716, + "srgb_r": 0.592109859281186, + "texture_class": "loam", + "top": 10 + }, + { + "bottom": 36, + "cf_class": "gravelly", + "cielab_a": 12.0187023642853, + "cielab_b": 20.083427492453, + "cielab_l": 51.4005810940307, + "hzname": "BA", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 5, + "series": "speaker", + "srgb_b": 0.348301053829705, + "srgb_g": 0.447730036366018, + "srgb_r": 0.600629634680312, + "texture_class": "loam", + "top": 18 + }, + { + "bottom": 79, + "cf_class": "gravelly", + "cielab_a": 18.0060166135125, + "cielab_b": 31.0102462439034, + "cielab_l": 51.4162585431746, + "hzname": "2Bt", + "matrix_dry_color_chroma": 6, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 5, + "series": "speaker", + "srgb_b": 0.274904528537146, + "srgb_g": 0.430132488944993, + "srgb_r": 0.648843794358158, + "texture_class": "clay loam", + "top": 36 + }, + { + "bottom": 86, + "cf_class": null, + "cielab_a": 21.3849631140196, + "cielab_b": 26.25444782476, + "cielab_l": 51.4054637459216, + "hzname": "2Crt", + "matrix_dry_color_chroma": 6, + "matrix_dry_color_hue": "2.5YR", + "matrix_dry_color_value": 5, + "series": "speaker", + "srgb_b": 0.308562250927243, + "srgb_g": 0.421289082188129, + "srgb_r": 0.661372868141787, + "texture_class": "clay", + "top": 79 + }, + { + "bottom": 5, + "cf_class": null, + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "A1", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "vannoy", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "silt loam", + "top": 0 + }, + { + "bottom": 0, + "cf_class": null, + "cielab_a": 1.46898546730889, + "cielab_b": 6.1399480339165, + "cielab_l": 40.8982555194042, + "hzname": "O", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "vannoy", + "srgb_b": 0.339204032769121, + "srgb_g": 0.373572298991998, + "srgb_r": 0.403971386567422, + "texture_class": null, + "top": 2 + }, + { + "bottom": 10, + "cf_class": null, + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "A2", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "vannoy", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "silt loam", + "top": 5 + }, + { + "bottom": 28, + "cf_class": null, + "cielab_a": 9.31189329898768, + "cielab_b": 22.4496446381707, + "cielab_l": 61.5870610331128, + "hzname": "BA", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 6, + "series": "vannoy", + "srgb_b": 0.429645085489254, + "srgb_g": 0.556090686344839, + "srgb_r": 0.69835386071579, + "texture_class": "silt loam", + "top": 10 + }, + { + "bottom": 48, + "cf_class": null, + "cielab_a": 18.0060166135125, + "cielab_b": 31.0102462439034, + "cielab_l": 51.4162585431746, + "hzname": "2Bt1", + "matrix_dry_color_chroma": 6, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 5, + "series": "vannoy", + "srgb_b": 0.274904528537146, + "srgb_g": 0.430132488944993, + "srgb_r": 0.648843794358158, + "texture_class": "clay loam", + "top": 28 + }, + { + "bottom": 66, + "cf_class": null, + "cielab_a": 18.0060166135125, + "cielab_b": 31.0102462439034, + "cielab_l": 51.4162585431746, + "hzname": "2Bt2", + "matrix_dry_color_chroma": 6, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 5, + "series": "vannoy", + "srgb_b": 0.274904528537146, + "srgb_g": 0.430132488944993, + "srgb_r": 0.648843794358158, + "texture_class": "clay loam", + "top": 48 + }, + { + "bottom": 89, + "cf_class": null, + "cielab_a": 18.0060166135125, + "cielab_b": 31.0102462439034, + "cielab_l": 51.4162585431746, + "hzname": "2Bt3", + "matrix_dry_color_chroma": 6, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 5, + "series": "vannoy", + "srgb_b": 0.274904528537146, + "srgb_g": 0.430132488944993, + "srgb_r": 0.648843794358158, + "texture_class": "clay loam", + "top": 66 + }, + { + "bottom": 97, + "cf_class": null, + "cielab_a": 18.6274984028187, + "cielab_b": 30.5071771041919, + "cielab_l": 40.9348246136769, + "hzname": "2BCt", + "matrix_dry_color_chroma": 6, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 4, + "series": "vannoy", + "srgb_b": 0.18354006337042, + "srgb_g": 0.327779698883437, + "srgb_r": 0.536623416931948, + "texture_class": "clay loam", + "top": 89 + }, + { + "bottom": 112, + "cf_class": null, + "cielab_a": 21.3849631140196, + "cielab_b": 26.25444782476, + "cielab_l": 51.4054637459216, + "hzname": "2Crt", + "matrix_dry_color_chroma": 6, + "matrix_dry_color_hue": "2.5YR", + "matrix_dry_color_value": 5, + "series": "vannoy", + "srgb_b": 0.308562250927243, + "srgb_g": 0.421289082188129, + "srgb_r": 0.661372868141787, + "texture_class": "clay", + "top": 97 + }, + { + "bottom": 8, + "cf_class": "very gravelly", + "cielab_a": 3.22690261250264, + "cielab_b": 12.65785928239, + "cielab_l": 51.3902579549971, + "hzname": "A1", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "voorhies", + "srgb_b": 0.396431450662527, + "srgb_g": 0.470047004516309, + "srgb_r": 0.534105039939954, + "texture_class": "loam", + "top": 0 + }, + { + "bottom": 0, + "cf_class": null, + "cielab_a": 1.46898546730889, + "cielab_b": 6.1399480339165, + "cielab_l": 40.8982555194042, + "hzname": "O", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "voorhies", + "srgb_b": 0.339204032769121, + "srgb_g": 0.373572298991998, + "srgb_r": 0.403971386567422, + "texture_class": null, + "top": 3 + }, + { + "bottom": 20, + "cf_class": "very gravelly", + "cielab_a": 4.85456052724254, + "cielab_b": 18.8945154624908, + "cielab_l": 51.4032284580631, + "hzname": "A2", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "voorhies", + "srgb_b": 0.354980541712737, + "srgb_g": 0.465230900713657, + "srgb_r": 0.556494226652486, + "texture_class": "loam", + "top": 8 + }, + { + "bottom": 30, + "cf_class": "very gravelly", + "cielab_a": 7.07240794343, + "cielab_b": 16.7996965924008, + "cielab_l": 61.5761989469929, + "hzname": "BA", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 6, + "series": "voorhies", + "srgb_b": 0.468421402094094, + "srgb_g": 0.562627337951678, + "srgb_r": 0.673683146747319, + "texture_class": "clay loam", + "top": 20 + }, + { + "bottom": 46, + "cf_class": "very gravelly", + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "Bt1", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "voorhies", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "clay loam", + "top": 30 + }, + { + "bottom": 91, + "cf_class": "very cobbly", + "cielab_a": 6.64470537620154, + "cielab_b": 17.0441174555841, + "cielab_l": 71.5450936565477, + "hzname": "Bt2", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 7, + "series": "voorhies", + "srgb_b": 0.567227498951373, + "srgb_g": 0.667111326527695, + "srgb_r": 0.779697061435501, + "texture_class": "clay loam", + "top": 46 + }, + { + "bottom": 106, + "cf_class": null, + "cielab_a": null, + "cielab_b": null, + "cielab_l": null, + "hzname": "Cr", + "matrix_dry_color_chroma": null, + "matrix_dry_color_hue": null, + "matrix_dry_color_value": null, + "series": "voorhies", + "srgb_b": null, + "srgb_g": null, + "srgb_r": null, + "texture_class": null, + "top": 91 + } + ], + "OSD_narrative": [ + { + "brief_narrative": "The Abegg series consists of very deep, well drained soils that formed in alluvium and colluvium weathered from metamorphosed sedimentary and volcanic bedrock. Abegg soils are on stream terraces and alluvial fans and have slopes of 2 to 30 percent. The mean annual precipitation is about 45 inches (1140 mm) and the mean annual temperature is about 52 degrees F (11 degrees C).", + "series": "abegg" + }, + { + "brief_narrative": "The Beekman series consists of moderately deep, well drained soils that formed in colluvium weathered from altered sedimentary and extrusive igneous rocks. Beekman soils are on steep mountainous slopes ranging from 30 to 100 percent. The mean annual precipitation is about 50 inches and the mean annual temperature is about 50 degrees F.", + "series": "beekman" + }, + { + "brief_narrative": "The Caris series consists of moderately deep, well drained soils that formed in colluvium weathered from altered sedimentary and extrusive igneous rocks. Caris soils are on mountains and have slopes of 50 to 90 percent. The mean annual temperature is about 50 degrees F and the mean annual precipitation is about 32 inches.", + "series": "caris" + }, + { + "brief_narrative": "The Colestine series consists of moderately deep, well drained soils that formed in colluvium and residuum from altered sedimentary and extrusive igneous rocks. Colestine soils are on mountain slopes of 20 to 90 percent. The mean annual precipitation is about 50 inches and the mean annual temperature is about 50 degrees F.", + "series": "colestine" + }, + { + "brief_narrative": "The Gregory series consists of deep, poorly drained soils on terraces. They formed in recent alluvium dominantly from sedimentary and metamorphic rocks. Slopes are 0 to 3 percent. The mean annual precipitation is about 24 inches and the mean annual temperature is about 52 degrees F.", + "series": "gregory" + }, + { + "brief_narrative": "The Josephine series consists of deep, well drained soils that formed in colluvium and residuum weathered from altered sedimentary and extrusive igneous rocks. Josephine soils are on broad ridgetops, toeslopes, footslopes, and side slopes of mountains. Slopes are 2 to 75 percent. The mean annual precipitation is about 45 inches and the mean annual temperature is about 50 degrees F.", + "series": "josephine" + }, + { + "brief_narrative": "The Offenbacher series consists of moderately deep, well drained soils that formed in colluvium weathered from altered sedimentary and extrusive igneous rocks. Offenbacher soils are on mountains and have slopes of 50 to 80 percent. The mean annual temperature is about 47 degrees F, and the mean annual precipitation is about 32 inches.", + "series": "offenbacher" + }, + { + "brief_narrative": "The Pollard series consists of very deep, well drained soils that formed in colluvium and residuum weathered from altered sedimentary and extrusive igneous rocks. Pollard soils are on hill slopes and toeslopes, foot slopes, saddles, ridges, and side slopes of mountains. Slopes are 2 to 60 percent. The mean annual precipitation is about 45 inches and the mean annual temperature is about 50 degrees F.", + "series": "pollard" + }, + { + "brief_narrative": "The Ruch series consists of very deep, well drained soils that formed in mixed alluvium. Ruch soils are on high stream terraces, alluvial fans and footslopes and have slopes of 2 to 60 percent. The mean annual precipitation is about 30 inches and the mean annual temperature is about 52 degrees F.", + "series": "ruch" + }, + { + "brief_narrative": "The Speaker series consists of moderately deep, well drained soils that formed in colluvium weathered from sedimentary and metamorphic rocks. Speaker soils are on low rolling foot slopes and side slopes and have gradients of 2 to 75 percent. The mean annual precipitation is about 45 inches (1140 mm) and the mean annual temperature is about 50 degrees F (10 degrees C).", + "series": "speaker" + }, + { + "brief_narrative": "The Vannoy series consists of moderately deep, well drained soils that formed in colluvium weathered from metamorphic and sedimentary rocks. Vannoy soils are on uplands and have slopes of 2 to 60 percent. The mean annual precipitation is about 30 inches. The mean annual temperature is about 50 degrees F.", + "series": "vannoy" + }, + { + "brief_narrative": "The Voorhies series consists of moderately deep, well drained soils that formed in colluvium weathered from altered sedimentary and extrusive igneous rocks. Voorhies soils are on mountain slopes and have slopes of 35 to 55 percent. Mean annual precipitation is about 30 inches and mean annual temperature is about 50 degrees F.", + "series": "voorhies" + } + ], + "hz": [ + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 82256093, + "claytotal_h": 25, + "claytotal_l": 0, + "claytotal_r": 15, + "cokey": 27529265, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 40, + "ecec_l": 30, + "ecec_r": 35, + "hzdepb_r": 2, + "hzdept_r": 0, + "hzname": "Oi", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 469691, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 35, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 50, + "total_frag_volume": 0, + "wfifteenbar_h": 40, + "wfifteenbar_l": 20, + "wfifteenbar_r": 30, + "wthirdbar_h": 80, + "wthirdbar_l": 40, + "wthirdbar_r": 60 + }, + { + "cec7_h": 18.9, + "cec7_l": 12.8, + "cec7_r": 16.3, + "chkey": 82256094, + "claytotal_h": 22, + "claytotal_l": 15, + "claytotal_r": 19, + "cokey": 27529265, + "dbovendry_h": 1.66, + "dbovendry_l": 1.54, + "dbovendry_r": 1.59, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 15, + "hzdept_r": 2, + "hzname": "A1", + "lep_h": 2.4, + "lep_l": 1, + "lep_r": 1.4, + "mukey": 469691, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 6.2, + "sandtotal_h": 50, + "sandtotal_l": 35, + "sandtotal_r": 43, + "silttotal_h": 49, + "silttotal_l": 28, + "silttotal_r": 38, + "total_frag_volume": 31, + "wfifteenbar_h": 14.8, + "wfifteenbar_l": 6.3, + "wfifteenbar_r": 9.8, + "wthirdbar_h": 26.8, + "wthirdbar_l": 15.8, + "wthirdbar_r": 20.2 + }, + { + "cec7_h": 27.5, + "cec7_l": 16.2, + "cec7_r": 19.3, + "chkey": 82256095, + "claytotal_h": 35, + "claytotal_l": 20, + "claytotal_r": 24, + "cokey": 27529265, + "dbovendry_h": 1.82, + "dbovendry_l": 1.55, + "dbovendry_r": 1.65, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 58, + "hzdept_r": 15, + "hzname": "A2", + "lep_h": 3.6, + "lep_l": 0.9, + "lep_r": 1.7, + "mukey": 469691, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 6.2, + "sandtotal_h": 45, + "sandtotal_l": 30, + "sandtotal_r": 39, + "silttotal_h": 50, + "silttotal_l": 22, + "silttotal_r": 37, + "total_frag_volume": 46, + "wfifteenbar_h": 15.2, + "wfifteenbar_l": 4.5, + "wfifteenbar_r": 8.3, + "wthirdbar_h": 23.4, + "wthirdbar_l": 10, + "wthirdbar_r": 16.3 + }, + { + "cec7_h": 26.7, + "cec7_l": 19.1, + "cec7_r": 23, + "chkey": 82256096, + "claytotal_h": 35, + "claytotal_l": 25, + "claytotal_r": 30, + "cokey": 27529265, + "dbovendry_h": 1.71, + "dbovendry_l": 1.59, + "dbovendry_r": 1.64, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 170, + "hzdept_r": 58, + "hzname": "Bt", + "lep_h": 2.1, + "lep_l": 0.9, + "lep_r": 1.6, + "mukey": 469691, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 6.2, + "sandtotal_h": 45, + "sandtotal_l": 30, + "sandtotal_r": 34, + "silttotal_h": 45, + "silttotal_l": 24, + "silttotal_r": 36, + "total_frag_volume": 63, + "wfifteenbar_h": 9.9, + "wfifteenbar_l": 3.6, + "wfifteenbar_r": 7, + "wthirdbar_h": 15.3, + "wthirdbar_l": 7.1, + "wthirdbar_r": 12 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 82255868, + "claytotal_h": 25, + "claytotal_l": 0, + "claytotal_r": 15, + "cokey": 27529282, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 40, + "ecec_l": 30, + "ecec_r": 35, + "hzdepb_r": 2, + "hzdept_r": 0, + "hzname": "Oi", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 469685, + "ph1to1h2o_h": 5.5, + "ph1to1h2o_l": 3.5, + "ph1to1h2o_r": 4.5, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 50, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 35, + "total_frag_volume": 0, + "wfifteenbar_h": 40, + "wfifteenbar_l": 20, + "wfifteenbar_r": 30, + "wthirdbar_h": 80, + "wthirdbar_l": 40, + "wthirdbar_r": 60 + }, + { + "cec7_h": 15, + "cec7_l": 5, + "cec7_r": 10, + "chkey": 82255662, + "claytotal_h": 20, + "claytotal_l": 12, + "claytotal_r": 16, + "cokey": 27529401, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.37, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 18, + "hzdept_r": 0, + "hzname": "A", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 469633, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 6.7, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 29.7, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 54.3, + "total_frag_volume": 21, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 8.7, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 21.4 + }, + { + "cec7_h": 15, + "cec7_l": 10, + "cec7_r": 12.5, + "chkey": 82255869, + "claytotal_h": 22, + "claytotal_l": 15, + "claytotal_r": 18.5, + "cokey": 27529282, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.52, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 30, + "hzdept_r": 2, + "hzname": "A", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 469685, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 5.8, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 27.1, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 54.4, + "total_frag_volume": 13, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 13.4, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 26.9 + }, + { + "cec7_h": 20, + "cec7_l": 15, + "cec7_r": 17.5, + "chkey": 82255663, + "claytotal_h": 35, + "claytotal_l": 20, + "claytotal_r": 26, + "cokey": 27529401, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.85, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 178, + "hzdept_r": 18, + "hzname": "Bt", + "lep_h": 5.9, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 469633, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.1, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 38, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 36, + "total_frag_volume": 14, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 15.1, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 26.7 + }, + { + "cec7_h": 20, + "cec7_l": 15, + "cec7_r": 17.5, + "chkey": 82255870, + "claytotal_h": 35, + "claytotal_l": 27, + "claytotal_r": 31, + "cokey": 27529282, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.88, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 98, + "hzdept_r": 30, + "hzname": "Bt", + "lep_h": 5.9, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 469685, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.1, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 35.4, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 33.6, + "total_frag_volume": 9, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 20.5, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 31.9 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 82255871, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 27529282, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 124, + "hzdept_r": 98, + "hzname": "Crt", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 469685, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 82255174, + "claytotal_h": 25, + "claytotal_l": 0, + "claytotal_r": 15, + "cokey": 27529223, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 40, + "ecec_l": 30, + "ecec_r": 35, + "hzdepb_r": 3, + "hzdept_r": 0, + "hzname": "Oi", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 469709, + "ph1to1h2o_h": 5.5, + "ph1to1h2o_l": 3.5, + "ph1to1h2o_r": 4.5, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 50, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 35, + "total_frag_volume": 0, + "wfifteenbar_h": 40, + "wfifteenbar_l": 20, + "wfifteenbar_r": 30, + "wthirdbar_h": 80, + "wthirdbar_l": 40, + "wthirdbar_r": 60 + }, + { + "cec7_h": 30, + "cec7_l": 15, + "cec7_r": 22.5, + "chkey": 82255175, + "claytotal_h": 25, + "claytotal_l": 15, + "claytotal_r": 20, + "cokey": 27529223, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.54, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 21, + "hzdept_r": 3, + "hzname": "A", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 469709, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.1, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 42.1, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 37.9, + "total_frag_volume": 26, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 10.7, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 22 + }, + { + "cec7_h": 30, + "cec7_l": 15, + "cec7_r": 22.5, + "chkey": 82255176, + "claytotal_h": 30, + "claytotal_l": 18, + "claytotal_r": 28, + "cokey": 27529223, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.53, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 82, + "hzdept_r": 21, + "hzname": "Bw", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 469709, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.1, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 34.4, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 37.6, + "total_frag_volume": 46, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 7.9, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 15 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 82255173, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 27529223, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 107, + "hzdept_r": 82, + "hzname": "R", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 469709, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 82255249, + "claytotal_h": 25, + "claytotal_l": 0, + "claytotal_r": 15, + "cokey": 27529618, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 40, + "ecec_l": 30, + "ecec_r": 35, + "hzdepb_r": 3, + "hzdept_r": 0, + "hzname": "Oi", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 469808, + "ph1to1h2o_h": 5.5, + "ph1to1h2o_l": 3.5, + "ph1to1h2o_r": 4.5, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 50, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 35, + "total_frag_volume": 0, + "wfifteenbar_h": 40, + "wfifteenbar_l": 20, + "wfifteenbar_r": 30, + "wthirdbar_h": 80, + "wthirdbar_l": 40, + "wthirdbar_r": 60 + }, + { + "cec7_h": 20, + "cec7_l": 10, + "cec7_r": 15, + "chkey": 82255035, + "claytotal_h": 25, + "claytotal_l": 15, + "claytotal_r": 20, + "cokey": 27529518, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.54, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 36, + "hzdept_r": 0, + "hzname": "A", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 469583, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.1, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 42.1, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 37.9, + "total_frag_volume": 26, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 11.7, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 22.7 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 82255234, + "claytotal_h": 25, + "claytotal_l": 0, + "claytotal_r": 15, + "cokey": 27529612, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 40, + "ecec_l": 30, + "ecec_r": 35, + "hzdepb_r": 3, + "hzdept_r": 0, + "hzname": "Oi", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 469806, + "ph1to1h2o_h": 5.5, + "ph1to1h2o_l": 3.5, + "ph1to1h2o_r": 4.5, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 50, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 35, + "total_frag_volume": 0, + "wfifteenbar_h": 40, + "wfifteenbar_l": 20, + "wfifteenbar_r": 30, + "wthirdbar_h": 80, + "wthirdbar_l": 40, + "wthirdbar_r": 60 + }, + { + "cec7_h": 25, + "cec7_l": 15, + "cec7_r": 20, + "chkey": 82255231, + "claytotal_h": 27, + "claytotal_l": 18, + "claytotal_r": 22.5, + "cokey": 27529612, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.52, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 41, + "hzdept_r": 3, + "hzname": "A", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 469806, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 5.8, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 39.8, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 37.7, + "total_frag_volume": 26, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 14.1, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 24.3 + }, + { + "cec7_h": 25, + "cec7_l": 15, + "cec7_r": 20, + "chkey": 82255246, + "claytotal_h": 27, + "claytotal_l": 18, + "claytotal_r": 22.5, + "cokey": 27529618, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.52, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 41, + "hzdept_r": 3, + "hzname": "A", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 469808, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 5.8, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 39.8, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 37.7, + "total_frag_volume": 26, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 14.1, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 24.3 + }, + { + "cec7_h": 15, + "cec7_l": 10, + "cec7_r": 12.5, + "chkey": 82255034, + "claytotal_h": 30, + "claytotal_l": 18, + "claytotal_r": 24, + "cokey": 27529518, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.54, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 71, + "hzdept_r": 36, + "hzname": "Bw", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 469583, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.1, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 39.1, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 36.9, + "total_frag_volume": 61, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 7.1, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 14.1 + }, + { + "cec7_h": 20, + "cec7_l": 15, + "cec7_r": 17.5, + "chkey": 82255247, + "claytotal_h": 35, + "claytotal_l": 27, + "claytotal_r": 31, + "cokey": 27529618, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.57, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 143, + "hzdept_r": 41, + "hzname": "Bt", + "lep_h": 5.9, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 469808, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 5.5, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 35.4, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 33.6, + "total_frag_volume": 24, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 15.9, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 27.4 + }, + { + "cec7_h": 20, + "cec7_l": 15, + "cec7_r": 17.5, + "chkey": 82255232, + "claytotal_h": 35, + "claytotal_l": 27, + "claytotal_r": 31, + "cokey": 27529612, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.57, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 143, + "hzdept_r": 41, + "hzname": "Bt", + "lep_h": 5.9, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 469806, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 5.5, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 35.4, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 33.6, + "total_frag_volume": 24, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 15.9, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 27.4 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 82255033, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 27529518, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 81, + "hzdept_r": 71, + "hzname": "R", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 469583, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 82255233, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 27529612, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 168, + "hzdept_r": 143, + "hzname": "Crt", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 469806, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 82255248, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 27529618, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 168, + "hzdept_r": 143, + "hzname": "Crt", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 469808, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": 99.6, + "cec7_l": 72.9, + "cec7_r": 84.3, + "chkey": 82256004, + "claytotal_h": 25, + "claytotal_l": 0, + "claytotal_r": 15, + "cokey": 27529279, + "dbovendry_h": 0.4, + "dbovendry_l": 0.19, + "dbovendry_r": 0.3, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 2, + "hzdept_r": 0, + "hzname": "Oi", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 469686, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6, + "sandtotal_h": 35, + "sandtotal_l": 35, + "sandtotal_r": 35, + "silttotal_h": 50, + "silttotal_l": 50, + "silttotal_r": 50, + "total_frag_volume": 0, + "wfifteenbar_h": 19.2, + "wfifteenbar_l": 10.9, + "wfifteenbar_r": 14.7, + "wthirdbar_h": 54.2, + "wthirdbar_l": 39.1, + "wthirdbar_r": 46.9 + }, + { + "cec7_h": 17.1, + "cec7_l": 11.2, + "cec7_r": 14.2, + "chkey": 82256002, + "claytotal_h": 22, + "claytotal_l": 15, + "claytotal_r": 18.5, + "cokey": 27529279, + "dbovendry_h": 1.57, + "dbovendry_l": 1.43, + "dbovendry_r": 1.53, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 30, + "hzdept_r": 2, + "hzname": "A", + "lep_h": 2.6, + "lep_l": 1.2, + "lep_r": 1.8, + "mukey": 469686, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 5.8, + "sandtotal_h": 27.1, + "sandtotal_l": 27.1, + "sandtotal_r": 27.1, + "silttotal_h": 54.4, + "silttotal_l": 54.4, + "silttotal_r": 54.4, + "total_frag_volume": 5, + "wfifteenbar_h": 18, + "wfifteenbar_l": 9.8, + "wfifteenbar_r": 14, + "wthirdbar_h": 31.8, + "wthirdbar_l": 23.2, + "wthirdbar_r": 28.1 + }, + { + "cec7_h": 22.2, + "cec7_l": 13, + "cec7_r": 18.1, + "chkey": 82256003, + "claytotal_h": 35, + "claytotal_l": 27, + "claytotal_r": 31, + "cokey": 27529279, + "dbovendry_h": 1.64, + "dbovendry_l": 1.54, + "dbovendry_r": 1.59, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 99, + "hzdept_r": 30, + "hzname": "Bt", + "lep_h": 4.2, + "lep_l": 1.6, + "lep_r": 3.1, + "mukey": 469686, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.1, + "sandtotal_h": 35, + "sandtotal_l": 35, + "sandtotal_r": 35, + "silttotal_h": 34, + "silttotal_l": 34, + "silttotal_r": 34, + "total_frag_volume": 12, + "wfifteenbar_h": 22.6, + "wfifteenbar_l": 11.1, + "wfifteenbar_r": 17.7, + "wthirdbar_h": 33.3, + "wthirdbar_l": 20.4, + "wthirdbar_r": 29 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 82256001, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 27529279, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 124, + "hzdept_r": 99, + "hzname": "Crt", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 469686, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 82255761, + "claytotal_h": 25, + "claytotal_l": 0, + "claytotal_r": 15, + "cokey": 27529335, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 40, + "ecec_l": 30, + "ecec_r": 35, + "hzdepb_r": 3, + "hzdept_r": 0, + "hzname": "Oi", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 469660, + "ph1to1h2o_h": 5.5, + "ph1to1h2o_l": 3.5, + "ph1to1h2o_r": 4.5, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 50, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 35, + "total_frag_volume": 0, + "wfifteenbar_h": 40, + "wfifteenbar_l": 20, + "wfifteenbar_r": 30, + "wthirdbar_h": 80, + "wthirdbar_l": 40, + "wthirdbar_r": 60 + }, + { + "cec7_h": 20, + "cec7_l": 10, + "cec7_r": 15, + "chkey": 82255758, + "claytotal_h": 25, + "claytotal_l": 18, + "claytotal_r": 21.5, + "cokey": 27529335, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.5, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 36, + "hzdept_r": 3, + "hzname": "A", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 469660, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 5.8, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 41.4, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 37.1, + "total_frag_volume": 5, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 15.8, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 29.7 + }, + { + "cec7_h": 20, + "cec7_l": 15, + "cec7_r": 17.5, + "chkey": 82255759, + "claytotal_h": 35, + "claytotal_l": 25, + "claytotal_r": 30, + "cokey": 27529335, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.61, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 92, + "hzdept_r": 36, + "hzname": "Bt", + "lep_h": 5.9, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 469660, + "ph1to1h2o_h": 6, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 5.3, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 33.5, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 36.5, + "total_frag_volume": 27, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 15.4, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 27.1 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 82255760, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 27529335, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 117, + "hzdept_r": 92, + "hzname": "Cr", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 469660, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 82255765, + "claytotal_h": 25, + "claytotal_l": 0, + "claytotal_r": 15, + "cokey": 27529336, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 40, + "ecec_l": 30, + "ecec_r": 35, + "hzdepb_r": 3, + "hzdept_r": 0, + "hzname": "Oi", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 469660, + "ph1to1h2o_h": 5.5, + "ph1to1h2o_l": 3.5, + "ph1to1h2o_r": 4.5, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 50, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 35, + "total_frag_volume": 0, + "wfifteenbar_h": 40, + "wfifteenbar_l": 20, + "wfifteenbar_r": 30, + "wthirdbar_h": 80, + "wthirdbar_l": 40, + "wthirdbar_r": 60 + }, + { + "cec7_h": 25, + "cec7_l": 15, + "cec7_r": 20, + "chkey": 82255762, + "claytotal_h": 27, + "claytotal_l": 18, + "claytotal_r": 22.5, + "cokey": 27529336, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.52, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 41, + "hzdept_r": 3, + "hzname": "A", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 469660, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 5.8, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 39.8, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 37.7, + "total_frag_volume": 26, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 14.1, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 24.3 + }, + { + "cec7_h": 20, + "cec7_l": 15, + "cec7_r": 17.5, + "chkey": 82255763, + "claytotal_h": 35, + "claytotal_l": 27, + "claytotal_r": 31, + "cokey": 27529336, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.57, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 143, + "hzdept_r": 41, + "hzname": "Bt", + "lep_h": 5.9, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 469660, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 5.5, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 35.4, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 33.6, + "total_frag_volume": 24, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 15.9, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 27.4 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 82255764, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 27529336, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 168, + "hzdept_r": 143, + "hzname": "Crt", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 469660, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 82255237, + "claytotal_h": 25, + "claytotal_l": 0, + "claytotal_r": 15, + "cokey": 27529611, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 40, + "ecec_l": 30, + "ecec_r": 35, + "hzdepb_r": 5, + "hzdept_r": 0, + "hzname": "Oi", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 469806, + "ph1to1h2o_h": 5.5, + "ph1to1h2o_l": 3.5, + "ph1to1h2o_r": 4.5, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 50, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 35, + "total_frag_volume": 0, + "wfifteenbar_h": 40, + "wfifteenbar_l": 20, + "wfifteenbar_r": 30, + "wthirdbar_h": 80, + "wthirdbar_l": 40, + "wthirdbar_r": 60 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 82255037, + "claytotal_h": 25, + "claytotal_l": 0, + "claytotal_r": 15, + "cokey": 27529517, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 40, + "ecec_l": 30, + "ecec_r": 35, + "hzdepb_r": 3, + "hzdept_r": 0, + "hzname": "Oi", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 469583, + "ph1to1h2o_h": 5.5, + "ph1to1h2o_l": 3.5, + "ph1to1h2o_r": 4.5, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 35, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 50, + "total_frag_volume": 0, + "wfifteenbar_h": 40, + "wfifteenbar_l": 20, + "wfifteenbar_r": 30, + "wthirdbar_h": 80, + "wthirdbar_l": 40, + "wthirdbar_r": 60 + }, + { + "cec7_h": 99.6, + "cec7_l": 72.9, + "cec7_r": 84.3, + "chkey": 82256008, + "claytotal_h": 25, + "claytotal_l": 0, + "claytotal_r": 15, + "cokey": 27529280, + "dbovendry_h": 0.4, + "dbovendry_l": 0.19, + "dbovendry_r": 0.3, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 3, + "hzdept_r": 0, + "hzname": "Oi", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 469686, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6, + "sandtotal_h": 35, + "sandtotal_l": 35, + "sandtotal_r": 35, + "silttotal_h": 50, + "silttotal_l": 50, + "silttotal_r": 50, + "total_frag_volume": 0, + "wfifteenbar_h": 19.2, + "wfifteenbar_l": 10.9, + "wfifteenbar_r": 14.7, + "wthirdbar_h": 54.2, + "wthirdbar_l": 39.1, + "wthirdbar_r": 46.9 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 82255253, + "claytotal_h": 25, + "claytotal_l": 0, + "claytotal_r": 15, + "cokey": 27529617, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 40, + "ecec_l": 30, + "ecec_r": 35, + "hzdepb_r": 3, + "hzdept_r": 0, + "hzname": "Oi", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 469808, + "ph1to1h2o_h": 5.5, + "ph1to1h2o_l": 3.5, + "ph1to1h2o_r": 4.5, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 50, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 35, + "total_frag_volume": 0, + "wfifteenbar_h": 40, + "wfifteenbar_l": 20, + "wfifteenbar_r": 30, + "wthirdbar_h": 80, + "wthirdbar_l": 40, + "wthirdbar_r": 60 + }, + { + "cec7_h": 20, + "cec7_l": 10, + "cec7_r": 15, + "chkey": 82255250, + "claytotal_h": 25, + "claytotal_l": 18, + "claytotal_r": 21.5, + "cokey": 27529617, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.5, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 36, + "hzdept_r": 3, + "hzname": "A", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 469808, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 5.8, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 41.4, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 37.1, + "total_frag_volume": 5, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 15.8, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 29.7 + }, + { + "cec7_h": 15, + "cec7_l": 10, + "cec7_r": 12.5, + "chkey": 82256006, + "claytotal_h": 22, + "claytotal_l": 15, + "claytotal_r": 18.5, + "cokey": 27529280, + "dbovendry_h": 1.58, + "dbovendry_l": 1.43, + "dbovendry_r": 1.51, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 23, + "hzdept_r": 3, + "hzname": "A", + "lep_h": 1.5, + "lep_l": 0.5, + "lep_r": 0.8, + "mukey": 469686, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 6.5, + "ph1to1h2o_r": 7, + "sandtotal_h": 43, + "sandtotal_l": 43, + "sandtotal_r": 43, + "silttotal_h": 38.5, + "silttotal_l": 38.5, + "silttotal_r": 38.5, + "total_frag_volume": 55, + "wfifteenbar_h": 11.6, + "wfifteenbar_l": 4.6, + "wfifteenbar_r": 6.6, + "wthirdbar_h": 20.5, + "wthirdbar_l": 10.9, + "wthirdbar_r": 13.4 + }, + { + "cec7_h": 15, + "cec7_l": 10, + "cec7_r": 12.5, + "chkey": 82255039, + "claytotal_h": 25, + "claytotal_l": 18, + "claytotal_r": 21.5, + "cokey": 27529517, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.32, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 26, + "hzdept_r": 3, + "hzname": "A", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 469583, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.5, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 41.4, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 37.1, + "total_frag_volume": 25, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 11.3, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 23.3 + }, + { + "cec7_h": 10, + "cec7_l": 5, + "cec7_r": 7.5, + "chkey": 82255235, + "claytotal_h": 27, + "claytotal_l": 20, + "claytotal_r": 23.5, + "cokey": 27529611, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.34, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 33, + "hzdept_r": 5, + "hzname": "A", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 469806, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.5, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 39.2, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 37.3, + "total_frag_volume": 12, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 13, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 26.6 + }, + { + "cec7_h": 20, + "cec7_l": 15, + "cec7_r": 17.5, + "chkey": 82256007, + "claytotal_h": 35, + "claytotal_l": 25, + "claytotal_r": 30, + "cokey": 27529280, + "dbovendry_h": 1.63, + "dbovendry_l": 1.44, + "dbovendry_r": 1.54, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 94, + "hzdept_r": 23, + "hzname": "Bt", + "lep_h": 2.6, + "lep_l": 1, + "lep_r": 1.6, + "mukey": 469686, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 6.7, + "sandtotal_h": 34, + "sandtotal_l": 34, + "sandtotal_r": 34, + "silttotal_h": 36, + "silttotal_l": 36, + "silttotal_r": 36, + "total_frag_volume": 50, + "wfifteenbar_h": 14.9, + "wfifteenbar_l": 5, + "wfifteenbar_r": 9.5, + "wthirdbar_h": 22.5, + "wthirdbar_l": 9.9, + "wthirdbar_r": 16.2 + }, + { + "cec7_h": 15, + "cec7_l": 10, + "cec7_r": 12.5, + "chkey": 82255038, + "claytotal_h": 30, + "claytotal_l": 22, + "claytotal_r": 26, + "cokey": 27529517, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.65, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 89, + "hzdept_r": 26, + "hzname": "Bw", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 469583, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.5, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 38, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 36, + "total_frag_volume": 24, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 13.3, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 23.6 + }, + { + "cec7_h": 15, + "cec7_l": 10, + "cec7_r": 12.5, + "chkey": 82255236, + "claytotal_h": 50, + "claytotal_l": 35, + "claytotal_r": 39, + "cokey": 27529611, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.59, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 160, + "hzdept_r": 33, + "hzname": "Bt", + "lep_h": 5.9, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 469806, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 5.8, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 29.5, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 31.5, + "total_frag_volume": 10, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 21.2, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 32.1 + }, + { + "cec7_h": 20, + "cec7_l": 15, + "cec7_r": 17.5, + "chkey": 82255251, + "claytotal_h": 35, + "claytotal_l": 25, + "claytotal_r": 30, + "cokey": 27529617, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.61, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 92, + "hzdept_r": 36, + "hzname": "Bt", + "lep_h": 5.9, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 469808, + "ph1to1h2o_h": 6, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 5.3, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 33.5, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 36.5, + "total_frag_volume": 27, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 15.4, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 27.1 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 82255036, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 27529517, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 99, + "hzdept_r": 89, + "hzname": "R", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 469583, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 82255252, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 27529617, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 117, + "hzdept_r": 92, + "hzname": "Cr", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 469808, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 82256005, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 27529280, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 119, + "hzdept_r": 94, + "hzname": "Cr", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 469686, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 82255177, + "claytotal_h": 25, + "claytotal_l": 0, + "claytotal_r": 15, + "cokey": 27529224, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 40, + "ecec_l": 30, + "ecec_r": 35, + "hzdepb_r": 3, + "hzdept_r": 0, + "hzname": "Oi", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 469709, + "ph1to1h2o_h": 5.5, + "ph1to1h2o_l": 3.5, + "ph1to1h2o_r": 4.5, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 50, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 35, + "total_frag_volume": 0, + "wfifteenbar_h": 40, + "wfifteenbar_l": 20, + "wfifteenbar_r": 30, + "wthirdbar_h": 80, + "wthirdbar_l": 40, + "wthirdbar_r": 60 + }, + { + "cec7_h": 35, + "cec7_l": 15, + "cec7_r": 25, + "chkey": 82255178, + "claytotal_h": 25, + "claytotal_l": 18, + "claytotal_r": 21.5, + "cokey": 27529224, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.32, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 26, + "hzdept_r": 3, + "hzname": "A", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 469709, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.5, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 41.4, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 37.1, + "total_frag_volume": 25, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 10.4, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 22.6 + }, + { + "cec7_h": 35, + "cec7_l": 15, + "cec7_r": 25, + "chkey": 82255179, + "claytotal_h": 30, + "claytotal_l": 18, + "claytotal_r": 24, + "cokey": 27529224, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.64, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 89, + "hzdept_r": 26, + "hzname": "Bt", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 469709, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.5, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 39.1, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 36.9, + "total_frag_volume": 14, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 12.4, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 24 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 82255180, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 27529224, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 115, + "hzdept_r": 89, + "hzname": "R", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 469709, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": 35, + "cec7_l": 25, + "cec7_r": 30, + "chkey": 82255984, + "claytotal_h": 35, + "claytotal_l": 27, + "claytotal_r": 31, + "cokey": 27529400, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.6, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 18, + "hzdept_r": 0, + "hzname": "H1", + "lep_h": 5.9, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 469633, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 6.3, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 20, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 49, + "total_frag_volume": 5, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 22.3, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 33.6 + }, + { + "cec7_h": 35, + "cec7_l": 25, + "cec7_r": 30, + "chkey": 82255981, + "claytotal_h": 45, + "claytotal_l": 35, + "claytotal_r": 40, + "cokey": 27529400, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.64, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 112, + "hzdept_r": 18, + "hzname": "H2", + "lep_h": 8.9, + "lep_l": 6, + "lep_r": 7.5, + "mukey": 469633, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.1, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 30, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 30, + "total_frag_volume": 13, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 21.1, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 28.9 + }, + { + "cec7_h": 20, + "cec7_l": 15, + "cec7_r": 17.5, + "chkey": 82255982, + "claytotal_h": 30, + "claytotal_l": 25, + "claytotal_r": 27.5, + "cokey": 27529400, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.56, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 127, + "hzdept_r": 112, + "hzname": "H3", + "lep_h": 5.9, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 469633, + "ph1to1h2o_h": 6, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 5.8, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 55.1, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 17.4, + "total_frag_volume": 13, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 14.1, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 22.1 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 82255983, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 27529400, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 152, + "hzdept_r": 127, + "hzname": "H4", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 469633, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": null, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 27529266, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": null, + "hzdept_r": null, + "hzname": null, + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 469691, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": null, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 27529610, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": null, + "hzdept_r": null, + "hzname": null, + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 469806, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": null, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 27529616, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": null, + "hzdept_r": null, + "hzname": null, + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 469808, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": null, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 27529334, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": null, + "hzdept_r": null, + "hzname": null, + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 469660, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": null, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 27529399, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": null, + "hzdept_r": null, + "hzname": null, + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 469633, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": null, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 27529281, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": null, + "hzdept_r": null, + "hzname": null, + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 469685, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + } + ], + "spn": [ + { + "closest_pt_x": -123.064531, + "closest_pt_y": 42.494912, + "cokey": 27529401, + "compkind": "Series", + "compname": "ruch", + "comppct_r": 80, + "dist_meters": 0, + "elev_r": 610, + "irrcapcl": 4, + "irrcapscl": "e", + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 469633, + "nirrcapcl": 4, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 14, + "taxorder": "Alfisols", + "taxsubgrp": "Mollic Palexeralfs", + "which": "a" + }, + { + "closest_pt_x": -123.064531, + "closest_pt_y": 42.494912, + "cokey": 27529400, + "compkind": "Series", + "compname": "gregory", + "comppct_r": 2, + "dist_meters": 0, + "elev_r": 458, + "irrcapcl": 2, + "irrcapscl": "w", + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 469633, + "nirrcapcl": 4, + "nirrcapscl": "w", + "nirrcapunit": null, + "slope_r": 2, + "taxorder": "Mollisols", + "taxsubgrp": "Pachic Argixerolls", + "which": "a" + }, + { + "closest_pt_x": -123.064531, + "closest_pt_y": 42.494912, + "cokey": 27529399, + "compkind": "Taxon above family", + "compname": "aquolls", + "comppct_r": 1, + "dist_meters": 0, + "elev_r": null, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 469633, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": null, + "taxorder": "Mollisols", + "taxsubgrp": null, + "which": "a" + }, + { + "closest_pt_x": -123.0645446377934, + "closest_pt_y": 42.49537473602709, + "cokey": 27529282, + "compkind": "Series", + "compname": "vannoy", + "comppct_r": 80, + "dist_meters": 51, + "elev_r": 762, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "south", + "majcompflag": "Yes", + "mukey": 469685, + "nirrcapcl": 4, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 24, + "taxorder": "Alfisols", + "taxsubgrp": "Mollic Haploxeralfs", + "which": "b" + }, + { + "closest_pt_x": -123.0645446377934, + "closest_pt_y": 42.49537473602709, + "cokey": 27529281, + "compkind": "Taxon above family", + "compname": "aqualfs", + "comppct_r": 1, + "dist_meters": 51, + "elev_r": null, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 469685, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": null, + "taxorder": "Alfisols", + "taxsubgrp": null, + "which": "b" + }, + { + "closest_pt_x": -123.06465931504427, + "closest_pt_y": 42.495808953712, + "cokey": 27529279, + "compkind": "Series", + "compname": "vannoy", + "comppct_r": 50, + "dist_meters": 100, + "elev_r": 762, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "south", + "majcompflag": "Yes", + "mukey": 469686, + "nirrcapcl": 7, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 45, + "taxorder": "Alfisols", + "taxsubgrp": "Mollic Haploxeralfs", + "which": "b" + }, + { + "closest_pt_x": -123.06465931504427, + "closest_pt_y": 42.495808953712, + "cokey": 27529280, + "compkind": "Series", + "compname": "voorhies", + "comppct_r": 30, + "dist_meters": 100, + "elev_r": 762, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "south", + "majcompflag": "Yes", + "mukey": 469686, + "nirrcapcl": 7, + "nirrcapscl": "s", + "nirrcapunit": null, + "slope_r": 45, + "taxorder": "Alfisols", + "taxsubgrp": "Mollic Haploxeralfs", + "which": "b" + }, + { + "closest_pt_x": -123.065054813564, + "closest_pt_y": 42.4921382654754, + "cokey": 27529265, + "compkind": "Series", + "compname": "abegg", + "comppct_r": 83, + "dist_meters": 310, + "elev_r": 575, + "irrcapcl": 4, + "irrcapscl": "e", + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 469691, + "nirrcapcl": 3, + "nirrcapscl": "s", + "nirrcapunit": null, + "slope_r": 10, + "taxorder": "Alfisols", + "taxsubgrp": "Ultic Haploxeralfs", + "which": "b" + }, + { + "closest_pt_x": -123.065054813564, + "closest_pt_y": 42.4921382654754, + "cokey": 27529266, + "compkind": "Taxon above family", + "compname": "aqualfs", + "comppct_r": 2, + "dist_meters": 310, + "elev_r": 575, + "irrcapcl": 7, + "irrcapscl": "s", + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 469691, + "nirrcapcl": 7, + "nirrcapscl": "s", + "nirrcapunit": null, + "slope_r": 10, + "taxorder": "Alfisols", + "taxsubgrp": null, + "which": "b" + }, + { + "closest_pt_x": -123.068186671984, + "closest_pt_y": 42.4933519711631, + "cokey": 27529223, + "compkind": "Series", + "compname": "caris", + "comppct_r": 60, + "dist_meters": 347, + "elev_r": 762, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "south", + "majcompflag": "Yes", + "mukey": 469709, + "nirrcapcl": 7, + "nirrcapscl": "s", + "nirrcapunit": null, + "slope_r": 63, + "taxorder": "Inceptisols", + "taxsubgrp": "Typic Xerochrepts", + "which": "b" + }, + { + "closest_pt_x": -123.068186671984, + "closest_pt_y": 42.4933519711631, + "cokey": 27529224, + "compkind": "Series", + "compname": "offenbacher", + "comppct_r": 20, + "dist_meters": 347, + "elev_r": 762, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "south", + "majcompflag": "Yes", + "mukey": 469709, + "nirrcapcl": 7, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 63, + "taxorder": "Inceptisols", + "taxsubgrp": "Typic Xerochrepts", + "which": "b" + }, + { + "closest_pt_x": -123.067858537186, + "closest_pt_y": 42.4987312307902, + "cokey": 27529518, + "compkind": "Series", + "compname": "beekman", + "comppct_r": 55, + "dist_meters": 497, + "elev_r": 793, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "north", + "majcompflag": "Yes", + "mukey": 469583, + "nirrcapcl": 7, + "nirrcapscl": "s", + "nirrcapunit": null, + "slope_r": 65, + "taxorder": "Inceptisols", + "taxsubgrp": "Dystric Xerochrepts", + "which": "b" + }, + { + "closest_pt_x": -123.067858537186, + "closest_pt_y": 42.4987312307902, + "cokey": 27529517, + "compkind": "Series", + "compname": "colestine", + "comppct_r": 30, + "dist_meters": 497, + "elev_r": 793, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "north", + "majcompflag": "Yes", + "mukey": 469583, + "nirrcapcl": 7, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 65, + "taxorder": "Inceptisols", + "taxsubgrp": "Dystric Xerochrepts", + "which": "b" + }, + { + "closest_pt_x": -123.069504398648, + "closest_pt_y": 42.5002196143893, + "cokey": 27529335, + "compkind": "Series", + "compname": "speaker", + "comppct_r": 45, + "dist_meters": 712, + "elev_r": 793, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "south", + "majcompflag": "Yes", + "mukey": 469660, + "nirrcapcl": 6, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 45, + "taxorder": "Alfisols", + "taxsubgrp": "Ultic Haploxeralfs", + "which": "b" + }, + { + "closest_pt_x": -123.069504398648, + "closest_pt_y": 42.5002196143893, + "cokey": 27529336, + "compkind": "Series", + "compname": "josephine", + "comppct_r": 40, + "dist_meters": 712, + "elev_r": 793, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "south", + "majcompflag": "Yes", + "mukey": 469660, + "nirrcapcl": 6, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 45, + "taxorder": "Ultisols", + "taxsubgrp": "Typic Haploxerults", + "which": "b" + }, + { + "closest_pt_x": -123.069504398648, + "closest_pt_y": 42.5002196143893, + "cokey": 27529334, + "compkind": "Taxon above family", + "compname": "aqualfs", + "comppct_r": 1, + "dist_meters": 712, + "elev_r": null, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 469660, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": null, + "taxorder": "Alfisols", + "taxsubgrp": null, + "which": "b" + }, + { + "closest_pt_x": -123.06897985701188, + "closest_pt_y": 42.500564210689404, + "cokey": 27529618, + "compkind": "Series", + "compname": "josephine", + "comppct_r": 55, + "dist_meters": 717, + "elev_r": 793, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "north", + "majcompflag": "Yes", + "mukey": 469808, + "nirrcapcl": 6, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 45, + "taxorder": "Ultisols", + "taxsubgrp": "Typic Haploxerults", + "which": "b" + }, + { + "closest_pt_x": -123.06897985701188, + "closest_pt_y": 42.500564210689404, + "cokey": 27529617, + "compkind": "Series", + "compname": "speaker", + "comppct_r": 30, + "dist_meters": 717, + "elev_r": 793, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "north", + "majcompflag": "Yes", + "mukey": 469808, + "nirrcapcl": 6, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 45, + "taxorder": "Alfisols", + "taxsubgrp": "Ultic Haploxeralfs", + "which": "b" + }, + { + "closest_pt_x": -123.06897985701188, + "closest_pt_y": 42.500564210689404, + "cokey": 27529616, + "compkind": "Taxon above family", + "compname": "aquults", + "comppct_r": 1, + "dist_meters": 717, + "elev_r": null, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 469808, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": null, + "taxorder": "Ultisols", + "taxsubgrp": null, + "which": "b" + }, + { + "closest_pt_x": -123.06620851865, + "closest_pt_y": 42.5022923730917, + "cokey": 27529612, + "compkind": "Series", + "compname": "josephine", + "comppct_r": 55, + "dist_meters": 829, + "elev_r": 793, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "south", + "majcompflag": "Yes", + "mukey": 469806, + "nirrcapcl": 4, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 24, + "taxorder": "Ultisols", + "taxsubgrp": "Typic Haploxerults", + "which": "b" + }, + { + "closest_pt_x": -123.06620851865, + "closest_pt_y": 42.5022923730917, + "cokey": 27529611, + "compkind": "Series", + "compname": "pollard", + "comppct_r": 30, + "dist_meters": 829, + "elev_r": 793, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "south", + "majcompflag": "Yes", + "mukey": 469806, + "nirrcapcl": 6, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 24, + "taxorder": "Ultisols", + "taxsubgrp": "Typic Haploxerults", + "which": "b" + }, + { + "closest_pt_x": -123.06620851865, + "closest_pt_y": 42.5022923730917, + "cokey": 27529610, + "compkind": "Taxon above family", + "compname": "aquults", + "comppct_r": 2, + "dist_meters": 829, + "elev_r": null, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 469806, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": null, + "taxorder": "Ultisols", + "taxsubgrp": null, + "which": "b" + } + ] + } +} diff --git a/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[42.63413723,-94.31005777].json b/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[42.63413723,-94.31005777].json new file mode 100644 index 0000000..f04be87 --- /dev/null +++ b/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[42.63413723,-94.31005777].json @@ -0,0 +1,3382 @@ +{ + "elev": { + "location": { + "spatialReference": { + "latestWkid": 4326, + "wkid": 4326 + }, + "x": -94.31005777, + "y": 42.63413723 + }, + "locationId": 0, + "rasterId": 35195, + "resolution": 1, + "value": "351.249969482" + }, + "soilweb": { + "ESD": [ + { + "cokey": 27398739, + "ecoclassid": "R103XY004MN", + "ecoclassname": "Loamy Upland Prairies", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/103X/R103XY004MN" + }, + { + "cokey": 27398740, + "ecoclassid": "R103XY004MN", + "ecoclassname": "Loamy Upland Prairies", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/103X/R103XY004MN" + }, + { + "cokey": 27398741, + "ecoclassid": "R103XY001MN", + "ecoclassname": "Loamy Wet Prairies", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/103X/R103XY001MN" + }, + { + "cokey": 27398742, + "ecoclassid": "R103XY002MN", + "ecoclassname": "Calcareous Upland Prairies", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/103X/R103XY002MN" + }, + { + "cokey": 27398757, + "ecoclassid": "R103XY004MN", + "ecoclassname": "Loamy Upland Prairies", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/103X/R103XY004MN" + }, + { + "cokey": 27398758, + "ecoclassid": "R103XY001MN", + "ecoclassname": "Loamy Wet Prairies", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/103X/R103XY001MN" + }, + { + "cokey": 27398759, + "ecoclassid": "R103XY004MN", + "ecoclassname": "Loamy Upland Prairies", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/103X/R103XY004MN" + }, + { + "cokey": 27398760, + "ecoclassid": "R103XY015MN", + "ecoclassname": "Depressional Marsh", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/103X/R103XY015MN" + }, + { + "cokey": 27398761, + "ecoclassid": "R103XY001MN", + "ecoclassname": "Loamy Wet Prairies", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/103X/R103XY001MN" + }, + { + "cokey": 27398762, + "ecoclassid": "R103XY004MN", + "ecoclassname": "Loamy Upland Prairies", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/103X/R103XY004MN" + }, + { + "cokey": 27398763, + "ecoclassid": "R103XY001MN", + "ecoclassname": "Loamy Wet Prairies", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/103X/R103XY001MN" + }, + { + "cokey": 27398764, + "ecoclassid": "R103XY015MN", + "ecoclassname": "Depressional Marsh", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/103X/R103XY015MN" + }, + { + "cokey": 27398765, + "ecoclassid": "R103XY015MN", + "ecoclassname": "Depressional Marsh", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/103X/R103XY015MN" + } + ], + "OSD_morph": [ + { + "bottom": 25, + "cf_class": null, + "cielab_a": -0.264329612213968, + "cielab_b": -0.0780669168081838, + "cielab_l": 5.01112560247046, + "hzname": "Ap", + "matrix_dry_color_chroma": 0, + "matrix_dry_color_hue": "N", + "matrix_dry_color_value": 3, + "series": "canisteo", + "srgb_b": 0.0666333333333333, + "srgb_g": 0.0667333333333333, + "srgb_r": 0.0639833333333333, + "texture_class": "clay loam", + "top": 0 + }, + { + "bottom": 46, + "cf_class": null, + "cielab_a": -0.376057843677599, + "cielab_b": -0.218681789415542, + "cielab_l": 10.0200011128596, + "hzname": "A", + "matrix_dry_color_chroma": 0, + "matrix_dry_color_hue": "N", + "matrix_dry_color_value": 4, + "series": "canisteo", + "srgb_b": 0.108966666666667, + "srgb_g": 0.108533333333333, + "srgb_r": 0.105216666666667, + "texture_class": "clay loam", + "top": 25 + }, + { + "bottom": 61, + "cf_class": null, + "cielab_a": -1.35690966378949, + "cielab_b": 14.9988146490422, + "cielab_l": 61.5777755255565, + "hzname": "Bkg1", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "5Y", + "matrix_dry_color_value": 6, + "series": "canisteo", + "srgb_b": 0.479503730070902, + "srgb_g": 0.582422859186915, + "srgb_r": 0.614797600511416, + "texture_class": "loam", + "top": 46 + }, + { + "bottom": 99, + "cf_class": null, + "cielab_a": -1.55064757628243, + "cielab_b": 15.2552006801532, + "cielab_l": 71.5464027687355, + "hzname": "Bkg2", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "5Y", + "matrix_dry_color_value": 7, + "series": "canisteo", + "srgb_b": 0.578624398378966, + "srgb_g": 0.686817104273399, + "srgb_r": 0.719806658397243, + "texture_class": "loam", + "top": 61 + }, + { + "bottom": 165, + "cf_class": null, + "cielab_a": -0.674444074247604, + "cielab_b": 8.17959726048174, + "cielab_l": 71.5275966320126, + "hzname": "Cg1", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "5Y", + "matrix_dry_color_value": 7, + "series": "canisteo", + "srgb_b": 0.62889187796713, + "srgb_g": 0.686307413116902, + "srgb_r": 0.706970667710059, + "texture_class": "loam", + "top": 99 + }, + { + "bottom": 203, + "cf_class": null, + "cielab_a": -0.674444074247604, + "cielab_b": 8.17959726048174, + "cielab_l": 71.5275966320126, + "hzname": "Cg2", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "5Y", + "matrix_dry_color_value": 7, + "series": "canisteo", + "srgb_b": 0.62889187796713, + "srgb_g": 0.686307413116902, + "srgb_r": 0.706970667710059, + "texture_class": "loam", + "top": 165 + }, + { + "bottom": 18, + "cf_class": null, + "cielab_a": 2.22631909703591, + "cielab_b": 6.22623819927245, + "cielab_l": 30.2411403125398, + "hzname": "Ap", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 3, + "series": "clarion", + "srgb_b": 0.24183809974853, + "srgb_g": 0.273363635444249, + "srgb_r": 0.30796985092764, + "texture_class": "loam", + "top": 0 + }, + { + "bottom": 30, + "cf_class": null, + "cielab_a": 3.86763232791851, + "cielab_b": 12.0707341532888, + "cielab_l": 30.2538633743581, + "hzname": "A1", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 3, + "series": "clarion", + "srgb_b": 0.20664306477238, + "srgb_g": 0.268954612150501, + "srgb_r": 0.328393328197016, + "texture_class": "loam", + "top": 18 + }, + { + "bottom": 46, + "cf_class": null, + "cielab_a": 5.59646217145787, + "cielab_b": 19.7307610177311, + "cielab_l": 40.9264484899888, + "hzname": "A2", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "clarion", + "srgb_b": 0.252653362523879, + "srgb_g": 0.362204899697049, + "srgb_r": 0.454695384023485, + "texture_class": "loam", + "top": 30 + }, + { + "bottom": 66, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "Bw1", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "clarion", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "loam", + "top": 46 + }, + { + "bottom": 91, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "Bw2", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "clarion", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "loam", + "top": 66 + }, + { + "bottom": 132, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "C1", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "clarion", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "loam", + "top": 91 + }, + { + "bottom": 152, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "C2", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "clarion", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "loam", + "top": 132 + }, + { + "bottom": 23, + "cf_class": null, + "cielab_a": -0.0178692182715434, + "cielab_b": -0.00632998669012341, + "cielab_l": 2.30666966185143, + "hzname": "Ap", + "matrix_dry_color_chroma": 0, + "matrix_dry_color_hue": "N", + "matrix_dry_color_value": 2, + "series": "glencoe", + "srgb_b": 0.03305, + "srgb_g": 0.03305, + "srgb_r": 0.0327833333333333, + "texture_class": "clay loam", + "top": 0 + }, + { + "bottom": 99, + "cf_class": null, + "cielab_a": 2.22631909703591, + "cielab_b": 6.22623819927245, + "cielab_l": 30.2411403125398, + "hzname": "A", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 3, + "series": "glencoe", + "srgb_b": 0.24183809974853, + "srgb_g": 0.273363635444249, + "srgb_r": 0.30796985092764, + "texture_class": "clay loam", + "top": 23 + }, + { + "bottom": 127, + "cf_class": null, + "cielab_a": 0.680039824635603, + "cielab_b": 14.3263472503311, + "cielab_l": 61.5747851305097, + "hzname": "Bg", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 6, + "series": "glencoe", + "srgb_b": 0.484462289310216, + "srgb_g": 0.578016804839716, + "srgb_r": 0.626868011624415, + "texture_class": "clay loam", + "top": 99 + }, + { + "bottom": 173, + "cf_class": null, + "cielab_a": 0.680039824635603, + "cielab_b": 14.3263472503311, + "cielab_l": 61.5747851305097, + "hzname": "Cg1", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 6, + "series": "glencoe", + "srgb_b": 0.484462289310216, + "srgb_g": 0.578016804839716, + "srgb_r": 0.626868011624415, + "texture_class": "loam", + "top": 127 + }, + { + "bottom": 203, + "cf_class": null, + "cielab_a": -1.35690966378949, + "cielab_b": 14.9988146490422, + "cielab_l": 61.5777755255565, + "hzname": "Cg2", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "5Y", + "matrix_dry_color_value": 6, + "series": "glencoe", + "srgb_b": 0.479503730070902, + "srgb_g": 0.582422859186915, + "srgb_r": 0.614797600511416, + "texture_class": "loam", + "top": 173 + }, + { + "bottom": 25, + "cf_class": null, + "cielab_a": 1.46898546730889, + "cielab_b": 6.1399480339165, + "cielab_l": 40.8982555194042, + "hzname": "Ap", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "nicollet", + "srgb_b": 0.339204032769121, + "srgb_g": 0.373572298991998, + "srgb_r": 0.403971386567422, + "texture_class": "clay loam", + "top": 0 + }, + { + "bottom": 43, + "cf_class": null, + "cielab_a": 1.86260532006871, + "cielab_b": 6.77440192712013, + "cielab_l": 51.3762468196222, + "hzname": "A", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "nicollet", + "srgb_b": 0.435259851904397, + "srgb_g": 0.474245896402447, + "srgb_r": 0.511514594063427, + "texture_class": "clay loam", + "top": 25 + }, + { + "bottom": 53, + "cf_class": null, + "cielab_a": 2.89064271156414, + "cielab_b": 13.064616880291, + "cielab_l": 61.5701956263403, + "hzname": "Bw", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "nicollet", + "srgb_b": 0.493496194704249, + "srgb_g": 0.573230189582846, + "srgb_r": 0.638561136802744, + "texture_class": "clay loam", + "top": 43 + }, + { + "bottom": 74, + "cf_class": null, + "cielab_a": 0.680039824635603, + "cielab_b": 14.3263472503311, + "cielab_l": 61.5747851305097, + "hzname": "Bg1", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 6, + "series": "nicollet", + "srgb_b": 0.484462289310216, + "srgb_g": 0.578016804839716, + "srgb_r": 0.626868011624415, + "texture_class": "clay loam", + "top": 53 + }, + { + "bottom": 84, + "cf_class": null, + "cielab_a": 0.680039824635603, + "cielab_b": 14.3263472503311, + "cielab_l": 61.5747851305097, + "hzname": "Bg2", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 6, + "series": "nicollet", + "srgb_b": 0.484462289310216, + "srgb_g": 0.578016804839716, + "srgb_r": 0.626868011624415, + "texture_class": "clay loam", + "top": 74 + }, + { + "bottom": 91, + "cf_class": null, + "cielab_a": 0.680039824635603, + "cielab_b": 14.3263472503311, + "cielab_l": 61.5747851305097, + "hzname": "BCg", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 6, + "series": "nicollet", + "srgb_b": 0.484462289310216, + "srgb_g": 0.578016804839716, + "srgb_r": 0.626868011624415, + "texture_class": "clay loam", + "top": 84 + }, + { + "bottom": 152, + "cf_class": null, + "cielab_a": 0.680039824635603, + "cielab_b": 14.3263472503311, + "cielab_l": 61.5747851305097, + "hzname": "BCkg", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 6, + "series": "nicollet", + "srgb_b": 0.484462289310216, + "srgb_g": 0.578016804839716, + "srgb_r": 0.626868011624415, + "texture_class": "loam", + "top": 91 + }, + { + "bottom": 15, + "cf_class": null, + "cielab_a": 2.13433083672807, + "cielab_b": 5.2315503852341, + "cielab_l": 19.6349148475481, + "hzname": "Ap", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 2, + "series": "okoboji", + "srgb_b": 0.156922876062676, + "srgb_g": 0.181204698011546, + "srgb_r": 0.210201509078495, + "texture_class": "silty clay loam", + "top": 0 + }, + { + "bottom": 41, + "cf_class": null, + "cielab_a": 2.13433083672807, + "cielab_b": 5.2315503852341, + "cielab_l": 19.6349148475481, + "hzname": "A1", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 2, + "series": "okoboji", + "srgb_b": 0.156922876062676, + "srgb_g": 0.181204698011546, + "srgb_r": 0.210201509078495, + "texture_class": "silty clay loam", + "top": 15 + }, + { + "bottom": 66, + "cf_class": null, + "cielab_a": 2.22631909703591, + "cielab_b": 6.22623819927245, + "cielab_l": 30.2411403125398, + "hzname": "A2", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 3, + "series": "okoboji", + "srgb_b": 0.24183809974853, + "srgb_g": 0.273363635444249, + "srgb_r": 0.30796985092764, + "texture_class": "silty clay loam", + "top": 41 + }, + { + "bottom": 81, + "cf_class": null, + "cielab_a": 2.22631909703591, + "cielab_b": 6.22623819927245, + "cielab_l": 30.2411403125398, + "hzname": "A3", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 3, + "series": "okoboji", + "srgb_b": 0.24183809974853, + "srgb_g": 0.273363635444249, + "srgb_r": 0.30796985092764, + "texture_class": "silty clay loam", + "top": 66 + }, + { + "bottom": 91, + "cf_class": null, + "cielab_a": -0.325984229980952, + "cielab_b": -0.315836589404217, + "cielab_l": 20.8896053984664, + "hzname": "Bg1", + "matrix_dry_color_chroma": 0, + "matrix_dry_color_hue": "N", + "matrix_dry_color_value": 5, + "series": "okoboji", + "srgb_b": 0.198714285714286, + "srgb_g": 0.197614285714286, + "srgb_r": 0.194114285714286, + "texture_class": "silty clay loam", + "top": 81 + }, + { + "bottom": 122, + "cf_class": null, + "cielab_a": -0.323212565777775, + "cielab_b": 8.63186117197781, + "cielab_l": 61.5610637380764, + "hzname": "Bg2", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "5Y", + "matrix_dry_color_value": 6, + "series": "okoboji", + "srgb_b": 0.523488960472257, + "srgb_g": 0.581403924050974, + "srgb_r": 0.605759159220568, + "texture_class": "silty clay loam", + "top": 91 + }, + { + "bottom": 142, + "cf_class": null, + "cielab_a": -0.323212565777775, + "cielab_b": 8.63186117197781, + "cielab_l": 61.5610637380764, + "hzname": "Bg3", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "5Y", + "matrix_dry_color_value": 6, + "series": "okoboji", + "srgb_b": 0.523488960472257, + "srgb_g": 0.581403924050974, + "srgb_r": 0.605759159220568, + "texture_class": "silty clay loam", + "top": 122 + }, + { + "bottom": 178, + "cf_class": null, + "cielab_a": -0.323212565777775, + "cielab_b": 8.63186117197781, + "cielab_l": 61.5610637380764, + "hzname": "BCg", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "5Y", + "matrix_dry_color_value": 6, + "series": "okoboji", + "srgb_b": 0.523488960472257, + "srgb_g": 0.581403924050974, + "srgb_r": 0.605759159220568, + "texture_class": "silty clay loam", + "top": 142 + }, + { + "bottom": 200, + "cf_class": null, + "cielab_a": -1.35690966378949, + "cielab_b": 14.9988146490422, + "cielab_l": 61.5777755255565, + "hzname": "Cg", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "5Y", + "matrix_dry_color_value": 6, + "series": "okoboji", + "srgb_b": 0.479503730070902, + "srgb_g": 0.582422859186915, + "srgb_r": 0.614797600511416, + "texture_class": "sandy loam", + "top": 178 + }, + { + "bottom": 18, + "cf_class": null, + "cielab_a": 2.89064271156414, + "cielab_b": 13.064616880291, + "cielab_l": 61.5701956263403, + "hzname": "Ap", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "storden", + "srgb_b": 0.493496194704249, + "srgb_g": 0.573230189582846, + "srgb_r": 0.638561136802744, + "texture_class": "loam", + "top": 0 + }, + { + "bottom": 86, + "cf_class": null, + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "Bk1", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "storden", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "loam", + "top": 18 + }, + { + "bottom": 140, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "Bk2", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "storden", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "loam", + "top": 86 + }, + { + "bottom": 203, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "C", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "storden", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "loam", + "top": 140 + }, + { + "bottom": 20, + "cf_class": null, + "cielab_a": 2.22631909703591, + "cielab_b": 6.22623819927245, + "cielab_l": 30.2411403125398, + "hzname": "Ap", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 3, + "series": "webster", + "srgb_b": 0.24183809974853, + "srgb_g": 0.273363635444249, + "srgb_r": 0.30796985092764, + "texture_class": "silty clay loam", + "top": 0 + }, + { + "bottom": 41, + "cf_class": null, + "cielab_a": 2.22631909703591, + "cielab_b": 6.22623819927245, + "cielab_l": 30.2411403125398, + "hzname": "A", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 3, + "series": "webster", + "srgb_b": 0.24183809974853, + "srgb_g": 0.273363635444249, + "srgb_r": 0.30796985092764, + "texture_class": "silty clay loam", + "top": 20 + }, + { + "bottom": 53, + "cf_class": null, + "cielab_a": -0.323212565777775, + "cielab_b": 8.63186117197781, + "cielab_l": 61.5610637380764, + "hzname": "BAg", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "5Y", + "matrix_dry_color_value": 6, + "series": "webster", + "srgb_b": 0.523488960472257, + "srgb_g": 0.581403924050974, + "srgb_r": 0.605759159220568, + "texture_class": "clay loam", + "top": 41 + }, + { + "bottom": 66, + "cf_class": null, + "cielab_a": -1.35690966378949, + "cielab_b": 14.9988146490422, + "cielab_l": 61.5777755255565, + "hzname": "Bg1", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "5Y", + "matrix_dry_color_value": 6, + "series": "webster", + "srgb_b": 0.479503730070902, + "srgb_g": 0.582422859186915, + "srgb_r": 0.614797600511416, + "texture_class": "clay loam", + "top": 53 + }, + { + "bottom": 81, + "cf_class": null, + "cielab_a": -1.55064757628243, + "cielab_b": 15.2552006801532, + "cielab_l": 71.5464027687355, + "hzname": "Bg2", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "5Y", + "matrix_dry_color_value": 7, + "series": "webster", + "srgb_b": 0.578624398378966, + "srgb_g": 0.686817104273399, + "srgb_r": 0.719806658397243, + "texture_class": "clay loam", + "top": 66 + }, + { + "bottom": 102, + "cf_class": null, + "cielab_a": -1.55064757628243, + "cielab_b": 15.2552006801532, + "cielab_l": 71.5464027687355, + "hzname": "BCg", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "5Y", + "matrix_dry_color_value": 7, + "series": "webster", + "srgb_b": 0.578624398378966, + "srgb_g": 0.686817104273399, + "srgb_r": 0.719806658397243, + "texture_class": "loam", + "top": 81 + }, + { + "bottom": 200, + "cf_class": null, + "cielab_a": -1.55064757628243, + "cielab_b": 15.2552006801532, + "cielab_l": 71.5464027687355, + "hzname": "Cg", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "5Y", + "matrix_dry_color_value": 7, + "series": "webster", + "srgb_b": 0.578624398378966, + "srgb_g": 0.686817104273399, + "srgb_r": 0.719806658397243, + "texture_class": "loam", + "top": 102 + } + ], + "OSD_narrative": [ + { + "brief_narrative": "The Canisteo series consists of very deep, poorly and very poorly drained soils that formed in calcareous, loamy till or in a thin mantle of loamy or silty sediments and the underlying calcareous, loamy till. These soils are on rims of depressions, depressions and flats on moraines or till plains. Slope ranges from 0 to 2 percent. Mean air annual temperature is about 9 degrees C. Mean annual precipitation is about 785 millimeters.", + "series": "canisteo" + }, + { + "brief_narrative": "The Clarion series consists of very deep, moderately well drained soils on uplands. These soils formed in glacial till. Slopes range from 1 to 9 percent. Mean annual air temperature is about 8 degrees C (47 degrees F). Mean annual precipitation is about 74 centimeters (29 inches).", + "series": "clarion" + }, + { + "brief_narrative": "The Glencoe series consists of very deep, very poorly drained soils that formed in loamy sediments from till. These soils are in closed depressions on moraines. Slope ranges from 0 to 1 percent. Mean annual air temperature is about 8 degrees C. Mean annual precipitation is about 735 millimeters.", + "series": "glencoe" + }, + { + "brief_narrative": "The Nicollet series consists of very deep, somewhat poorly drained soils that formed in calcareous loamy glacial till on till plains and moraines. Slopes range from 0 to 5 percent. Mean annual air temperature is about 9 degrees C (48 degrees F). Mean annual precipitation is about 660 mm (28 inches).", + "series": "nicollet" + }, + { + "brief_narrative": "The Okoboji series consists of very deep, very poorly drained soils formed in alluvium or lacustrine sediments. These soils are in closed depressions on till plains and moraines. Slope ranges from 0 to 1 percent. Mean annual air temperature is about 8 degrees C. Mean annual precipitation is about 740 millimeters.", + "series": "okoboji" + }, + { + "brief_narrative": "The Storden series consists of very deep, well drained soils that formed in calcareous loamy glacial till on glacial moraines. Slope ranges from 4 to 70 percent. Mean annual precipitation is about 660 mm (26 inches). Mean annual air temperature is about 9 degrees C (48 degrees F).", + "series": "storden" + }, + { + "brief_narrative": "The Webster series consists of very deep, poorly drained, moderately permeable soils formed in glacial till or local alluvium derived from till on uplands. Slope ranges from 0 to 3 percent. Mean annual air temperature is about 48 degrees F, and mean annual precipitation is about 30 inches.", + "series": "webster" + } + ], + "hz": [ + { + "cec7_h": 33.1, + "cec7_l": 24.5, + "cec7_r": 28.1, + "chkey": 81834308, + "claytotal_h": 39, + "claytotal_l": 29, + "claytotal_r": 33, + "cokey": 27398761, + "dbovendry_h": 1.4, + "dbovendry_l": 1.05, + "dbovendry_r": 1.15, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 25, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 4.3, + "lep_l": 2.2, + "lep_r": 3, + "mukey": 797921, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.5, + "sandtotal_h": 33, + "sandtotal_l": 16, + "sandtotal_r": 25, + "silttotal_h": 50, + "silttotal_l": 36, + "silttotal_r": 42, + "total_frag_volume": 4, + "wfifteenbar_h": 25.8, + "wfifteenbar_l": 13.3, + "wfifteenbar_r": 19.8, + "wthirdbar_h": 35.8, + "wthirdbar_l": 24.8, + "wthirdbar_r": 31.8 + }, + { + "cec7_h": 27.6, + "cec7_l": 21.4, + "cec7_r": 25.6, + "chkey": 81834268, + "claytotal_h": 32, + "claytotal_l": 25, + "claytotal_r": 30, + "cokey": 27398757, + "dbovendry_h": 1.4, + "dbovendry_l": 1.1, + "dbovendry_r": 1.2, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 25, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 3.4, + "lep_l": 1.8, + "lep_r": 2.8, + "mukey": 797917, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.2, + "sandtotal_h": 39, + "sandtotal_l": 23, + "sandtotal_r": 31, + "silttotal_h": 45, + "silttotal_l": 33, + "silttotal_r": 39, + "total_frag_volume": 4, + "wfifteenbar_h": 23.2, + "wfifteenbar_l": 12.5, + "wfifteenbar_r": 18.7, + "wthirdbar_h": 34.5, + "wthirdbar_l": 24.2, + "wthirdbar_r": 31.1 + }, + { + "cec7_h": 24.1, + "cec7_l": 17, + "cec7_r": 21.3, + "chkey": 81833784, + "claytotal_h": 28, + "claytotal_l": 20, + "claytotal_r": 25, + "cokey": 27398739, + "dbovendry_h": 1.47, + "dbovendry_l": 1.33, + "dbovendry_r": 1.43, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 20, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 4, + "lep_l": 2.2, + "lep_r": 3.2, + "mukey": 797923, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.2, + "sandtotal_h": 50, + "sandtotal_l": 32, + "sandtotal_r": 41, + "silttotal_h": 40, + "silttotal_l": 29, + "silttotal_r": 34, + "total_frag_volume": 4, + "wfifteenbar_h": 21.3, + "wfifteenbar_l": 10.4, + "wfifteenbar_r": 16.4, + "wthirdbar_h": 33.4, + "wthirdbar_l": 22.9, + "wthirdbar_r": 29.9 + }, + { + "cec7_h": 23.7, + "cec7_l": 17, + "cec7_r": 21, + "chkey": 81833783, + "claytotal_h": 28, + "claytotal_l": 20, + "claytotal_r": 25, + "cokey": 27398739, + "dbovendry_h": 1.53, + "dbovendry_l": 1.44, + "dbovendry_r": 1.49, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 40, + "hzdept_r": 20, + "hzname": "A", + "lep_h": 4, + "lep_l": 2.2, + "lep_r": 3.2, + "mukey": 797923, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.2, + "sandtotal_h": 50, + "sandtotal_l": 32, + "sandtotal_r": 41, + "silttotal_h": 40, + "silttotal_l": 29, + "silttotal_r": 34, + "total_frag_volume": 4, + "wfifteenbar_h": 19.7, + "wfifteenbar_l": 10.8, + "wfifteenbar_r": 15.8, + "wthirdbar_h": 32.5, + "wthirdbar_l": 23.2, + "wthirdbar_r": 29.5 + }, + { + "cec7_h": 31, + "cec7_l": 23.8, + "cec7_r": 27.7, + "chkey": 81834309, + "claytotal_h": 37, + "claytotal_l": 29, + "claytotal_r": 33, + "cokey": 27398761, + "dbovendry_h": 1.62, + "dbovendry_l": 1.51, + "dbovendry_r": 1.56, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 51, + "hzdept_r": 25, + "hzname": "A", + "lep_h": 5.9, + "lep_l": 3.7, + "lep_r": 4.8, + "mukey": 797921, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 6.9, + "sandtotal_h": 36, + "sandtotal_l": 14, + "sandtotal_r": 25, + "silttotal_h": 50, + "silttotal_l": 35, + "silttotal_r": 42, + "total_frag_volume": 4, + "wfifteenbar_h": 27.5, + "wfifteenbar_l": 15.3, + "wfifteenbar_r": 23.5, + "wthirdbar_h": 36.6, + "wthirdbar_l": 26.2, + "wthirdbar_r": 33.9 + }, + { + "cec7_h": 29.5, + "cec7_l": 20.8, + "cec7_r": 25.2, + "chkey": 81834269, + "claytotal_h": 35, + "claytotal_l": 25, + "claytotal_r": 30, + "cokey": 27398757, + "dbovendry_h": 1.48, + "dbovendry_l": 1.37, + "dbovendry_r": 1.42, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 43, + "hzdept_r": 25, + "hzname": "A", + "lep_h": 5.4, + "lep_l": 3, + "lep_r": 4.2, + "mukey": 797917, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.2, + "sandtotal_h": 41, + "sandtotal_l": 20, + "sandtotal_r": 31, + "silttotal_h": 48, + "silttotal_l": 30, + "silttotal_r": 39, + "total_frag_volume": 4, + "wfifteenbar_h": 24.5, + "wfifteenbar_l": 12.5, + "wfifteenbar_r": 19.1, + "wthirdbar_h": 35.2, + "wthirdbar_l": 24.4, + "wthirdbar_r": 31.4 + }, + { + "cec7_h": 23.1, + "cec7_l": 14.7, + "cec7_r": 18.6, + "chkey": 81833785, + "claytotal_h": 28, + "claytotal_l": 18, + "claytotal_r": 23, + "cokey": 27398739, + "dbovendry_h": 1.72, + "dbovendry_l": 1.47, + "dbovendry_r": 1.52, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 86, + "hzdept_r": 40, + "hzname": "Bw", + "lep_h": 3.9, + "lep_l": 1.7, + "lep_r": 2.7, + "mukey": 797923, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 6.6, + "sandtotal_h": 54, + "sandtotal_l": 34, + "sandtotal_r": 43, + "silttotal_h": 40, + "silttotal_l": 26, + "silttotal_r": 34, + "total_frag_volume": 4, + "wfifteenbar_h": 18, + "wfifteenbar_l": 8.8, + "wfifteenbar_r": 13.3, + "wthirdbar_h": 31.5, + "wthirdbar_l": 21.6, + "wthirdbar_r": 27.8 + }, + { + "cec7_h": 27.5, + "cec7_l": 17.1, + "cec7_r": 24.1, + "chkey": 81834267, + "claytotal_h": 34, + "claytotal_l": 22, + "claytotal_r": 30, + "cokey": 27398757, + "dbovendry_h": 1.78, + "dbovendry_l": 1.48, + "dbovendry_r": 1.53, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 91, + "hzdept_r": 43, + "hzname": "Bg", + "lep_h": 5.1, + "lep_l": 2.4, + "lep_r": 4, + "mukey": 797917, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 6.6, + "sandtotal_h": 45, + "sandtotal_l": 30, + "sandtotal_r": 37, + "silttotal_h": 38, + "silttotal_l": 30, + "silttotal_r": 33, + "total_frag_volume": 4, + "wfifteenbar_h": 21.4, + "wfifteenbar_l": 10.4, + "wfifteenbar_r": 17.7, + "wthirdbar_h": 33.5, + "wthirdbar_l": 22.9, + "wthirdbar_r": 30.7 + }, + { + "cec7_h": 27.9, + "cec7_l": 17.6, + "cec7_r": 22.8, + "chkey": 81834307, + "claytotal_h": 34, + "claytotal_l": 22, + "claytotal_r": 28, + "cokey": 27398761, + "dbovendry_h": 1.63, + "dbovendry_l": 1.52, + "dbovendry_r": 1.57, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 107, + "hzdept_r": 51, + "hzname": "Bg", + "lep_h": 5.1, + "lep_l": 2.4, + "lep_r": 3.7, + "mukey": 797921, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 7.3, + "sandtotal_h": 44, + "sandtotal_l": 25, + "sandtotal_r": 35, + "silttotal_h": 45, + "silttotal_l": 30, + "silttotal_r": 37, + "total_frag_volume": 4, + "wfifteenbar_h": 23.3, + "wfifteenbar_l": 11.1, + "wfifteenbar_r": 17.6, + "wthirdbar_h": 34.5, + "wthirdbar_l": 23.4, + "wthirdbar_r": 30.7 + }, + { + "cec7_h": 21.9, + "cec7_l": 10.9, + "cec7_r": 15, + "chkey": 81833782, + "claytotal_h": 33, + "claytotal_l": 16, + "claytotal_r": 21, + "cokey": 27398739, + "dbovendry_h": 1.81, + "dbovendry_l": 1.6, + "dbovendry_r": 1.7, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 86, + "hzname": "C", + "lep_h": 4.1, + "lep_l": 1.1, + "lep_r": 2, + "mukey": 797923, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8, + "sandtotal_h": 55, + "sandtotal_l": 25, + "sandtotal_r": 44, + "silttotal_h": 50, + "silttotal_l": 29, + "silttotal_r": 35, + "total_frag_volume": 4, + "wfifteenbar_h": 21.5, + "wfifteenbar_l": 8.3, + "wfifteenbar_r": 13.2, + "wthirdbar_h": 33.5, + "wthirdbar_l": 21.1, + "wthirdbar_r": 27.6 + }, + { + "cec7_h": 21.9, + "cec7_l": 10.9, + "cec7_r": 15, + "chkey": 81834266, + "claytotal_h": 33, + "claytotal_l": 16, + "claytotal_r": 21, + "cokey": 27398757, + "dbovendry_h": 1.81, + "dbovendry_l": 1.6, + "dbovendry_r": 1.7, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 91, + "hzname": "C", + "lep_h": 4.1, + "lep_l": 1.1, + "lep_r": 2, + "mukey": 797917, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8, + "sandtotal_h": 55, + "sandtotal_l": 25, + "sandtotal_r": 44, + "silttotal_h": 50, + "silttotal_l": 29, + "silttotal_r": 35, + "total_frag_volume": 4, + "wfifteenbar_h": 21.5, + "wfifteenbar_l": 8.3, + "wfifteenbar_r": 13.2, + "wthirdbar_h": 33.5, + "wthirdbar_l": 21.1, + "wthirdbar_r": 27.6 + }, + { + "cec7_h": 21.9, + "cec7_l": 10.9, + "cec7_r": 15, + "chkey": 81834306, + "claytotal_h": 33, + "claytotal_l": 16, + "claytotal_r": 21, + "cokey": 27398761, + "dbovendry_h": 1.81, + "dbovendry_l": 1.6, + "dbovendry_r": 1.7, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 107, + "hzname": "Cg", + "lep_h": 4.1, + "lep_l": 1.1, + "lep_r": 2, + "mukey": 797921, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8, + "sandtotal_h": 55, + "sandtotal_l": 25, + "sandtotal_r": 44, + "silttotal_h": 50, + "silttotal_l": 29, + "silttotal_r": 35, + "total_frag_volume": 4, + "wfifteenbar_h": 21.5, + "wfifteenbar_l": 8.3, + "wfifteenbar_r": 13.2, + "wthirdbar_h": 33.5, + "wthirdbar_l": 21.1, + "wthirdbar_r": 27.6 + }, + { + "cec7_h": 27.6, + "cec7_l": 21.4, + "cec7_r": 25.6, + "chkey": 81833788, + "claytotal_h": 32, + "claytotal_l": 25, + "claytotal_r": 30, + "cokey": 27398740, + "dbovendry_h": 1.4, + "dbovendry_l": 1.1, + "dbovendry_r": 1.2, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 25, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 3.4, + "lep_l": 1.8, + "lep_r": 2.8, + "mukey": 797923, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.2, + "sandtotal_h": 39, + "sandtotal_l": 23, + "sandtotal_r": 31, + "silttotal_h": 45, + "silttotal_l": 33, + "silttotal_r": 39, + "total_frag_volume": 4, + "wfifteenbar_h": 23.2, + "wfifteenbar_l": 12.5, + "wfifteenbar_r": 18.7, + "wthirdbar_h": 34.5, + "wthirdbar_l": 24.2, + "wthirdbar_r": 31.1 + }, + { + "cec7_h": 19.8, + "cec7_l": 12, + "cec7_r": 16, + "chkey": 81833803, + "claytotal_h": 26, + "claytotal_l": 15, + "claytotal_r": 21, + "cokey": 27398742, + "dbovendry_h": 1.43, + "dbovendry_l": 1.29, + "dbovendry_r": 1.39, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 20, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 3.2, + "lep_l": 1.2, + "lep_r": 2.1, + "mukey": 797923, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.7, + "sandtotal_h": 54, + "sandtotal_l": 38, + "sandtotal_r": 46, + "silttotal_h": 39, + "silttotal_l": 28, + "silttotal_r": 33, + "total_frag_volume": 4, + "wfifteenbar_h": 17.4, + "wfifteenbar_l": 7.3, + "wfifteenbar_r": 13.3, + "wthirdbar_h": 31.2, + "wthirdbar_l": 20.2, + "wthirdbar_r": 27.8 + }, + { + "cec7_h": 24.1, + "cec7_l": 17, + "cec7_r": 21.3, + "chkey": 81834283, + "claytotal_h": 28, + "claytotal_l": 20, + "claytotal_r": 25, + "cokey": 27398759, + "dbovendry_h": 1.47, + "dbovendry_l": 1.33, + "dbovendry_r": 1.43, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 20, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 4, + "lep_l": 2.2, + "lep_r": 3.2, + "mukey": 797917, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.2, + "sandtotal_h": 50, + "sandtotal_l": 32, + "sandtotal_r": 41, + "silttotal_h": 40, + "silttotal_l": 29, + "silttotal_r": 34, + "total_frag_volume": 4, + "wfifteenbar_h": 21.3, + "wfifteenbar_l": 10.4, + "wfifteenbar_r": 16.4, + "wthirdbar_h": 33.4, + "wthirdbar_l": 22.9, + "wthirdbar_r": 29.9 + }, + { + "cec7_h": 27.6, + "cec7_l": 21.4, + "cec7_r": 25.6, + "chkey": 81834320, + "claytotal_h": 32, + "claytotal_l": 25, + "claytotal_r": 30, + "cokey": 27398762, + "dbovendry_h": 1.4, + "dbovendry_l": 1.1, + "dbovendry_r": 1.2, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 25, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 3.4, + "lep_l": 1.8, + "lep_r": 2.8, + "mukey": 797921, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.2, + "sandtotal_h": 39, + "sandtotal_l": 23, + "sandtotal_r": 31, + "silttotal_h": 45, + "silttotal_l": 33, + "silttotal_r": 39, + "total_frag_volume": 4, + "wfifteenbar_h": 23.2, + "wfifteenbar_l": 12.5, + "wfifteenbar_r": 18.7, + "wthirdbar_h": 34.5, + "wthirdbar_l": 24.2, + "wthirdbar_r": 31.1 + }, + { + "cec7_h": 33.1, + "cec7_l": 24.5, + "cec7_r": 28.1, + "chkey": 81834272, + "claytotal_h": 39, + "claytotal_l": 29, + "claytotal_r": 33, + "cokey": 27398758, + "dbovendry_h": 1.4, + "dbovendry_l": 1.05, + "dbovendry_r": 1.15, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 25, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 4.3, + "lep_l": 2.2, + "lep_r": 3, + "mukey": 797917, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.5, + "sandtotal_h": 33, + "sandtotal_l": 16, + "sandtotal_r": 25, + "silttotal_h": 50, + "silttotal_l": 36, + "silttotal_r": 42, + "total_frag_volume": 4, + "wfifteenbar_h": 25.8, + "wfifteenbar_l": 13.3, + "wfifteenbar_r": 19.8, + "wthirdbar_h": 35.8, + "wthirdbar_l": 24.8, + "wthirdbar_r": 31.8 + }, + { + "cec7_h": 33.4, + "cec7_l": 24.8, + "cec7_r": 29.5, + "chkey": 81834294, + "claytotal_h": 41, + "claytotal_l": 30, + "claytotal_r": 36, + "cokey": 27398760, + "dbovendry_h": 1.35, + "dbovendry_l": 1.05, + "dbovendry_r": 1.1, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 20, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 6.9, + "lep_l": 2.6, + "lep_r": 4.9, + "mukey": 797917, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 6.8, + "sandtotal_h": 16, + "sandtotal_l": 5, + "sandtotal_r": 11, + "silttotal_h": 60, + "silttotal_l": 45, + "silttotal_r": 53, + "total_frag_volume": 0, + "wfifteenbar_h": 25.1, + "wfifteenbar_l": 15.4, + "wfifteenbar_r": 21, + "wthirdbar_h": 35.7, + "wthirdbar_l": 29.8, + "wthirdbar_r": 33.5 + }, + { + "cec7_h": 33.4, + "cec7_l": 24.8, + "cec7_r": 29.5, + "chkey": 81834583, + "claytotal_h": 41, + "claytotal_l": 30, + "claytotal_r": 36, + "cokey": 27398764, + "dbovendry_h": 1.35, + "dbovendry_l": 1.05, + "dbovendry_r": 1.1, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 20, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 6.9, + "lep_l": 2.6, + "lep_r": 4.9, + "mukey": 797921, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 6.8, + "sandtotal_h": 16, + "sandtotal_l": 5, + "sandtotal_r": 11, + "silttotal_h": 60, + "silttotal_l": 45, + "silttotal_r": 53, + "total_frag_volume": 0, + "wfifteenbar_h": 25.1, + "wfifteenbar_l": 15.4, + "wfifteenbar_r": 21, + "wthirdbar_h": 35.7, + "wthirdbar_l": 29.8, + "wthirdbar_r": 33.5 + }, + { + "cec7_h": 33.1, + "cec7_l": 24.5, + "cec7_r": 28.1, + "chkey": 81833800, + "claytotal_h": 39, + "claytotal_l": 29, + "claytotal_r": 33, + "cokey": 27398741, + "dbovendry_h": 1.4, + "dbovendry_l": 1.05, + "dbovendry_r": 1.15, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 25, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 4.3, + "lep_l": 2.2, + "lep_r": 3, + "mukey": 797923, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.5, + "sandtotal_h": 33, + "sandtotal_l": 16, + "sandtotal_r": 25, + "silttotal_h": 50, + "silttotal_l": 36, + "silttotal_r": 42, + "total_frag_volume": 4, + "wfifteenbar_h": 25.8, + "wfifteenbar_l": 13.3, + "wfifteenbar_r": 19.8, + "wthirdbar_h": 35.8, + "wthirdbar_l": 24.8, + "wthirdbar_r": 31.8 + }, + { + "cec7_h": 32.9, + "cec7_l": 24, + "cec7_r": 29.2, + "chkey": 81834586, + "claytotal_h": 41, + "claytotal_l": 30, + "claytotal_r": 36, + "cokey": 27398764, + "dbovendry_h": 1.63, + "dbovendry_l": 1.48, + "dbovendry_r": 1.53, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 84, + "hzdept_r": 20, + "hzname": "A", + "lep_h": 7.8, + "lep_l": 3.1, + "lep_r": 5.5, + "mukey": 797921, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7, + "sandtotal_h": 19, + "sandtotal_l": 5, + "sandtotal_r": 12, + "silttotal_h": 60, + "silttotal_l": 45, + "silttotal_r": 52, + "total_frag_volume": 0, + "wfifteenbar_h": 30, + "wfifteenbar_l": 17.7, + "wfifteenbar_r": 25.4, + "wthirdbar_h": 38, + "wthirdbar_l": 31.3, + "wthirdbar_r": 35.8 + }, + { + "cec7_h": 23.7, + "cec7_l": 17, + "cec7_r": 21, + "chkey": 81834284, + "claytotal_h": 28, + "claytotal_l": 20, + "claytotal_r": 25, + "cokey": 27398759, + "dbovendry_h": 1.53, + "dbovendry_l": 1.44, + "dbovendry_r": 1.49, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 40, + "hzdept_r": 20, + "hzname": "A", + "lep_h": 4, + "lep_l": 2.2, + "lep_r": 3.2, + "mukey": 797917, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.2, + "sandtotal_h": 50, + "sandtotal_l": 32, + "sandtotal_r": 41, + "silttotal_h": 40, + "silttotal_l": 29, + "silttotal_r": 34, + "total_frag_volume": 4, + "wfifteenbar_h": 19.7, + "wfifteenbar_l": 10.8, + "wfifteenbar_r": 15.8, + "wthirdbar_h": 32.5, + "wthirdbar_l": 23.2, + "wthirdbar_r": 29.5 + }, + { + "cec7_h": 32.9, + "cec7_l": 24, + "cec7_r": 29.2, + "chkey": 81834297, + "claytotal_h": 41, + "claytotal_l": 30, + "claytotal_r": 36, + "cokey": 27398760, + "dbovendry_h": 1.63, + "dbovendry_l": 1.48, + "dbovendry_r": 1.53, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 84, + "hzdept_r": 20, + "hzname": "A", + "lep_h": 7.8, + "lep_l": 3.1, + "lep_r": 5.5, + "mukey": 797917, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7, + "sandtotal_h": 19, + "sandtotal_l": 5, + "sandtotal_r": 12, + "silttotal_h": 60, + "silttotal_l": 45, + "silttotal_r": 52, + "total_frag_volume": 0, + "wfifteenbar_h": 30, + "wfifteenbar_l": 17.7, + "wfifteenbar_r": 25.4, + "wthirdbar_h": 38, + "wthirdbar_l": 31.3, + "wthirdbar_r": 35.8 + }, + { + "cec7_h": 17.6, + "cec7_l": 10.9, + "cec7_r": 15.4, + "chkey": 81833804, + "claytotal_h": 24, + "claytotal_l": 16, + "claytotal_r": 21, + "cokey": 27398742, + "dbovendry_h": 1.68, + "dbovendry_l": 1.5, + "dbovendry_r": 1.65, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 140, + "hzdept_r": 20, + "hzname": "Bk", + "lep_h": 2.7, + "lep_l": 1.2, + "lep_r": 2.1, + "mukey": 797923, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.8, + "sandtotal_h": 50, + "sandtotal_l": 35, + "sandtotal_r": 42, + "silttotal_h": 48, + "silttotal_l": 28, + "silttotal_r": 37, + "total_frag_volume": 4, + "wfifteenbar_h": 16.8, + "wfifteenbar_l": 8.1, + "wfifteenbar_r": 13.2, + "wthirdbar_h": 30.7, + "wthirdbar_l": 20.9, + "wthirdbar_r": 27.6 + }, + { + "cec7_h": 31, + "cec7_l": 23.8, + "cec7_r": 27.7, + "chkey": 81833801, + "claytotal_h": 37, + "claytotal_l": 29, + "claytotal_r": 33, + "cokey": 27398741, + "dbovendry_h": 1.62, + "dbovendry_l": 1.51, + "dbovendry_r": 1.56, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 51, + "hzdept_r": 25, + "hzname": "A", + "lep_h": 5.9, + "lep_l": 3.7, + "lep_r": 4.8, + "mukey": 797923, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 6.9, + "sandtotal_h": 36, + "sandtotal_l": 14, + "sandtotal_r": 25, + "silttotal_h": 50, + "silttotal_l": 35, + "silttotal_r": 42, + "total_frag_volume": 4, + "wfifteenbar_h": 27.5, + "wfifteenbar_l": 15.3, + "wfifteenbar_r": 23.5, + "wthirdbar_h": 36.6, + "wthirdbar_l": 26.2, + "wthirdbar_r": 33.9 + }, + { + "cec7_h": 31, + "cec7_l": 23.8, + "cec7_r": 27.7, + "chkey": 81834273, + "claytotal_h": 37, + "claytotal_l": 29, + "claytotal_r": 33, + "cokey": 27398758, + "dbovendry_h": 1.62, + "dbovendry_l": 1.51, + "dbovendry_r": 1.56, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 51, + "hzdept_r": 25, + "hzname": "A", + "lep_h": 5.9, + "lep_l": 3.7, + "lep_r": 4.8, + "mukey": 797917, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 6.9, + "sandtotal_h": 36, + "sandtotal_l": 14, + "sandtotal_r": 25, + "silttotal_h": 50, + "silttotal_l": 35, + "silttotal_r": 42, + "total_frag_volume": 4, + "wfifteenbar_h": 27.5, + "wfifteenbar_l": 15.3, + "wfifteenbar_r": 23.5, + "wthirdbar_h": 36.6, + "wthirdbar_l": 26.2, + "wthirdbar_r": 33.9 + }, + { + "cec7_h": 29.5, + "cec7_l": 20.8, + "cec7_r": 25.2, + "chkey": 81834321, + "claytotal_h": 35, + "claytotal_l": 25, + "claytotal_r": 30, + "cokey": 27398762, + "dbovendry_h": 1.48, + "dbovendry_l": 1.37, + "dbovendry_r": 1.42, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 43, + "hzdept_r": 25, + "hzname": "A", + "lep_h": 5.4, + "lep_l": 3, + "lep_r": 4.2, + "mukey": 797921, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.2, + "sandtotal_h": 41, + "sandtotal_l": 20, + "sandtotal_r": 31, + "silttotal_h": 48, + "silttotal_l": 30, + "silttotal_r": 39, + "total_frag_volume": 4, + "wfifteenbar_h": 24.5, + "wfifteenbar_l": 12.5, + "wfifteenbar_r": 19.1, + "wthirdbar_h": 35.2, + "wthirdbar_l": 24.4, + "wthirdbar_r": 31.4 + }, + { + "cec7_h": 29.5, + "cec7_l": 20.8, + "cec7_r": 25.2, + "chkey": 81833789, + "claytotal_h": 35, + "claytotal_l": 25, + "claytotal_r": 30, + "cokey": 27398740, + "dbovendry_h": 1.48, + "dbovendry_l": 1.37, + "dbovendry_r": 1.42, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 43, + "hzdept_r": 25, + "hzname": "A", + "lep_h": 5.4, + "lep_l": 3, + "lep_r": 4.2, + "mukey": 797923, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.2, + "sandtotal_h": 41, + "sandtotal_l": 20, + "sandtotal_r": 31, + "silttotal_h": 48, + "silttotal_l": 30, + "silttotal_r": 39, + "total_frag_volume": 4, + "wfifteenbar_h": 24.5, + "wfifteenbar_l": 12.5, + "wfifteenbar_r": 19.1, + "wthirdbar_h": 35.2, + "wthirdbar_l": 24.4, + "wthirdbar_r": 31.4 + }, + { + "cec7_h": 23.1, + "cec7_l": 14.7, + "cec7_r": 18.6, + "chkey": 81834285, + "claytotal_h": 28, + "claytotal_l": 18, + "claytotal_r": 23, + "cokey": 27398759, + "dbovendry_h": 1.72, + "dbovendry_l": 1.47, + "dbovendry_r": 1.52, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 86, + "hzdept_r": 40, + "hzname": "Bw", + "lep_h": 3.9, + "lep_l": 1.7, + "lep_r": 2.7, + "mukey": 797917, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 6.6, + "sandtotal_h": 54, + "sandtotal_l": 34, + "sandtotal_r": 43, + "silttotal_h": 40, + "silttotal_l": 26, + "silttotal_r": 34, + "total_frag_volume": 4, + "wfifteenbar_h": 18, + "wfifteenbar_l": 8.8, + "wfifteenbar_r": 13.3, + "wthirdbar_h": 31.5, + "wthirdbar_l": 21.6, + "wthirdbar_r": 27.8 + }, + { + "cec7_h": 27.5, + "cec7_l": 17.1, + "cec7_r": 24.1, + "chkey": 81834319, + "claytotal_h": 34, + "claytotal_l": 22, + "claytotal_r": 30, + "cokey": 27398762, + "dbovendry_h": 1.78, + "dbovendry_l": 1.48, + "dbovendry_r": 1.53, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 91, + "hzdept_r": 43, + "hzname": "Bg", + "lep_h": 5.1, + "lep_l": 2.4, + "lep_r": 4, + "mukey": 797921, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 6.6, + "sandtotal_h": 45, + "sandtotal_l": 30, + "sandtotal_r": 37, + "silttotal_h": 38, + "silttotal_l": 30, + "silttotal_r": 33, + "total_frag_volume": 4, + "wfifteenbar_h": 21.4, + "wfifteenbar_l": 10.4, + "wfifteenbar_r": 17.7, + "wthirdbar_h": 33.5, + "wthirdbar_l": 22.9, + "wthirdbar_r": 30.7 + }, + { + "cec7_h": 27.5, + "cec7_l": 17.1, + "cec7_r": 24.1, + "chkey": 81833787, + "claytotal_h": 34, + "claytotal_l": 22, + "claytotal_r": 30, + "cokey": 27398740, + "dbovendry_h": 1.78, + "dbovendry_l": 1.48, + "dbovendry_r": 1.53, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 91, + "hzdept_r": 43, + "hzname": "Bg", + "lep_h": 5.1, + "lep_l": 2.4, + "lep_r": 4, + "mukey": 797923, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 6.6, + "sandtotal_h": 45, + "sandtotal_l": 30, + "sandtotal_r": 37, + "silttotal_h": 38, + "silttotal_l": 30, + "silttotal_r": 33, + "total_frag_volume": 4, + "wfifteenbar_h": 21.4, + "wfifteenbar_l": 10.4, + "wfifteenbar_r": 17.7, + "wthirdbar_h": 33.5, + "wthirdbar_l": 22.9, + "wthirdbar_r": 30.7 + }, + { + "cec7_h": 27.9, + "cec7_l": 17.6, + "cec7_r": 22.8, + "chkey": 81834271, + "claytotal_h": 34, + "claytotal_l": 22, + "claytotal_r": 28, + "cokey": 27398758, + "dbovendry_h": 1.63, + "dbovendry_l": 1.52, + "dbovendry_r": 1.57, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 107, + "hzdept_r": 51, + "hzname": "Bg", + "lep_h": 5.1, + "lep_l": 2.4, + "lep_r": 3.7, + "mukey": 797917, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 7.3, + "sandtotal_h": 44, + "sandtotal_l": 25, + "sandtotal_r": 35, + "silttotal_h": 45, + "silttotal_l": 30, + "silttotal_r": 37, + "total_frag_volume": 4, + "wfifteenbar_h": 23.3, + "wfifteenbar_l": 11.1, + "wfifteenbar_r": 17.6, + "wthirdbar_h": 34.5, + "wthirdbar_l": 23.4, + "wthirdbar_r": 30.7 + }, + { + "cec7_h": 27.9, + "cec7_l": 17.6, + "cec7_r": 22.8, + "chkey": 81833799, + "claytotal_h": 34, + "claytotal_l": 22, + "claytotal_r": 28, + "cokey": 27398741, + "dbovendry_h": 1.63, + "dbovendry_l": 1.52, + "dbovendry_r": 1.57, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 107, + "hzdept_r": 51, + "hzname": "Bg", + "lep_h": 5.1, + "lep_l": 2.4, + "lep_r": 3.7, + "mukey": 797923, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 7.3, + "sandtotal_h": 44, + "sandtotal_l": 25, + "sandtotal_r": 35, + "silttotal_h": 45, + "silttotal_l": 30, + "silttotal_r": 37, + "total_frag_volume": 4, + "wfifteenbar_h": 23.3, + "wfifteenbar_l": 11.1, + "wfifteenbar_r": 17.6, + "wthirdbar_h": 34.5, + "wthirdbar_l": 23.4, + "wthirdbar_r": 30.7 + }, + { + "cec7_h": 31, + "cec7_l": 23, + "cec7_r": 27.9, + "chkey": 81834585, + "claytotal_h": 41, + "claytotal_l": 30, + "claytotal_r": 36, + "cokey": 27398764, + "dbovendry_h": 1.74, + "dbovendry_l": 1.63, + "dbovendry_r": 1.68, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 97, + "hzdept_r": 84, + "hzname": "Bg", + "lep_h": 7.6, + "lep_l": 3.8, + "lep_r": 6.3, + "mukey": 797921, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.1, + "sandtotal_h": 25, + "sandtotal_l": 5, + "sandtotal_r": 15, + "silttotal_h": 60, + "silttotal_l": 45, + "silttotal_r": 49, + "total_frag_volume": 0, + "wfifteenbar_h": 25.9, + "wfifteenbar_l": 17.2, + "wfifteenbar_r": 22, + "wthirdbar_h": 36.1, + "wthirdbar_l": 31, + "wthirdbar_r": 34 + }, + { + "cec7_h": 31, + "cec7_l": 23, + "cec7_r": 27.9, + "chkey": 81834296, + "claytotal_h": 41, + "claytotal_l": 30, + "claytotal_r": 36, + "cokey": 27398760, + "dbovendry_h": 1.74, + "dbovendry_l": 1.63, + "dbovendry_r": 1.68, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 97, + "hzdept_r": 84, + "hzname": "Bg", + "lep_h": 7.6, + "lep_l": 3.8, + "lep_r": 6.3, + "mukey": 797917, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.1, + "sandtotal_h": 25, + "sandtotal_l": 5, + "sandtotal_r": 15, + "silttotal_h": 60, + "silttotal_l": 45, + "silttotal_r": 49, + "total_frag_volume": 0, + "wfifteenbar_h": 25.9, + "wfifteenbar_l": 17.2, + "wfifteenbar_r": 22, + "wthirdbar_h": 36.1, + "wthirdbar_l": 31, + "wthirdbar_r": 34 + }, + { + "cec7_h": 21.9, + "cec7_l": 10.9, + "cec7_r": 15, + "chkey": 81834282, + "claytotal_h": 33, + "claytotal_l": 16, + "claytotal_r": 21, + "cokey": 27398759, + "dbovendry_h": 1.81, + "dbovendry_l": 1.6, + "dbovendry_r": 1.7, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 86, + "hzname": "C", + "lep_h": 4.1, + "lep_l": 1.1, + "lep_r": 2, + "mukey": 797917, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8, + "sandtotal_h": 55, + "sandtotal_l": 25, + "sandtotal_r": 44, + "silttotal_h": 50, + "silttotal_l": 29, + "silttotal_r": 35, + "total_frag_volume": 4, + "wfifteenbar_h": 21.5, + "wfifteenbar_l": 8.3, + "wfifteenbar_r": 13.2, + "wthirdbar_h": 33.5, + "wthirdbar_l": 21.1, + "wthirdbar_r": 27.6 + }, + { + "cec7_h": 21.9, + "cec7_l": 10.9, + "cec7_r": 15, + "chkey": 81834318, + "claytotal_h": 33, + "claytotal_l": 16, + "claytotal_r": 21, + "cokey": 27398762, + "dbovendry_h": 1.81, + "dbovendry_l": 1.6, + "dbovendry_r": 1.7, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 91, + "hzname": "C", + "lep_h": 4.1, + "lep_l": 1.1, + "lep_r": 2, + "mukey": 797921, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8, + "sandtotal_h": 55, + "sandtotal_l": 25, + "sandtotal_r": 44, + "silttotal_h": 50, + "silttotal_l": 29, + "silttotal_r": 35, + "total_frag_volume": 4, + "wfifteenbar_h": 21.5, + "wfifteenbar_l": 8.3, + "wfifteenbar_r": 13.2, + "wthirdbar_h": 33.5, + "wthirdbar_l": 21.1, + "wthirdbar_r": 27.6 + }, + { + "cec7_h": 21.9, + "cec7_l": 10.9, + "cec7_r": 15, + "chkey": 81833786, + "claytotal_h": 33, + "claytotal_l": 16, + "claytotal_r": 21, + "cokey": 27398740, + "dbovendry_h": 1.81, + "dbovendry_l": 1.6, + "dbovendry_r": 1.7, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 91, + "hzname": "C", + "lep_h": 4.1, + "lep_l": 1.1, + "lep_r": 2, + "mukey": 797923, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8, + "sandtotal_h": 55, + "sandtotal_l": 25, + "sandtotal_r": 44, + "silttotal_h": 50, + "silttotal_l": 29, + "silttotal_r": 35, + "total_frag_volume": 4, + "wfifteenbar_h": 21.5, + "wfifteenbar_l": 8.3, + "wfifteenbar_r": 13.2, + "wthirdbar_h": 33.5, + "wthirdbar_l": 21.1, + "wthirdbar_r": 27.6 + }, + { + "cec7_h": 24.3, + "cec7_l": 14.5, + "cec7_r": 22.4, + "chkey": 81834295, + "claytotal_h": 37, + "claytotal_l": 20, + "claytotal_r": 31, + "cokey": 27398760, + "dbovendry_h": 1.91, + "dbovendry_l": 1.69, + "dbovendry_r": 1.79, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 97, + "hzname": "Cg", + "lep_h": 5.8, + "lep_l": 1.4, + "lep_r": 3.7, + "mukey": 797917, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.4, + "sandtotal_h": 35, + "sandtotal_l": 5, + "sandtotal_r": 16, + "silttotal_h": 66, + "silttotal_l": 39, + "silttotal_r": 53, + "total_frag_volume": 4, + "wfifteenbar_h": 24.1, + "wfifteenbar_l": 10.4, + "wfifteenbar_r": 19.3, + "wthirdbar_h": 34.9, + "wthirdbar_l": 22.8, + "wthirdbar_r": 31.6 + }, + { + "cec7_h": 24.3, + "cec7_l": 14.5, + "cec7_r": 22.4, + "chkey": 81834584, + "claytotal_h": 37, + "claytotal_l": 20, + "claytotal_r": 31, + "cokey": 27398764, + "dbovendry_h": 1.91, + "dbovendry_l": 1.69, + "dbovendry_r": 1.79, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 97, + "hzname": "Cg", + "lep_h": 5.8, + "lep_l": 1.4, + "lep_r": 3.7, + "mukey": 797921, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.4, + "sandtotal_h": 35, + "sandtotal_l": 5, + "sandtotal_r": 16, + "silttotal_h": 66, + "silttotal_l": 39, + "silttotal_r": 53, + "total_frag_volume": 4, + "wfifteenbar_h": 24.1, + "wfifteenbar_l": 10.4, + "wfifteenbar_r": 19.3, + "wthirdbar_h": 34.9, + "wthirdbar_l": 22.8, + "wthirdbar_r": 31.6 + }, + { + "cec7_h": 21.9, + "cec7_l": 10.9, + "cec7_r": 15, + "chkey": 81834270, + "claytotal_h": 33, + "claytotal_l": 16, + "claytotal_r": 21, + "cokey": 27398758, + "dbovendry_h": 1.81, + "dbovendry_l": 1.6, + "dbovendry_r": 1.7, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 107, + "hzname": "Cg", + "lep_h": 4.1, + "lep_l": 1.1, + "lep_r": 2, + "mukey": 797917, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8, + "sandtotal_h": 55, + "sandtotal_l": 25, + "sandtotal_r": 44, + "silttotal_h": 50, + "silttotal_l": 29, + "silttotal_r": 35, + "total_frag_volume": 4, + "wfifteenbar_h": 21.5, + "wfifteenbar_l": 8.3, + "wfifteenbar_r": 13.2, + "wthirdbar_h": 33.5, + "wthirdbar_l": 21.1, + "wthirdbar_r": 27.6 + }, + { + "cec7_h": 21.9, + "cec7_l": 10.9, + "cec7_r": 15, + "chkey": 81833798, + "claytotal_h": 33, + "claytotal_l": 16, + "claytotal_r": 21, + "cokey": 27398741, + "dbovendry_h": 1.81, + "dbovendry_l": 1.6, + "dbovendry_r": 1.7, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 107, + "hzname": "Cg", + "lep_h": 4.1, + "lep_l": 1.1, + "lep_r": 2, + "mukey": 797923, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8, + "sandtotal_h": 55, + "sandtotal_l": 25, + "sandtotal_r": 44, + "silttotal_h": 50, + "silttotal_l": 29, + "silttotal_r": 35, + "total_frag_volume": 4, + "wfifteenbar_h": 21.5, + "wfifteenbar_l": 8.3, + "wfifteenbar_r": 13.2, + "wthirdbar_h": 33.5, + "wthirdbar_l": 21.1, + "wthirdbar_r": 27.6 + }, + { + "cec7_h": 21.9, + "cec7_l": 10.9, + "cec7_r": 15, + "chkey": 81833802, + "claytotal_h": 33, + "claytotal_l": 16, + "claytotal_r": 21, + "cokey": 27398742, + "dbovendry_h": 1.81, + "dbovendry_l": 1.6, + "dbovendry_r": 1.7, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 140, + "hzname": "C", + "lep_h": 4.1, + "lep_l": 1.1, + "lep_r": 2, + "mukey": 797923, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 8, + "sandtotal_h": 55, + "sandtotal_l": 25, + "sandtotal_r": 44, + "silttotal_h": 50, + "silttotal_l": 29, + "silttotal_r": 35, + "total_frag_volume": 4, + "wfifteenbar_h": 21.5, + "wfifteenbar_l": 8.3, + "wfifteenbar_r": 13.2, + "wthirdbar_h": 33.5, + "wthirdbar_l": 21.1, + "wthirdbar_r": 27.6 + }, + { + "cec7_h": 32.6, + "cec7_l": 23.9, + "cec7_r": 28.4, + "chkey": 81835123, + "claytotal_h": 38, + "claytotal_l": 28, + "claytotal_r": 33, + "cokey": 27398765, + "dbovendry_h": 1.29, + "dbovendry_l": 0.99, + "dbovendry_r": 1.04, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 23, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 4.1, + "lep_l": 2, + "lep_r": 3, + "mukey": 797921, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.1, + "ph1to1h2o_r": 7, + "sandtotal_h": 32, + "sandtotal_l": 14, + "sandtotal_r": 22, + "silttotal_h": 53, + "silttotal_l": 38, + "silttotal_r": 45, + "total_frag_volume": 1, + "wfifteenbar_h": 24.7, + "wfifteenbar_l": 14, + "wfifteenbar_r": 20.3, + "wthirdbar_h": 35.5, + "wthirdbar_l": 27.4, + "wthirdbar_r": 32.9 + }, + { + "cec7_h": 31.3, + "cec7_l": 22.3, + "cec7_r": 27.9, + "chkey": 81835124, + "claytotal_h": 37, + "claytotal_l": 27, + "claytotal_r": 33, + "cokey": 27398765, + "dbovendry_h": 1.48, + "dbovendry_l": 1.38, + "dbovendry_r": 1.43, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 99, + "hzdept_r": 23, + "hzname": "A", + "lep_h": 4.4, + "lep_l": 2.2, + "lep_r": 3.3, + "mukey": 797921, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7, + "sandtotal_h": 37, + "sandtotal_l": 15, + "sandtotal_r": 26, + "silttotal_h": 50, + "silttotal_l": 32, + "silttotal_r": 41, + "total_frag_volume": 1, + "wfifteenbar_h": 29, + "wfifteenbar_l": 15.7, + "wfifteenbar_r": 24.5, + "wthirdbar_h": 37.5, + "wthirdbar_l": 28.7, + "wthirdbar_r": 35.1 + }, + { + "cec7_h": 29.2, + "cec7_l": 21.2, + "cec7_r": 25, + "chkey": 81835122, + "claytotal_h": 36, + "claytotal_l": 27, + "claytotal_r": 31, + "cokey": 27398765, + "dbovendry_h": 1.65, + "dbovendry_l": 1.54, + "dbovendry_r": 1.59, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 127, + "hzdept_r": 99, + "hzname": "Bg", + "lep_h": 5.5, + "lep_l": 3.2, + "lep_r": 4.2, + "mukey": 797921, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.3, + "sandtotal_h": 35, + "sandtotal_l": 12, + "sandtotal_r": 24, + "silttotal_h": 53, + "silttotal_l": 38, + "silttotal_r": 45, + "total_frag_volume": 4, + "wfifteenbar_h": 23.9, + "wfifteenbar_l": 13.5, + "wfifteenbar_r": 19.3, + "wthirdbar_h": 34.8, + "wthirdbar_l": 25.1, + "wthirdbar_r": 31.7 + }, + { + "cec7_h": 22.6, + "cec7_l": 15.4, + "cec7_r": 19.9, + "chkey": 81835121, + "claytotal_h": 34, + "claytotal_l": 22, + "claytotal_r": 28, + "cokey": 27398765, + "dbovendry_h": 1.83, + "dbovendry_l": 1.66, + "dbovendry_r": 1.76, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 127, + "hzname": "Cg", + "lep_h": 4.4, + "lep_l": 1.8, + "lep_r": 3.1, + "mukey": 797921, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 8, + "sandtotal_h": 44, + "sandtotal_l": 25, + "sandtotal_r": 35, + "silttotal_h": 45, + "silttotal_l": 30, + "silttotal_r": 37, + "total_frag_volume": 4, + "wfifteenbar_h": 23.2, + "wfifteenbar_l": 12, + "wfifteenbar_r": 18.3, + "wthirdbar_h": 34.4, + "wthirdbar_l": 24, + "wthirdbar_r": 31 + }, + { + "cec7_h": 26.2, + "cec7_l": 23, + "cec7_r": 25, + "chkey": 81834334, + "claytotal_h": 35, + "claytotal_l": 28, + "claytotal_r": 32, + "cokey": 27398763, + "dbovendry_h": 1.39, + "dbovendry_l": 1.04, + "dbovendry_r": 1.14, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 23, + "hzdept_r": 0, + "hzname": "Ap", + "lep_h": 3.2, + "lep_l": 1.9, + "lep_r": 2.6, + "mukey": 797921, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.5, + "sandtotal_h": 36, + "sandtotal_l": 18, + "sandtotal_r": 30, + "silttotal_h": 49, + "silttotal_l": 33, + "silttotal_r": 38, + "total_frag_volume": 4, + "wfifteenbar_h": 24.2, + "wfifteenbar_l": 12.9, + "wfifteenbar_r": 19.4, + "wthirdbar_h": 35, + "wthirdbar_l": 24.5, + "wthirdbar_r": 31.5 + }, + { + "cec7_h": 25.6, + "cec7_l": 20.1, + "cec7_r": 25.5, + "chkey": 81834333, + "claytotal_h": 35, + "claytotal_l": 25, + "claytotal_r": 32, + "cokey": 27398763, + "dbovendry_h": 1.56, + "dbovendry_l": 1.49, + "dbovendry_r": 1.54, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 41, + "hzdept_r": 23, + "hzname": "A", + "lep_h": 4.8, + "lep_l": 2.5, + "lep_r": 4.2, + "mukey": 797921, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.7, + "sandtotal_h": 42, + "sandtotal_l": 16, + "sandtotal_r": 32, + "silttotal_h": 52, + "silttotal_l": 33, + "silttotal_r": 36, + "total_frag_volume": 4, + "wfifteenbar_h": 26.5, + "wfifteenbar_l": 13.5, + "wfifteenbar_r": 23, + "wthirdbar_h": 36.1, + "wthirdbar_l": 25.1, + "wthirdbar_r": 33.6 + }, + { + "cec7_h": 25.5, + "cec7_l": 19.6, + "cec7_r": 25, + "chkey": 81834332, + "claytotal_h": 35, + "claytotal_l": 25, + "claytotal_r": 32, + "cokey": 27398763, + "dbovendry_h": 1.56, + "dbovendry_l": 1.48, + "dbovendry_r": 1.53, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 51, + "hzdept_r": 41, + "hzname": "AB", + "lep_h": 4.8, + "lep_l": 2.4, + "lep_r": 4.1, + "mukey": 797921, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.7, + "sandtotal_h": 42, + "sandtotal_l": 16, + "sandtotal_r": 32, + "silttotal_h": 52, + "silttotal_l": 33, + "silttotal_r": 36, + "total_frag_volume": 4, + "wfifteenbar_h": 25.3, + "wfifteenbar_l": 12.5, + "wfifteenbar_r": 20.7, + "wthirdbar_h": 35.6, + "wthirdbar_l": 24.4, + "wthirdbar_r": 32.4 + }, + { + "cec7_h": 21.2, + "cec7_l": 11.7, + "cec7_r": 17.6, + "chkey": 81834335, + "claytotal_h": 35, + "claytotal_l": 17, + "claytotal_r": 27, + "cokey": 27398763, + "dbovendry_h": 1.71, + "dbovendry_l": 1.46, + "dbovendry_r": 1.51, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 91, + "hzdept_r": 51, + "hzname": "Bkg", + "lep_h": 4, + "lep_l": 0.8, + "lep_r": 2.5, + "mukey": 797921, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 8, + "sandtotal_h": 55, + "sandtotal_l": 16, + "sandtotal_r": 39, + "silttotal_h": 55, + "silttotal_l": 27, + "silttotal_r": 34, + "total_frag_volume": 4, + "wfifteenbar_h": 23.9, + "wfifteenbar_l": 8.7, + "wfifteenbar_r": 17.1, + "wthirdbar_h": 34.8, + "wthirdbar_l": 21.5, + "wthirdbar_r": 30.4 + }, + { + "cec7_h": 21.9, + "cec7_l": 10.9, + "cec7_r": 15, + "chkey": 81834331, + "claytotal_h": 33, + "claytotal_l": 16, + "claytotal_r": 21, + "cokey": 27398763, + "dbovendry_h": 1.81, + "dbovendry_l": 1.6, + "dbovendry_r": 1.7, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 91, + "hzname": "Cg", + "lep_h": 4.1, + "lep_l": 1.1, + "lep_r": 2, + "mukey": 797921, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8, + "sandtotal_h": 55, + "sandtotal_l": 25, + "sandtotal_r": 44, + "silttotal_h": 50, + "silttotal_l": 29, + "silttotal_r": 35, + "total_frag_volume": 4, + "wfifteenbar_h": 21.5, + "wfifteenbar_l": 8.3, + "wfifteenbar_r": 13.2, + "wthirdbar_h": 33.5, + "wthirdbar_l": 21.1, + "wthirdbar_r": 27.6 + } + ], + "spn": [ + { + "closest_pt_x": -94.31005777, + "closest_pt_y": 42.63413723, + "cokey": 27398757, + "compkind": "Series", + "compname": "nicollet", + "comppct_r": 85, + "dist_meters": 0, + "elev_r": 350, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 797917, + "nirrcapcl": 1, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": 2, + "taxorder": "Mollisols", + "taxsubgrp": "Aquic Hapludolls", + "which": "a" + }, + { + "closest_pt_x": -94.31005777, + "closest_pt_y": 42.63413723, + "cokey": 27398758, + "compkind": "Series", + "compname": "webster", + "comppct_r": 5, + "dist_meters": 0, + "elev_r": 350, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 797917, + "nirrcapcl": 2, + "nirrcapscl": "w", + "nirrcapunit": null, + "slope_r": 1, + "taxorder": "Mollisols", + "taxsubgrp": "Typic Endoaquolls", + "which": "a" + }, + { + "closest_pt_x": -94.31005777, + "closest_pt_y": 42.63413723, + "cokey": 27398759, + "compkind": "Taxadjunct", + "compname": "clarion", + "comppct_r": 5, + "dist_meters": 0, + "elev_r": 350, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 797917, + "nirrcapcl": 2, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 3, + "taxorder": "Mollisols", + "taxsubgrp": "Oxyaquic Hapludolls", + "which": "a" + }, + { + "closest_pt_x": -94.31005777, + "closest_pt_y": 42.63413723, + "cokey": 27398760, + "compkind": "Series", + "compname": "okoboji", + "comppct_r": 5, + "dist_meters": 0, + "elev_r": 350, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 797917, + "nirrcapcl": 3, + "nirrcapscl": "w", + "nirrcapunit": null, + "slope_r": 0, + "taxorder": "Mollisols", + "taxsubgrp": "Cumulic Vertic Endoaquolls", + "which": "a" + }, + { + "closest_pt_x": -94.30992159312027, + "closest_pt_y": 42.63389407331259, + "cokey": 27398761, + "compkind": "Series", + "compname": "webster", + "comppct_r": 85, + "dist_meters": 28, + "elev_r": 350, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 797921, + "nirrcapcl": 2, + "nirrcapscl": "w", + "nirrcapunit": null, + "slope_r": 1, + "taxorder": "Mollisols", + "taxsubgrp": "Typic Endoaquolls", + "which": "b" + }, + { + "closest_pt_x": -94.30992159312027, + "closest_pt_y": 42.63389407331259, + "cokey": 27398764, + "compkind": "Series", + "compname": "okoboji", + "comppct_r": 5, + "dist_meters": 28, + "elev_r": 350, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 797921, + "nirrcapcl": 3, + "nirrcapscl": "w", + "nirrcapunit": null, + "slope_r": 0, + "taxorder": "Mollisols", + "taxsubgrp": "Cumulic Vertic Endoaquolls", + "which": "b" + }, + { + "closest_pt_x": -94.30992159312027, + "closest_pt_y": 42.63389407331259, + "cokey": 27398762, + "compkind": "Series", + "compname": "nicollet", + "comppct_r": 5, + "dist_meters": 28, + "elev_r": 350, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 797921, + "nirrcapcl": 1, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": 2, + "taxorder": "Mollisols", + "taxsubgrp": "Aquic Hapludolls", + "which": "b" + }, + { + "closest_pt_x": -94.30992159312027, + "closest_pt_y": 42.63389407331259, + "cokey": 27398765, + "compkind": "Series", + "compname": "glencoe", + "comppct_r": 3, + "dist_meters": 28, + "elev_r": 350, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 797921, + "nirrcapcl": 3, + "nirrcapscl": "w", + "nirrcapunit": null, + "slope_r": 0, + "taxorder": "Mollisols", + "taxsubgrp": "Cumulic Endoaquolls", + "which": "b" + }, + { + "closest_pt_x": -94.30992159312027, + "closest_pt_y": 42.63389407331259, + "cokey": 27398763, + "compkind": "Series", + "compname": "canisteo", + "comppct_r": 2, + "dist_meters": 28, + "elev_r": 350, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 797921, + "nirrcapcl": 2, + "nirrcapscl": "w", + "nirrcapunit": null, + "slope_r": 1, + "taxorder": "Mollisols", + "taxsubgrp": "Typic Endoaquolls", + "which": "b" + }, + { + "closest_pt_x": -94.31015667246703, + "closest_pt_y": 42.63497746935772, + "cokey": 27398739, + "compkind": "Taxadjunct", + "compname": "clarion", + "comppct_r": 85, + "dist_meters": 93, + "elev_r": 350, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 797923, + "nirrcapcl": 2, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 3, + "taxorder": "Mollisols", + "taxsubgrp": "Oxyaquic Hapludolls", + "which": "b" + }, + { + "closest_pt_x": -94.31015667246703, + "closest_pt_y": 42.63497746935772, + "cokey": 27398740, + "compkind": "Series", + "compname": "nicollet", + "comppct_r": 5, + "dist_meters": 93, + "elev_r": 350, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 797923, + "nirrcapcl": 1, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": 2, + "taxorder": "Mollisols", + "taxsubgrp": "Aquic Hapludolls", + "which": "b" + }, + { + "closest_pt_x": -94.31015667246703, + "closest_pt_y": 42.63497746935772, + "cokey": 27398741, + "compkind": "Series", + "compname": "webster", + "comppct_r": 5, + "dist_meters": 93, + "elev_r": 350, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 797923, + "nirrcapcl": 2, + "nirrcapscl": "w", + "nirrcapunit": null, + "slope_r": 1, + "taxorder": "Mollisols", + "taxsubgrp": "Typic Endoaquolls", + "which": "b" + }, + { + "closest_pt_x": -94.31015667246703, + "closest_pt_y": 42.63497746935772, + "cokey": 27398742, + "compkind": "Series", + "compname": "storden", + "comppct_r": 5, + "dist_meters": 93, + "elev_r": 350, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": "moderately eroded", + "majcompflag": "No ", + "mukey": 797923, + "nirrcapcl": 3, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 8, + "taxorder": "Inceptisols", + "taxsubgrp": "Typic Eutrudepts", + "which": "b" + } + ] + } +} diff --git a/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[43.06450312,-119.4596489].json b/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[43.06450312,-119.4596489].json new file mode 100644 index 0000000..48bdf3a --- /dev/null +++ b/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[43.06450312,-119.4596489].json @@ -0,0 +1,2686 @@ +{ + "elev": { + "location": { + "spatialReference": { + "latestWkid": 4326, + "wkid": 4326 + }, + "x": -119.4596489, + "y": 43.06450312 + }, + "locationId": 0, + "rasterId": 44561, + "resolution": 1, + "value": "1432.929687500" + }, + "soilweb": { + "ESD": [ + { + "cokey": 27630911, + "ecoclassid": "R023XY212OR", + "ecoclassname": "LOAMY 10-12 PZ", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/023X/R023XY212OR" + }, + { + "cokey": 27630924, + "ecoclassid": "R024XY003OR", + "ecoclassname": "SODIC BOTTOM ", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/024X/R024XY003OR" + }, + { + "cokey": 27630925, + "ecoclassid": "R023XY212OR", + "ecoclassname": "LOAMY 10-12 PZ", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/023X/R023XY212OR" + }, + { + "cokey": 27630931, + "ecoclassid": "R023XY212OR", + "ecoclassname": "LOAMY 10-12 PZ", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/023X/R023XY212OR" + }, + { + "cokey": 27630932, + "ecoclassid": "R023XY212OR", + "ecoclassname": "LOAMY 10-12 PZ", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/023X/R023XY212OR" + }, + { + "cokey": 27631143, + "ecoclassid": "R023XY220OR", + "ecoclassname": "CLAYEY 10-12 PZ", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/023X/R023XY220OR" + }, + { + "cokey": 27631144, + "ecoclassid": "R023XY212OR", + "ecoclassname": "LOAMY 10-12 PZ", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/023X/R023XY212OR" + }, + { + "cokey": 27631350, + "ecoclassid": "R023XY300OR", + "ecoclassname": "SOUTH SLOPES 10-12 PZ", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/023X/R023XY300OR" + }, + { + "cokey": 27631363, + "ecoclassid": "R023XY220OR", + "ecoclassname": "CLAYEY 10-12 PZ", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/023X/R023XY220OR" + } + ], + "OSD_morph": [ + { + "bottom": 5, + "cf_class": "cobbly", + "cielab_a": 2.50542437533247, + "cielab_b": 13.2158439165934, + "cielab_l": 71.5385868490813, + "hzname": "A", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 7, + "series": "actem", + "srgb_b": 0.593723155494692, + "srgb_g": 0.677858469484996, + "srgb_r": 0.74282064303885, + "texture_class": "loam", + "top": 0 + }, + { + "bottom": 18, + "cf_class": null, + "cielab_a": 4.85456052724254, + "cielab_b": 18.8945154624908, + "cielab_l": 51.4032284580631, + "hzname": "Bt", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "actem", + "srgb_b": 0.354980541712737, + "srgb_g": 0.465230900713657, + "srgb_r": 0.556494226652486, + "texture_class": "clay", + "top": 5 + }, + { + "bottom": 38, + "cf_class": null, + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "Btk", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "actem", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "clay loam", + "top": 18 + }, + { + "bottom": 51, + "cf_class": null, + "cielab_a": 3.26960128448811, + "cielab_b": 19.7434065294437, + "cielab_l": 81.3437456089251, + "hzname": "Bkqm", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 8, + "series": "actem", + "srgb_b": 0.648937163870167, + "srgb_g": 0.779512783101728, + "srgb_r": 0.871689449401639, + "texture_class": null, + "top": 38 + }, + { + "bottom": 66, + "cf_class": null, + "cielab_a": null, + "cielab_b": null, + "cielab_l": null, + "hzname": "2R", + "matrix_dry_color_chroma": null, + "matrix_dry_color_hue": null, + "matrix_dry_color_value": null, + "series": "actem", + "srgb_b": null, + "srgb_g": null, + "srgb_r": null, + "texture_class": null, + "top": 51 + }, + { + "bottom": 5, + "cf_class": null, + "cielab_a": 0.680039824635603, + "cielab_b": 14.3263472503311, + "cielab_l": 61.5747851305097, + "hzname": "A", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 6, + "series": "ausmus", + "srgb_b": 0.484462289310216, + "srgb_g": 0.578016804839716, + "srgb_r": 0.626868011624415, + "texture_class": "silt loam", + "top": 0 + }, + { + "bottom": 23, + "cf_class": null, + "cielab_a": 0.680039824635603, + "cielab_b": 14.3263472503311, + "cielab_l": 61.5747851305097, + "hzname": "Btkn", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 6, + "series": "ausmus", + "srgb_b": 0.484462289310216, + "srgb_g": 0.578016804839716, + "srgb_r": 0.626868011624415, + "texture_class": "silty clay loam", + "top": 5 + }, + { + "bottom": 40, + "cf_class": null, + "cielab_a": 0.680039824635603, + "cielab_b": 14.3263472503311, + "cielab_l": 61.5747851305097, + "hzname": "Bkn", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 6, + "series": "ausmus", + "srgb_b": 0.484462289310216, + "srgb_g": 0.578016804839716, + "srgb_r": 0.626868011624415, + "texture_class": "silty clay loam", + "top": 23 + }, + { + "bottom": 72, + "cf_class": null, + "cielab_a": 0.680039824635603, + "cielab_b": 14.3263472503311, + "cielab_l": 61.5747851305097, + "hzname": "Bknz1", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 6, + "series": "ausmus", + "srgb_b": 0.484462289310216, + "srgb_g": 0.578016804839716, + "srgb_r": 0.626868011624415, + "texture_class": "silt loam", + "top": 40 + }, + { + "bottom": 92, + "cf_class": null, + "cielab_a": 1.35288254510624, + "cielab_b": 20.7280825303816, + "cielab_l": 61.5889622491912, + "hzname": "Bknz2", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 6, + "series": "ausmus", + "srgb_b": 0.440190474142481, + "srgb_g": 0.575322240237554, + "srgb_r": 0.645238061865951, + "texture_class": "loam", + "top": 72 + }, + { + "bottom": 174, + "cf_class": null, + "cielab_a": 1.35288254510624, + "cielab_b": 20.7280825303816, + "cielab_l": 61.5889622491912, + "hzname": "Bknz3", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 6, + "series": "ausmus", + "srgb_b": 0.440190474142481, + "srgb_g": 0.575322240237554, + "srgb_r": 0.645238061865951, + "texture_class": "loam", + "top": 92 + }, + { + "bottom": 15, + "cf_class": null, + "cielab_a": 2.89064271156414, + "cielab_b": 13.064616880291, + "cielab_l": 61.5701956263403, + "hzname": "A", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "brace", + "srgb_b": 0.493496194704249, + "srgb_g": 0.573230189582846, + "srgb_r": 0.638561136802744, + "texture_class": "loam", + "top": 0 + }, + { + "bottom": 25, + "cf_class": "gravelly", + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "BA", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "brace", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "clay loam", + "top": 15 + }, + { + "bottom": 48, + "cf_class": "gravelly", + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "Bt", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "brace", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "clay loam", + "top": 25 + }, + { + "bottom": 58, + "cf_class": "cobbly", + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "Btkq", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "brace", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "clay loam", + "top": 48 + }, + { + "bottom": 66, + "cf_class": null, + "cielab_a": 2.07036613546147, + "cielab_b": 13.480465071941, + "cielab_l": 81.3291807011949, + "hzname": "Bkqm", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 8, + "series": "brace", + "srgb_b": 0.694393524433754, + "srgb_g": 0.783723585369036, + "srgb_r": 0.847672409409098, + "texture_class": null, + "top": 58 + }, + { + "bottom": 81, + "cf_class": null, + "cielab_a": null, + "cielab_b": null, + "cielab_l": null, + "hzname": "2R", + "matrix_dry_color_chroma": null, + "matrix_dry_color_hue": null, + "matrix_dry_color_value": null, + "series": "brace", + "srgb_b": null, + "srgb_g": null, + "srgb_r": null, + "texture_class": null, + "top": 66 + }, + { + "bottom": 25, + "cf_class": "very stony", + "cielab_a": 2.89064271156414, + "cielab_b": 13.064616880291, + "cielab_l": 61.5701956263403, + "hzname": "A", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "lonegrave", + "srgb_b": 0.493496194704249, + "srgb_g": 0.573230189582846, + "srgb_r": 0.638561136802744, + "texture_class": "clay loam", + "top": 0 + }, + { + "bottom": 56, + "cf_class": "very gravelly", + "cielab_a": 6.58953418555763, + "cielab_b": 25.3982799152076, + "cielab_l": 51.4149149786599, + "hzname": "Bw", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "lonegrave", + "srgb_b": 0.311115146146663, + "srgb_g": 0.46014971014309, + "srgb_r": 0.577554513328993, + "texture_class": "clay loam", + "top": 25 + }, + { + "bottom": 71, + "cf_class": null, + "cielab_a": null, + "cielab_b": null, + "cielab_l": null, + "hzname": "R", + "matrix_dry_color_chroma": null, + "matrix_dry_color_hue": null, + "matrix_dry_color_value": null, + "series": "lonegrave", + "srgb_b": null, + "srgb_g": null, + "srgb_r": null, + "texture_class": null, + "top": 56 + }, + { + "bottom": 10, + "cf_class": "cobbly", + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "A", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "lonely", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "clay loam", + "top": 0 + }, + { + "bottom": 41, + "cf_class": null, + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "Bw1", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "lonely", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "clay loam", + "top": 10 + }, + { + "bottom": 61, + "cf_class": "gravelly", + "cielab_a": 2.89064271156414, + "cielab_b": 13.064616880291, + "cielab_l": 61.5701956263403, + "hzname": "Bw2", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "lonely", + "srgb_b": 0.493496194704249, + "srgb_g": 0.573230189582846, + "srgb_r": 0.638561136802744, + "texture_class": "clay loam", + "top": 41 + }, + { + "bottom": 76, + "cf_class": null, + "cielab_a": null, + "cielab_b": null, + "cielab_l": null, + "hzname": "R", + "matrix_dry_color_chroma": null, + "matrix_dry_color_hue": null, + "matrix_dry_color_value": null, + "series": "lonely", + "srgb_b": null, + "srgb_g": null, + "srgb_r": null, + "texture_class": null, + "top": 61 + }, + { + "bottom": 5, + "cf_class": "very cobbly", + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "A", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "raz", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "loam", + "top": 0 + }, + { + "bottom": 18, + "cf_class": "gravelly", + "cielab_a": 2.50542437533247, + "cielab_b": 13.2158439165934, + "cielab_l": 71.5385868490813, + "hzname": "Bk", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 7, + "series": "raz", + "srgb_b": 0.593723155494692, + "srgb_g": 0.677858469484996, + "srgb_r": 0.74282064303885, + "texture_class": "clay loam", + "top": 5 + }, + { + "bottom": 30, + "cf_class": null, + "cielab_a": 2.50542437533247, + "cielab_b": 13.2158439165934, + "cielab_l": 71.5385868490813, + "hzname": "Bkq", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 7, + "series": "raz", + "srgb_b": 0.593723155494692, + "srgb_g": 0.677858469484996, + "srgb_r": 0.74282064303885, + "texture_class": "clay loam", + "top": 18 + }, + { + "bottom": 58, + "cf_class": null, + "cielab_a": null, + "cielab_b": null, + "cielab_l": null, + "hzname": "Bkqm", + "matrix_dry_color_chroma": null, + "matrix_dry_color_hue": null, + "matrix_dry_color_value": null, + "series": "raz", + "srgb_b": null, + "srgb_g": null, + "srgb_r": null, + "texture_class": null, + "top": 30 + }, + { + "bottom": 73, + "cf_class": null, + "cielab_a": null, + "cielab_b": null, + "cielab_l": null, + "hzname": "2R", + "matrix_dry_color_chroma": null, + "matrix_dry_color_hue": null, + "matrix_dry_color_value": null, + "series": "raz", + "srgb_b": null, + "srgb_g": null, + "srgb_r": null, + "texture_class": null, + "top": 58 + }, + { + "bottom": 3, + "cf_class": null, + "cielab_a": 2.89064271156414, + "cielab_b": 13.064616880291, + "cielab_l": 61.5701956263403, + "hzname": "A", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "reallis", + "srgb_b": 0.493496194704249, + "srgb_g": 0.573230189582846, + "srgb_r": 0.638561136802744, + "texture_class": "sandy loam", + "top": 0 + }, + { + "bottom": 23, + "cf_class": null, + "cielab_a": 2.89064271156414, + "cielab_b": 13.064616880291, + "cielab_l": 61.5701956263403, + "hzname": "Bw", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "reallis", + "srgb_b": 0.493496194704249, + "srgb_g": 0.573230189582846, + "srgb_r": 0.638561136802744, + "texture_class": "sandy loam", + "top": 3 + }, + { + "bottom": 43, + "cf_class": null, + "cielab_a": 2.89064271156414, + "cielab_b": 13.064616880291, + "cielab_l": 61.5701956263403, + "hzname": "Bq", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "reallis", + "srgb_b": 0.493496194704249, + "srgb_g": 0.573230189582846, + "srgb_r": 0.638561136802744, + "texture_class": "sandy loam", + "top": 23 + }, + { + "bottom": 69, + "cf_class": null, + "cielab_a": 2.50542437533247, + "cielab_b": 13.2158439165934, + "cielab_l": 71.5385868490813, + "hzname": "Bkq1", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 7, + "series": "reallis", + "srgb_b": 0.593723155494692, + "srgb_g": 0.677858469484996, + "srgb_r": 0.74282064303885, + "texture_class": "sandy loam", + "top": 43 + }, + { + "bottom": 91, + "cf_class": null, + "cielab_a": 2.50542437533247, + "cielab_b": 13.2158439165934, + "cielab_l": 71.5385868490813, + "hzname": "Bkq2", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 7, + "series": "reallis", + "srgb_b": 0.593723155494692, + "srgb_g": 0.677858469484996, + "srgb_r": 0.74282064303885, + "texture_class": "loamy sand", + "top": 69 + }, + { + "bottom": 152, + "cf_class": null, + "cielab_a": 2.50542437533247, + "cielab_b": 13.2158439165934, + "cielab_l": 71.5385868490813, + "hzname": "C", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 7, + "series": "reallis", + "srgb_b": 0.593723155494692, + "srgb_g": 0.677858469484996, + "srgb_r": 0.74282064303885, + "texture_class": "loamy sand", + "top": 91 + }, + { + "bottom": 10, + "cf_class": "stony", + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "A", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "rinconflat", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "loam", + "top": 0 + }, + { + "bottom": 33, + "cf_class": "gravelly", + "cielab_a": 6.58953418555763, + "cielab_b": 25.3982799152076, + "cielab_l": 51.4149149786599, + "hzname": "Bw1", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "rinconflat", + "srgb_b": 0.311115146146663, + "srgb_g": 0.46014971014309, + "srgb_r": 0.577554513328993, + "texture_class": "loam", + "top": 10 + }, + { + "bottom": 58, + "cf_class": "very cobbly", + "cielab_a": 6.58953418555763, + "cielab_b": 25.3982799152076, + "cielab_l": 51.4149149786599, + "hzname": "Bw2", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "rinconflat", + "srgb_b": 0.311115146146663, + "srgb_g": 0.46014971014309, + "srgb_r": 0.577554513328993, + "texture_class": "loam", + "top": 33 + }, + { + "bottom": 74, + "cf_class": "very gravelly", + "cielab_a": 6.58953418555763, + "cielab_b": 25.3982799152076, + "cielab_l": 51.4149149786599, + "hzname": "Bw3", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "rinconflat", + "srgb_b": 0.311115146146663, + "srgb_g": 0.46014971014309, + "srgb_r": 0.577554513328993, + "texture_class": "loam", + "top": 58 + }, + { + "bottom": 145, + "cf_class": "cobbly", + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "2Cq", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "rinconflat", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "sandy loam", + "top": 74 + }, + { + "bottom": 155, + "cf_class": "very cobbly", + "cielab_a": 6.58953418555763, + "cielab_b": 25.3982799152076, + "cielab_l": 51.4149149786599, + "hzname": "2C", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "rinconflat", + "srgb_b": 0.311115146146663, + "srgb_g": 0.46014971014309, + "srgb_r": 0.577554513328993, + "texture_class": "sandy clay loam", + "top": 145 + }, + { + "bottom": 25, + "cf_class": "cobbly", + "cielab_a": 4.85456052724254, + "cielab_b": 18.8945154624908, + "cielab_l": 51.4032284580631, + "hzname": "A", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "robson", + "srgb_b": 0.354980541712737, + "srgb_g": 0.465230900713657, + "srgb_r": 0.556494226652486, + "texture_class": "loam", + "top": 0 + }, + { + "bottom": 36, + "cf_class": "very cobbly", + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "Bt1", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "robson", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "clay loam", + "top": 25 + }, + { + "bottom": 48, + "cf_class": "extremely cobbly", + "cielab_a": 9.31189329898768, + "cielab_b": 22.4496446381707, + "cielab_l": 61.5870610331128, + "hzname": "Bt2", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 6, + "series": "robson", + "srgb_b": 0.429645085489254, + "srgb_g": 0.556090686344839, + "srgb_r": 0.69835386071579, + "texture_class": "clay", + "top": 36 + }, + { + "bottom": 63, + "cf_class": null, + "cielab_a": null, + "cielab_b": null, + "cielab_l": null, + "hzname": "R", + "matrix_dry_color_chroma": null, + "matrix_dry_color_hue": null, + "matrix_dry_color_value": null, + "series": "robson", + "srgb_b": null, + "srgb_g": null, + "srgb_r": null, + "texture_class": null, + "top": 48 + } + ], + "OSD_narrative": [ + { + "brief_narrative": "The Actem series consists of shallow to a duripan, well drained soils that formed in alluvium and colluvium derived from volcanic rocks. Actem soils are on hills and lava plateaus. Slopes are 2 to 20 percent. The mean annual precipitation is about 250 mm and the mean annual temperature is about 7 degrees C.", + "series": "actem" + }, + { + "brief_narrative": "The Ausmus series consists of very deep, somewhat poorly drained or moderately well drained soils that formed in alluvium and lacustrine deposits derived from volcanic rocks and volcanic ash. Ausmus soils are on low lake terraces. Slopes are 0 to 2 percent. The mean annual precipitation is about 230 mm and the mean annual temperature is about 6.5 degrees C.", + "series": "ausmus" + }, + { + "brief_narrative": "The Brace series consists of moderately deep to a duripan, well drained soils that formed in slope alluvium, colluvium, and residuum derived from welded rhyolitic tuff and basalt. Brace soils are on structural benches, hills, and lava plateaus. Slopes are 1 to 20 percent. The mean annual precipitation is about 300 mm and the mean annual temperature is about 6 degrees C.", + "series": "brace" + }, + { + "brief_narrative": "The Lonegrave series consists of moderately deep, well drained soils that formed in colluvium derived from volcanic rocks. Lonegrave soils are on plateaus, hills, canyonlands, and mountains. Slopes are 5 to 70 percent. The mean annual precipitation is about 280 mm and the mean annual temperature is about 7 degrees C.", + "series": "lonegrave" + }, + { + "brief_narrative": "The Lonely series consists of moderately deep, well drained soils that formed in colluvium overlying igneous bedrock. Lonely soils are on dissected rock pediments and mountain sideslopes and have slopes of 2 to 30 percent. The mean annual precipitation is about 10 inches and the mean annual temperature is about 43 degrees F.", + "series": "lonely" + }, + { + "brief_narrative": "The Raz series consists of shallow to a duripan, well drained soils that formed in slope alluvium, colluvium and residuum derived from basalt and tuff. Raz soils are on lava plateaus. Slopes are 1 to 20 percent. The mean annual precipitation is about 230 mm and the mean annual temperature is about 7 degrees C.", + "series": "raz" + }, + { + "brief_narrative": "The Reallis series consists of very deep, well drained soils that formed in alluvium derived from volcanic rocks and minor amounts of eolian material. Reallis soils are on alluvial fans and lake terraces. Slopes are 0 to 8 percent. The mean annual precipitation is about 250 mm and the mean annual temperature is about 6 degrees C.", + "series": "reallis" + }, + { + "brief_narrative": "The Rinconflat series consists of very deep, well drained soils that formed in alluvium derived from mixed volcanic rocks. Rinconflat soils are on alluvial fans and fan remnants. Slopes are 3 to 10 percent. The mean annual precipitation is about 280 mm and the mean annual temperature is about 7 degrees C.", + "series": "rinconflat" + }, + { + "brief_narrative": "The Robson series consists of shallow, well drained soils that formed in residuum derived from igneous rock. Robson soils are on hill and mountain crests and side slopes. Slopes are 2 to 75 percent. The mean annual precipitation is about 380 mm and the mean annual temperature is about 6 degrees C.", + "series": "robson" + } + ], + "hz": [ + { + "cec7_h": 10, + "cec7_l": 5, + "cec7_r": 7.5, + "chkey": 82604993, + "claytotal_h": 15, + "claytotal_l": 5, + "claytotal_r": 10, + "cokey": 27630925, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.47, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 23, + "hzdept_r": 0, + "hzname": "H1", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 490685, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.6, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 68.5, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 21.5, + "total_frag_volume": 8, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 8, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 17.3 + }, + { + "cec7_h": 25, + "cec7_l": 15, + "cec7_r": 20, + "chkey": 82605013, + "claytotal_h": 27, + "claytotal_l": 20, + "claytotal_r": 23.5, + "cokey": 27631363, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.49, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 5, + "hzdept_r": 0, + "hzname": "H1", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 490458, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 39.2, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 37.3, + "total_frag_volume": 32, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 10.3, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 20.4 + }, + { + "cec7_h": 20, + "cec7_l": 10, + "cec7_r": 15, + "chkey": 82603297, + "claytotal_h": 27, + "claytotal_l": 15, + "claytotal_r": 21, + "cokey": 27630911, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.5, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 10, + "hzdept_r": 0, + "hzname": "H1", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 490696, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 41.6, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 37.4, + "total_frag_volume": 34, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 9.2, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 19.3 + }, + { + "cec7_h": 40, + "cec7_l": 25, + "cec7_r": 32.5, + "chkey": 82605014, + "claytotal_h": 45, + "claytotal_l": 35, + "claytotal_r": 40, + "cokey": 27631363, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.88, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 18, + "hzdept_r": 5, + "hzname": "H2", + "lep_h": 8.9, + "lep_l": 6, + "lep_r": 7.5, + "mukey": 490458, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.2, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 30, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 30, + "total_frag_volume": 24, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 19, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 26 + }, + { + "cec7_h": 20, + "cec7_l": 10, + "cec7_r": 15, + "chkey": 82603298, + "claytotal_h": 27, + "claytotal_l": 18, + "claytotal_r": 22.5, + "cokey": 27630911, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.49, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 33, + "hzdept_r": 10, + "hzname": "H2", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 490696, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 39.8, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 37.7, + "total_frag_volume": 28, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 10.1, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 21.5 + }, + { + "cec7_h": 40, + "cec7_l": 25, + "cec7_r": 32.5, + "chkey": 82605015, + "claytotal_h": 45, + "claytotal_l": 35, + "claytotal_r": 40, + "cokey": 27631363, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.86, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 38, + "hzdept_r": 18, + "hzname": "H3", + "lep_h": 8.9, + "lep_l": 6, + "lep_r": 7.5, + "mukey": 490458, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.2, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 29.6, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 30.4, + "total_frag_volume": 19, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 19.7, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 29.9 + }, + { + "cec7_h": 10, + "cec7_l": 5, + "cec7_r": 7.5, + "chkey": 82604994, + "claytotal_h": 15, + "claytotal_l": 5, + "claytotal_r": 10, + "cokey": 27630925, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.47, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 43, + "hzdept_r": 23, + "hzname": "H2", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 490685, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.6, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 66.9, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 23.1, + "total_frag_volume": 8, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 6.6, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 15.9 + }, + { + "cec7_h": 20, + "cec7_l": 10, + "cec7_r": 15, + "chkey": 82603299, + "claytotal_h": 27, + "claytotal_l": 18, + "claytotal_r": 22.5, + "cokey": 27630911, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.6, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 74, + "hzdept_r": 33, + "hzname": "H3", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 490696, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.2, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 39.8, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 37.7, + "total_frag_volume": 46, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 6, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 12.9 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 82605016, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 27631363, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 51, + "hzdept_r": 38, + "hzname": "H4", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 490458, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": 10, + "cec7_l": 5, + "cec7_r": 7.5, + "chkey": 82604995, + "claytotal_h": 15, + "claytotal_l": 5, + "claytotal_r": 10, + "cokey": 27630925, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.62, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 69, + "hzdept_r": 43, + "hzname": "H3", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 490685, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 8, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 66.9, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 23.1, + "total_frag_volume": 8, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 6.6, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 15.8 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 82605017, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 27631363, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 76, + "hzdept_r": 51, + "hzname": "H5", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 490458, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": 10, + "cec7_l": 0, + "cec7_r": 5, + "chkey": 82604996, + "claytotal_h": 15, + "claytotal_l": 2, + "claytotal_r": 8.5, + "cokey": 27630925, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.53, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 152, + "hzdept_r": 69, + "hzname": "H4", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 490685, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 8, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 68, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 23.5, + "total_frag_volume": 18, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 4.9, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 12.8 + }, + { + "cec7_h": 20, + "cec7_l": 10, + "cec7_r": 15, + "chkey": 82603300, + "claytotal_h": 27, + "claytotal_l": 10, + "claytotal_r": 18.5, + "cokey": 27630911, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.57, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 155, + "hzdept_r": 74, + "hzname": "H4", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 490696, + "ph1to1h2o_h": 9, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8.5, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 66.5, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 15, + "total_frag_volume": 43, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 6.4, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 11.6 + }, + { + "cec7_h": 20, + "cec7_l": 15, + "cec7_r": 17.5, + "chkey": 82605469, + "claytotal_h": 35, + "claytotal_l": 27, + "claytotal_r": 31, + "cokey": 27631350, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.67, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 25, + "hzdept_r": 0, + "hzname": "H1", + "lep_h": 5.9, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 490463, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.2, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 35.4, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 33.6, + "total_frag_volume": 48, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 8, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 14.1 + }, + { + "cec7_h": 20, + "cec7_l": 10, + "cec7_r": 15, + "chkey": 82605470, + "claytotal_h": 35, + "claytotal_l": 20, + "claytotal_r": 27.5, + "cokey": 27631350, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.56, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 56, + "hzdept_r": 25, + "hzname": "H2", + "lep_h": 5.9, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 490463, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.2, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 34.7, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 37.8, + "total_frag_volume": 39, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 9, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 17.6 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 82605471, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 27631350, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 81, + "hzdept_r": 56, + "hzname": "H3", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 490463, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": 20, + "cec7_l": 15, + "cec7_r": 17.5, + "chkey": 82604285, + "claytotal_h": 35, + "claytotal_l": 27, + "claytotal_r": 31, + "cokey": 27631144, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.5, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 10, + "hzdept_r": 0, + "hzname": "H1", + "lep_h": 5.9, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 490552, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 35.4, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 33.6, + "total_frag_volume": 30, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 13, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 23 + }, + { + "cec7_h": 15, + "cec7_l": 10, + "cec7_r": 12.5, + "chkey": 82605005, + "claytotal_h": 27, + "claytotal_l": 20, + "claytotal_r": 23.5, + "cokey": 27630931, + "dbovendry_h": 1.44, + "dbovendry_l": 1.29, + "dbovendry_r": 1.34, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 5, + "hzdept_r": 0, + "hzname": "A", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 490682, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.6, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 39.2, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 37.3, + "total_frag_volume": 41, + "wfifteenbar_h": 12.8, + "wfifteenbar_l": 4.5, + "wfifteenbar_r": 8.2, + "wthirdbar_h": 24.7, + "wthirdbar_l": 10.7, + "wthirdbar_r": 17.5 + }, + { + "cec7_h": 20, + "cec7_l": 10, + "cec7_r": 15, + "chkey": 82605006, + "claytotal_h": 35, + "claytotal_l": 20, + "claytotal_r": 27.5, + "cokey": 27630931, + "dbovendry_h": 1.55, + "dbovendry_l": 1.42, + "dbovendry_r": 1.47, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 18, + "hzdept_r": 5, + "hzname": "Bk", + "lep_h": 5.9, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 490682, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.9, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 34.7, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 37.8, + "total_frag_volume": 28, + "wfifteenbar_h": 18.5, + "wfifteenbar_l": 7.1, + "wfifteenbar_r": 12.3, + "wthirdbar_h": 31, + "wthirdbar_l": 17.1, + "wthirdbar_r": 24.1 + }, + { + "cec7_h": 20, + "cec7_l": 15, + "cec7_r": 17.5, + "chkey": 82604286, + "claytotal_h": 35, + "claytotal_l": 27, + "claytotal_r": 31, + "cokey": 27631144, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.45, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 41, + "hzdept_r": 10, + "hzname": "H2", + "lep_h": 5.9, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 490552, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.2, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 35.4, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 33.6, + "total_frag_volume": 18, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 14.9, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 27.1 + }, + { + "cec7_h": 20, + "cec7_l": 10, + "cec7_r": 15, + "chkey": 82605002, + "claytotal_h": 35, + "claytotal_l": 20, + "claytotal_r": 27.5, + "cokey": 27630931, + "dbovendry_h": 1.49, + "dbovendry_l": 1.38, + "dbovendry_r": 1.43, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 30, + "hzdept_r": 18, + "hzname": "Bkq", + "lep_h": 5.9, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 490682, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.9, + "ph1to1h2o_r": 8.2, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 34.7, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 37.8, + "total_frag_volume": 8, + "wfifteenbar_h": 18.9, + "wfifteenbar_l": 9.7, + "wfifteenbar_r": 14.2, + "wthirdbar_h": 32.3, + "wthirdbar_l": 24.2, + "wthirdbar_r": 28.5 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 82605003, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 27630931, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 58, + "hzdept_r": 30, + "hzname": "Bkqm", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 490682, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": 20, + "cec7_l": 15, + "cec7_r": 17.5, + "chkey": 82604287, + "claytotal_h": 35, + "claytotal_l": 27, + "claytotal_r": 31, + "cokey": 27631144, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.48, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 61, + "hzdept_r": 41, + "hzname": "H3", + "lep_h": 5.9, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 490552, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.6, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 35.4, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 33.6, + "total_frag_volume": 26, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 12.8, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 23.8 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 82605004, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 27630931, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 84, + "hzdept_r": 58, + "hzname": "2R", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 490682, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 82604288, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 27631144, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 86, + "hzdept_r": 61, + "hzname": "H4", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 490552, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": 30, + "cec7_l": 20, + "cec7_r": 25, + "chkey": 82604289, + "claytotal_h": 35, + "claytotal_l": 27, + "claytotal_r": 31, + "cokey": 27631143, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.79, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 10, + "hzdept_r": 0, + "hzname": "H1", + "lep_h": 5.9, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 490552, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 35.4, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 33.6, + "total_frag_volume": 42, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 10.5, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 17.3 + }, + { + "cec7_h": 13, + "cec7_l": 8, + "cec7_r": 10.5, + "chkey": 82605009, + "claytotal_h": 27, + "claytotal_l": 15, + "claytotal_r": 21, + "cokey": 27630932, + "dbovendry_h": 1.68, + "dbovendry_l": 1.51, + "dbovendry_r": 1.58, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 15, + "hzdept_r": 0, + "hzname": "A", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 490682, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.2, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 41.6, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 37.4, + "total_frag_volume": 34, + "wfifteenbar_h": 13.1, + "wfifteenbar_l": 4.8, + "wfifteenbar_r": 8.3, + "wthirdbar_h": 23.7, + "wthirdbar_l": 12.7, + "wthirdbar_r": 17.8 + }, + { + "cec7_h": 45, + "cec7_l": 30, + "cec7_r": 37.5, + "chkey": 82604290, + "claytotal_h": 50, + "claytotal_l": 40, + "claytotal_r": 45, + "cokey": 27631143, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.77, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 33, + "hzdept_r": 10, + "hzname": "H2", + "lep_h": 8.9, + "lep_l": 6, + "lep_r": 7.5, + "mukey": 490552, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.2, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 26.1, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 28.9, + "total_frag_volume": 46, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 11.3, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 16.5 + }, + { + "cec7_h": 18, + "cec7_l": 9, + "cec7_r": 13.5, + "chkey": 82605010, + "claytotal_h": 35, + "claytotal_l": 20, + "claytotal_r": 27.5, + "cokey": 27630932, + "dbovendry_h": 1.87, + "dbovendry_l": 1.55, + "dbovendry_r": 1.79, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 33, + "hzdept_r": 15, + "hzname": "Bt", + "lep_h": 5.9, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 490682, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.6, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 37.2, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 35.3, + "total_frag_volume": 17, + "wfifteenbar_h": 21.9, + "wfifteenbar_l": 10.6, + "wfifteenbar_r": 15.9, + "wthirdbar_h": 32.6, + "wthirdbar_l": 23, + "wthirdbar_r": 27.9 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 82604291, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 27631143, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 58, + "hzdept_r": 33, + "hzname": "H3", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 490552, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": 13, + "cec7_l": 5, + "cec7_r": 9, + "chkey": 82605011, + "claytotal_h": 25, + "claytotal_l": 15, + "claytotal_r": 20, + "cokey": 27630932, + "dbovendry_h": 1.82, + "dbovendry_l": 1.44, + "dbovendry_r": 1.74, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 81, + "hzdept_r": 33, + "hzname": "Bkq", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 490682, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.4, + "ph1to1h2o_r": 7.9, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 42, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 38, + "total_frag_volume": 12, + "wfifteenbar_h": 16.1, + "wfifteenbar_l": 7.9, + "wfifteenbar_r": 11.8, + "wthirdbar_h": 29.2, + "wthirdbar_l": 20.5, + "wthirdbar_r": 24.9 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 82605007, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 27630932, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 91, + "hzdept_r": 81, + "hzname": "Bkqm", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 490682, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 82605008, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 27630932, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 117, + "hzdept_r": 91, + "hzname": "2R", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 490682, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": 20, + "cec7_l": 10, + "cec7_r": 15, + "chkey": 82604998, + "claytotal_h": 20, + "claytotal_l": 10, + "claytotal_r": 15, + "cokey": 27630924, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": 4, + "ec_l": 1, + "ec_r": 2.5, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 5, + "hzdept_r": 0, + "hzname": "H1", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 490685, + "ph1to1h2o_h": 9, + "ph1to1h2o_l": 8.5, + "ph1to1h2o_r": 8.8, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": 35, + "cec7_l": 20, + "cec7_r": 27.5, + "chkey": 82604999, + "claytotal_h": 35, + "claytotal_l": 27, + "claytotal_r": 31, + "cokey": 27630924, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": 8, + "ec_l": 4, + "ec_r": 6, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 23, + "hzdept_r": 5, + "hzname": "H2", + "lep_h": 5.9, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 490685, + "ph1to1h2o_h": 11, + "ph1to1h2o_l": 9.1, + "ph1to1h2o_r": 10.1, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": 35, + "cec7_l": 20, + "cec7_r": 27.5, + "chkey": 82605000, + "claytotal_h": 35, + "claytotal_l": 27, + "claytotal_r": 31, + "cokey": 27630924, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": 16, + "ec_l": 4, + "ec_r": 10, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 41, + "hzdept_r": 23, + "hzname": "H3", + "lep_h": 5.9, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 490685, + "ph1to1h2o_h": 11, + "ph1to1h2o_l": 9.1, + "ph1to1h2o_r": 10.1, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": 35, + "cec7_l": 20, + "cec7_r": 27.5, + "chkey": 82605001, + "claytotal_h": 27, + "claytotal_l": 20, + "claytotal_r": 23.5, + "cokey": 27630924, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": 32, + "ec_l": 16, + "ec_r": 24, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 74, + "hzdept_r": 41, + "hzname": "H4", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 490685, + "ph1to1h2o_h": 11, + "ph1to1h2o_l": 9.1, + "ph1to1h2o_r": 10.1, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": 35, + "cec7_l": 20, + "cec7_r": 27.5, + "chkey": 82604997, + "claytotal_h": 27, + "claytotal_l": 20, + "claytotal_r": 23.5, + "cokey": 27630924, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": 32, + "ec_l": 16, + "ec_r": 24, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 175, + "hzdept_r": 74, + "hzname": "H5", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 490685, + "ph1to1h2o_h": 11, + "ph1to1h2o_l": 9.1, + "ph1to1h2o_r": 10.1, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + } + ], + "spn": [ + { + "closest_pt_x": -119.4596489, + "closest_pt_y": 43.06450312, + "cokey": 27631144, + "compkind": "Series", + "compname": "lonely", + "comppct_r": 50, + "dist_meters": 0, + "elev_r": 1601, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 490552, + "nirrcapcl": 6, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 19, + "taxorder": "Aridisols", + "taxsubgrp": "Xeric Haplocambids", + "which": "a" + }, + { + "closest_pt_x": -119.4596489, + "closest_pt_y": 43.06450312, + "cokey": 27631143, + "compkind": "Series", + "compname": "robson", + "comppct_r": 35, + "dist_meters": 0, + "elev_r": 1601, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 490552, + "nirrcapcl": 7, + "nirrcapscl": "s", + "nirrcapunit": null, + "slope_r": 10, + "taxorder": "Aridisols", + "taxsubgrp": "Lithic Xeric Haplargids", + "which": "a" + }, + { + "closest_pt_x": -119.45935007807219, + "closest_pt_y": 43.06654810455685, + "cokey": 27630925, + "compkind": "Series", + "compname": "reallis", + "comppct_r": 85, + "dist_meters": 227, + "elev_r": 1509, + "irrcapcl": 4, + "irrcapscl": "s", + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 490685, + "nirrcapcl": 6, + "nirrcapscl": "s", + "nirrcapunit": null, + "slope_r": 2, + "taxorder": "Aridisols", + "taxsubgrp": "Durinodic Xeric Haplocambids", + "which": "b" + }, + { + "closest_pt_x": -119.45935007807219, + "closest_pt_y": 43.06654810455685, + "cokey": 27630924, + "compkind": "Series", + "compname": "ausmus", + "comppct_r": 4, + "dist_meters": 227, + "elev_r": null, + "irrcapcl": 4, + "irrcapscl": "s", + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 490685, + "nirrcapcl": 6, + "nirrcapscl": "s", + "nirrcapunit": null, + "slope_r": 1, + "taxorder": "Aridisols", + "taxsubgrp": "Aquic Natrargids", + "which": "b" + }, + { + "closest_pt_x": -119.45474191488395, + "closest_pt_y": 43.06087920233509, + "cokey": 27631350, + "compkind": "Series", + "compname": "lonegrave", + "comppct_r": 65, + "dist_meters": 546, + "elev_r": 1707, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 490463, + "nirrcapcl": 7, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 55, + "taxorder": "Aridisols", + "taxsubgrp": "Xeric Haplocambids", + "which": "b" + }, + { + "closest_pt_x": -119.466845537303, + "closest_pt_y": 43.0606979997092, + "cokey": 27630911, + "compkind": "Series", + "compname": "rinconflat", + "comppct_r": 85, + "dist_meters": 717, + "elev_r": 1570, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 490696, + "nirrcapcl": 6, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 7, + "taxorder": "Aridisols", + "taxsubgrp": "Xeric Haplocambids", + "which": "b" + }, + { + "closest_pt_x": -119.46730524763, + "closest_pt_y": 43.0704116666155, + "cokey": 27631363, + "compkind": "Series", + "compname": "actem", + "comppct_r": 85, + "dist_meters": 858, + "elev_r": 1555, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 490458, + "nirrcapcl": 6, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 11, + "taxorder": "Aridisols", + "taxsubgrp": "Xeric Argidurids", + "which": "b" + }, + { + "closest_pt_x": -119.455595795298, + "closest_pt_y": 43.0556740808942, + "cokey": 27630931, + "compkind": "Series", + "compname": "raz", + "comppct_r": 50, + "dist_meters": 878, + "elev_r": 1452, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 490682, + "nirrcapcl": 6, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 11, + "taxorder": "Aridisols", + "taxsubgrp": "Xeric Haplodurids", + "which": "b" + }, + { + "closest_pt_x": -119.455595795298, + "closest_pt_y": 43.0556740808942, + "cokey": 27630932, + "compkind": "Series", + "compname": "brace", + "comppct_r": 35, + "dist_meters": 878, + "elev_r": 1452, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 490682, + "nirrcapcl": 6, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 11, + "taxorder": "Aridisols", + "taxsubgrp": "Xeric Argidurids", + "which": "b" + } + ] + } +} diff --git a/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[45.6508331,-121.5111084].json b/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[45.6508331,-121.5111084].json new file mode 100644 index 0000000..0e625a6 --- /dev/null +++ b/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[45.6508331,-121.5111084].json @@ -0,0 +1,776 @@ +{ + "elev": { + "location": { + "spatialReference": { + "latestWkid": 4326, + "wkid": 4326 + }, + "x": -121.5111084, + "y": 45.6508331 + }, + "locationId": 0, + "rasterId": 9892, + "resolution": 3.086419871794868e-05, + "value": "194.085876465" + }, + "soilweb": { + "ESD": [ + { + "cokey": 27032515, + "ecoclassid": "F006XA804OR", + "ecoclassname": "Mesic Xeric Maritime Foothills 30-50 PZ", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/006X/F006XA804OR" + }, + { + "cokey": 27032518, + "ecoclassid": "F006XA804OR", + "ecoclassname": "Mesic Xeric Maritime Foothills 30-50 PZ", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/006X/F006XA804OR" + }, + { + "cokey": 27032519, + "ecoclassid": "F006XA804OR", + "ecoclassname": "Mesic Xeric Maritime Foothills 30-50 PZ", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/006X/F006XA804OR" + } + ], + "OSD_morph": [ + { + "bottom": 8, + "cf_class": null, + "cielab_a": 3.22690261250264, + "cielab_b": 12.65785928239, + "cielab_l": 51.3902579549971, + "hzname": "Ap1", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "hood", + "srgb_b": 0.396431450662527, + "srgb_g": 0.470047004516309, + "srgb_r": 0.534105039939954, + "texture_class": "loam", + "top": 0 + }, + { + "bottom": 15, + "cf_class": null, + "cielab_a": 4.85456052724254, + "cielab_b": 18.8945154624908, + "cielab_l": 51.4032284580631, + "hzname": "Ap2", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "hood", + "srgb_b": 0.354980541712737, + "srgb_g": 0.465230900713657, + "srgb_r": 0.556494226652486, + "texture_class": "loam", + "top": 8 + }, + { + "bottom": 41, + "cf_class": null, + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "BA", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "hood", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "sand", + "top": 15 + }, + { + "bottom": 69, + "cf_class": null, + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "Bt1", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "hood", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "sand", + "top": 41 + }, + { + "bottom": 97, + "cf_class": null, + "cielab_a": 6.58953418555763, + "cielab_b": 25.3982799152076, + "cielab_l": 51.4149149786599, + "hzname": "Bt2", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "hood", + "srgb_b": 0.311115146146663, + "srgb_g": 0.46014971014309, + "srgb_r": 0.577554513328993, + "texture_class": "sand", + "top": 69 + }, + { + "bottom": 147, + "cf_class": null, + "cielab_a": 6.58953418555763, + "cielab_b": 25.3982799152076, + "cielab_l": 51.4149149786599, + "hzname": "Bt3", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "hood", + "srgb_b": 0.311115146146663, + "srgb_g": 0.46014971014309, + "srgb_r": 0.577554513328993, + "texture_class": "sand", + "top": 97 + }, + { + "bottom": 185, + "cf_class": null, + "cielab_a": 6.58953418555763, + "cielab_b": 25.3982799152076, + "cielab_l": 51.4149149786599, + "hzname": "Bt4", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "hood", + "srgb_b": 0.311115146146663, + "srgb_g": 0.46014971014309, + "srgb_r": 0.577554513328993, + "texture_class": "sand", + "top": 147 + }, + { + "bottom": 249, + "cf_class": null, + "cielab_a": 6.58953418555763, + "cielab_b": 25.3982799152076, + "cielab_l": 51.4149149786599, + "hzname": "BCt", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "hood", + "srgb_b": 0.311115146146663, + "srgb_g": 0.46014971014309, + "srgb_r": 0.577554513328993, + "texture_class": "sand", + "top": 185 + }, + { + "bottom": 274, + "cf_class": null, + "cielab_a": 4.19348105508266, + "cielab_b": 19.0648390016509, + "cielab_l": 61.5833566806923, + "hzname": "C", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "hood", + "srgb_b": 0.452254457335012, + "srgb_g": 0.569059535719463, + "srgb_r": 0.660064782377276, + "texture_class": "very fine sandy loam", + "top": 249 + } + ], + "OSD_narrative": [ + { + "brief_narrative": "The Hood series consists of very deep, well drained soils formed in silty or loamy lacustrine deposits. Hood soils are on dissected terraces and terrace escarpments. Slopes are 0 to 65 percent. The mean annual precipitation is 38 inches and mean annual temperature is 50 degrees F.", + "series": "hood" + } + ], + "hz": [ + { + "cec7_h": 15, + "cec7_l": 5, + "cec7_r": 10, + "chkey": 80723207, + "claytotal_h": 20, + "claytotal_l": 15, + "claytotal_r": 17.5, + "cokey": 27032515, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.25, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 8, + "hzdept_r": 0, + "hzname": "H1", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 62002, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.1, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 43, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 39.5, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 12.3, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 27.7 + }, + { + "cec7_h": 15, + "cec7_l": 5, + "cec7_r": 10, + "chkey": 80723219, + "claytotal_h": 20, + "claytotal_l": 15, + "claytotal_r": 17.5, + "cokey": 27032518, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.25, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 8, + "hzdept_r": 0, + "hzname": "H1", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 61999, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.1, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 43, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 39.5, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 12.3, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 27.7 + }, + { + "cec7_h": 15, + "cec7_l": 5, + "cec7_r": 10, + "chkey": 80723224, + "claytotal_h": 20, + "claytotal_l": 15, + "claytotal_r": 17.5, + "cokey": 27032519, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.25, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 8, + "hzdept_r": 0, + "hzname": "H1", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 61998, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.1, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 43, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 39.5, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 12.3, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 27.7 + }, + { + "cec7_h": 15, + "cec7_l": 5, + "cec7_r": 10, + "chkey": 80723208, + "claytotal_h": 20, + "claytotal_l": 15, + "claytotal_r": 17.5, + "cokey": 27032515, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.25, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 41, + "hzdept_r": 8, + "hzname": "H2", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 62002, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.1, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 43, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 39.5, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 12.3, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 27.7 + }, + { + "cec7_h": 15, + "cec7_l": 5, + "cec7_r": 10, + "chkey": 80723220, + "claytotal_h": 20, + "claytotal_l": 15, + "claytotal_r": 17.5, + "cokey": 27032518, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.25, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 41, + "hzdept_r": 8, + "hzname": "H2", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 61999, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.1, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 43, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 39.5, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 12.3, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 27.7 + }, + { + "cec7_h": 15, + "cec7_l": 5, + "cec7_r": 10, + "chkey": 80723225, + "claytotal_h": 20, + "claytotal_l": 15, + "claytotal_r": 17.5, + "cokey": 27032519, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.25, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 41, + "hzdept_r": 8, + "hzname": "H2", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 61998, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.1, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 43, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 39.5, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 12.3, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 27.7 + }, + { + "cec7_h": 15, + "cec7_l": 5, + "cec7_r": 10, + "chkey": 80723226, + "claytotal_h": 25, + "claytotal_l": 18, + "claytotal_r": 21.5, + "cokey": 27032519, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.41, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 249, + "hzdept_r": 41, + "hzname": "H3", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 61998, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.1, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 41.4, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 37.1, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 13, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 28.3 + }, + { + "cec7_h": 15, + "cec7_l": 5, + "cec7_r": 10, + "chkey": 80723221, + "claytotal_h": 25, + "claytotal_l": 18, + "claytotal_r": 21.5, + "cokey": 27032518, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.41, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 249, + "hzdept_r": 41, + "hzname": "H3", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 61999, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.1, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 41.4, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 37.1, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 13, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 28.3 + }, + { + "cec7_h": 15, + "cec7_l": 5, + "cec7_r": 10, + "chkey": 80723209, + "claytotal_h": 25, + "claytotal_l": 18, + "claytotal_r": 21.5, + "cokey": 27032515, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.41, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 249, + "hzdept_r": 41, + "hzname": "H3", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 62002, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.1, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 41.4, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 37.1, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 13, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 28.3 + }, + { + "cec7_h": 8, + "cec7_l": 2, + "cec7_r": 5, + "chkey": 80723210, + "claytotal_h": 15, + "claytotal_l": 5, + "claytotal_r": 10, + "cokey": 27032515, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.52, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 277, + "hzdept_r": 249, + "hzname": "H4", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 62002, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.5, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 9, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 5.5, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 14.5 + }, + { + "cec7_h": 8, + "cec7_l": 2, + "cec7_r": 5, + "chkey": 80723222, + "claytotal_h": 15, + "claytotal_l": 5, + "claytotal_r": 10, + "cokey": 27032518, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.52, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 277, + "hzdept_r": 249, + "hzname": "H4", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 61999, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.5, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 9, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 5.5, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 14.5 + }, + { + "cec7_h": 15, + "cec7_l": 5, + "cec7_r": 10, + "chkey": 80723223, + "claytotal_h": 15, + "claytotal_l": 5, + "claytotal_r": 10, + "cokey": 27032519, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.52, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 277, + "hzdept_r": 249, + "hzname": "H4", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 61998, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 6.6, + "ph1to1h2o_r": 7.5, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 9, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 5.5, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 14.5 + } + ], + "spn": [ + { + "closest_pt_x": -121.5111084, + "closest_pt_y": 45.6508331, + "cokey": 27032519, + "compkind": "Series", + "compname": "hood", + "comppct_r": 85, + "dist_meters": 0, + "elev_r": 206, + "irrcapcl": 1, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 61998, + "nirrcapcl": 1, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": 2, + "taxorder": "Alfisols", + "taxsubgrp": "Ultic Haploxeralfs", + "which": "a" + }, + { + "closest_pt_x": -121.51066690216484, + "closest_pt_y": 45.650440158952264, + "cokey": 27032515, + "compkind": "Series", + "compname": "hood", + "comppct_r": 85, + "dist_meters": 52, + "elev_r": 206, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 62002, + "nirrcapcl": 6, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 30, + "taxorder": "Alfisols", + "taxsubgrp": "Ultic Haploxeralfs", + "which": "b" + }, + { + "closest_pt_x": -121.510464018631, + "closest_pt_y": 45.6502392122279, + "cokey": 27032518, + "compkind": "Series", + "compname": "hood", + "comppct_r": 85, + "dist_meters": 82, + "elev_r": 206, + "irrcapcl": 2, + "irrcapscl": "e", + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 61999, + "nirrcapcl": 2, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 6, + "taxorder": "Alfisols", + "taxsubgrp": "Ultic Haploxeralfs", + "which": "b" + } + ] + } +} diff --git a/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[45.88932423,-121.0347381].json b/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[45.88932423,-121.0347381].json new file mode 100644 index 0000000..2cb07ac --- /dev/null +++ b/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[45.88932423,-121.0347381].json @@ -0,0 +1,899 @@ +{ + "elev": { + "location": { + "spatialReference": { + "latestWkid": 4326, + "wkid": 4326 + }, + "x": -121.0347381, + "y": 45.88932423 + }, + "locationId": 0, + "rasterId": 43068, + "resolution": 1, + "value": "543.340637207" + }, + "soilweb": { + "ESD": [ + { + "cokey": 26581758, + "ecoclassid": "F006XD004WA", + "ecoclassname": "Mesic Xeric Slopes and Plateaus (Oregon White Oak-Ponderosa pine Hot Dry Herb/Shrub)", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/006X/F006XD004WA" + }, + { + "cokey": 26581766, + "ecoclassid": "F006XD004WA", + "ecoclassname": "Mesic Xeric Slopes and Plateaus (Oregon White Oak-Ponderosa pine Hot Dry Herb/Shrub)", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/006X/F006XD004WA" + } + ], + "OSD_morph": [ + { + "bottom": 15, + "cf_class": null, + "cielab_a": 7.37766464830225, + "cielab_b": 16.7198534169627, + "cielab_l": 51.3967258207869, + "hzname": "A1", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 5, + "series": "gunn", + "srgb_b": 0.370009311681262, + "srgb_g": 0.459709540670769, + "srgb_r": 0.567656651220777, + "texture_class": "loam", + "top": 0 + }, + { + "bottom": 25, + "cf_class": null, + "cielab_a": 7.07240794343, + "cielab_b": 16.7996965924008, + "cielab_l": 61.5761989469929, + "hzname": "A2", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 6, + "series": "gunn", + "srgb_b": 0.468421402094094, + "srgb_g": 0.562627337951678, + "srgb_r": 0.673683146747319, + "texture_class": "loam", + "top": 15 + }, + { + "bottom": 46, + "cf_class": null, + "cielab_a": 9.31189329898768, + "cielab_b": 22.4496446381707, + "cielab_l": 61.5870610331128, + "hzname": "BAt", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 6, + "series": "gunn", + "srgb_b": 0.429645085489254, + "srgb_g": 0.556090686344839, + "srgb_r": 0.69835386071579, + "texture_class": "loam", + "top": 25 + }, + { + "bottom": 86, + "cf_class": null, + "cielab_a": 9.31189329898768, + "cielab_b": 22.4496446381707, + "cielab_l": 61.5870610331128, + "hzname": "Bt1", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 6, + "series": "gunn", + "srgb_b": 0.429645085489254, + "srgb_g": 0.556090686344839, + "srgb_r": 0.69835386071579, + "texture_class": "clay loam", + "top": 46 + }, + { + "bottom": 114, + "cf_class": null, + "cielab_a": 9.31189329898768, + "cielab_b": 22.4496446381707, + "cielab_l": 61.5870610331128, + "hzname": "Bt2", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 6, + "series": "gunn", + "srgb_b": 0.429645085489254, + "srgb_g": 0.556090686344839, + "srgb_r": 0.69835386071579, + "texture_class": "clay loam", + "top": 86 + }, + { + "bottom": 168, + "cf_class": null, + "cielab_a": 9.31189329898768, + "cielab_b": 22.4496446381707, + "cielab_l": 61.5870610331128, + "hzname": "BCt", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 6, + "series": "gunn", + "srgb_b": 0.429645085489254, + "srgb_g": 0.556090686344839, + "srgb_r": 0.69835386071579, + "texture_class": "clay loam", + "top": 114 + }, + { + "bottom": 3, + "cf_class": null, + "cielab_a": 5.75265137752021, + "cielab_b": 11.6701083904344, + "cielab_l": 40.9091053785084, + "hzname": "Oi", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 4, + "series": "itat", + "srgb_b": 0.304639193182857, + "srgb_g": 0.363184577749211, + "srgb_r": 0.441777408935627, + "texture_class": null, + "top": 0 + }, + { + "bottom": 10, + "cf_class": "cobbly", + "cielab_a": 9.31189329898768, + "cielab_b": 22.4496446381707, + "cielab_l": 61.5870610331128, + "hzname": "A", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 6, + "series": "itat", + "srgb_b": 0.429645085489254, + "srgb_g": 0.556090686344839, + "srgb_r": 0.69835386071579, + "texture_class": "loam", + "top": 3 + }, + { + "bottom": 25, + "cf_class": "gravelly", + "cielab_a": 14.370614178725, + "cielab_b": 25.3306266515612, + "cielab_l": 61.5892714819434, + "hzname": "BA", + "matrix_dry_color_chroma": 5, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 6, + "series": "itat", + "srgb_b": 0.410532174406658, + "srgb_g": 0.542613618060401, + "srgb_r": 0.733485985406799, + "texture_class": "loam", + "top": 10 + }, + { + "bottom": 56, + "cf_class": "gravelly", + "cielab_a": 14.370614178725, + "cielab_b": 25.3306266515612, + "cielab_l": 61.5892714819434, + "hzname": "Bw", + "matrix_dry_color_chroma": 5, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 6, + "series": "itat", + "srgb_b": 0.410532174406658, + "srgb_g": 0.542613618060401, + "srgb_r": 0.733485985406799, + "texture_class": "loam", + "top": 25 + }, + { + "bottom": 81, + "cf_class": "very gravelly", + "cielab_a": 14.370614178725, + "cielab_b": 25.3306266515612, + "cielab_l": 61.5892714819434, + "hzname": "BC", + "matrix_dry_color_chroma": 5, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 6, + "series": "itat", + "srgb_b": 0.410532174406658, + "srgb_g": 0.542613618060401, + "srgb_r": 0.733485985406799, + "texture_class": "loam", + "top": 56 + }, + { + "bottom": 155, + "cf_class": "extremely cobbly", + "cielab_a": 14.370614178725, + "cielab_b": 25.3306266515612, + "cielab_l": 61.5892714819434, + "hzname": "C", + "matrix_dry_color_chroma": 5, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 6, + "series": "itat", + "srgb_b": 0.410532174406658, + "srgb_g": 0.542613618060401, + "srgb_r": 0.733485985406799, + "texture_class": "loam", + "top": 81 + }, + { + "bottom": 10, + "cf_class": null, + "cielab_a": 4.85456052724254, + "cielab_b": 18.8945154624908, + "cielab_l": 51.4032284580631, + "hzname": "A1", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 5, + "series": "kiakus", + "srgb_b": 0.354980541712737, + "srgb_g": 0.465230900713657, + "srgb_r": 0.556494226652486, + "texture_class": "silt loam", + "top": 0 + }, + { + "bottom": 28, + "cf_class": null, + "cielab_a": 5.59646217145787, + "cielab_b": 19.7307610177311, + "cielab_l": 40.9264484899888, + "hzname": "A2", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 4, + "series": "kiakus", + "srgb_b": 0.252653362523879, + "srgb_g": 0.362204899697049, + "srgb_r": 0.454695384023485, + "texture_class": "silt loam", + "top": 10 + }, + { + "bottom": 71, + "cf_class": null, + "cielab_a": 7.37766464830225, + "cielab_b": 16.7198534169627, + "cielab_l": 51.3967258207869, + "hzname": "Bt1", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 5, + "series": "kiakus", + "srgb_b": 0.370009311681262, + "srgb_g": 0.459709540670769, + "srgb_r": 0.567656651220777, + "texture_class": "silty clay loam", + "top": 28 + }, + { + "bottom": 84, + "cf_class": "gravelly", + "cielab_a": 7.37766464830225, + "cielab_b": 16.7198534169627, + "cielab_l": 51.3967258207869, + "hzname": "Bt2", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 5, + "series": "kiakus", + "srgb_b": 0.370009311681262, + "srgb_g": 0.459709540670769, + "srgb_r": 0.567656651220777, + "texture_class": "clay loam", + "top": 71 + }, + { + "bottom": 99, + "cf_class": null, + "cielab_a": null, + "cielab_b": null, + "cielab_l": null, + "hzname": "2R", + "matrix_dry_color_chroma": null, + "matrix_dry_color_hue": null, + "matrix_dry_color_value": null, + "series": "kiakus", + "srgb_b": null, + "srgb_g": null, + "srgb_r": null, + "texture_class": null, + "top": 84 + } + ], + "OSD_narrative": [ + { + "brief_narrative": "Landscape--plateaus, hills\nLandform--structural benches, hillslopes, ridgetops\nSlope--0 to 65 percent\nParent material--loess mixed with colluvium and residuum derived from basalt\nMean annual precipitation--about 530 mm\nMean annual air temperature--about 9 degrees C\nDepth class--deep, very deep\nDrainage class--well drained\nSoil moisture regime--xeric\nSoil temperature regime--mesic\nSoil moisture subclass--typic", + "series": "gunn" + }, + { + "brief_narrative": "The Itat series consists of very deep, well drained soils formed in residuum and colluvium derived from basalt mixed with minor amounts of loess and, in places, old alluvium. Itat soils are on hills and plateaus. Slopes are 5 to 45 percent. The mean annual precipitation is about 23 inches and mean annual temperature is about 48 degrees F.", + "series": "itat" + }, + { + "brief_narrative": "Landscape--plateaus\nLandform--benches, canyon breaks, mounds on terraces\nSlope--2 to 60 percent\nParent material--colluvium and residuum derived from basalt mixed with loess\nMean annual precipitation--about 560 mm\nMean annual air temperature--about 8 degrees C\nDepth class--moderately deep\nDrainage class--well drained\nSoil moisture regime--xeric\nSoil temperature regime--mesic\nSoil moisture subclass--typic", + "series": "kiakus" + } + ], + "hz": [ + { + "cec7_h": 20, + "cec7_l": 10, + "cec7_r": 15, + "chkey": 79323796, + "claytotal_h": 20, + "claytotal_l": 15, + "claytotal_r": 17.5, + "cokey": 26581758, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.26, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 15, + "hzdept_r": 0, + "hzname": "H1", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 76223, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.1, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 43, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 39.5, + "total_frag_volume": 9, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 11.2, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 26 + }, + { + "cec7_h": 20, + "cec7_l": 10, + "cec7_r": 15, + "chkey": 79323797, + "claytotal_h": 32, + "claytotal_l": 22, + "claytotal_r": 26, + "cokey": 26581758, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.52, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 46, + "hzdept_r": 15, + "hzname": "H2", + "lep_h": 5.9, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 76223, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.1, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 38, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 36, + "total_frag_volume": 5, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 15.2, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 29.4 + }, + { + "cec7_h": 25, + "cec7_l": 15, + "cec7_r": 20, + "chkey": 79323798, + "claytotal_h": 35, + "claytotal_l": 28, + "claytotal_r": 31.5, + "cokey": 26581758, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.73, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 152, + "hzdept_r": 46, + "hzname": "H3", + "lep_h": 5.9, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 76223, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.1, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 35.3, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 33.2, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 17.6, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 28.2 + }, + { + "cec7_h": 15, + "cec7_l": 5, + "cec7_r": 10, + "chkey": 79323799, + "claytotal_h": 20, + "claytotal_l": 15, + "claytotal_r": 17.5, + "cokey": 26581766, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.26, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 13, + "hzdept_r": 0, + "hzname": "H1", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 76225, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.1, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 43, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 39.5, + "total_frag_volume": 24, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 10.5, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 24.4 + }, + { + "cec7_h": 25, + "cec7_l": 10, + "cec7_r": 17.5, + "chkey": 79323800, + "claytotal_h": 32, + "claytotal_l": 22, + "claytotal_r": 26, + "cokey": 26581766, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.58, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 84, + "hzdept_r": 13, + "hzname": "H2", + "lep_h": 5.9, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 76225, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.1, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 38, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 36, + "total_frag_volume": 5, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 16.9, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 30.5 + }, + { + "cec7_h": 30, + "cec7_l": 15, + "cec7_r": 22.5, + "chkey": 79323801, + "claytotal_h": 35, + "claytotal_l": 28, + "claytotal_r": 31.5, + "cokey": 26581766, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": 1.74, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 152, + "hzdept_r": 84, + "hzname": "H3", + "lep_h": 5.9, + "lep_l": 3, + "lep_r": 4.5, + "mukey": 76225, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.1, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 35.3, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 33.2, + "total_frag_volume": 14, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": 16.6, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 26.8 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": null, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26581764, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": null, + "hzdept_r": null, + "hzname": null, + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 76225, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": null, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26581765, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": null, + "hzdept_r": null, + "hzname": null, + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 76225, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": null, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26581757, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": null, + "hzdept_r": null, + "hzname": null, + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 76223, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": null, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26581756, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": null, + "hzdept_r": null, + "hzname": null, + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 76223, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + } + ], + "spn": [ + { + "closest_pt_x": -121.0347381, + "closest_pt_y": 45.88932423, + "cokey": 26581758, + "compkind": "Series", + "compname": "gunn", + "comppct_r": 95, + "dist_meters": 0, + "elev_r": 565, + "irrcapcl": 3, + "irrcapscl": "e", + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 76223, + "nirrcapcl": 2, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 5, + "taxorder": "Alfisols", + "taxsubgrp": "Ultic Haploxeralfs", + "which": "a" + }, + { + "closest_pt_x": -121.0347381, + "closest_pt_y": 45.88932423, + "cokey": 26581757, + "compkind": "Series", + "compname": "kiakus", + "comppct_r": 3, + "dist_meters": 0, + "elev_r": null, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 76223, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": null, + "taxorder": null, + "taxsubgrp": null, + "which": "a" + }, + { + "closest_pt_x": -121.0347381, + "closest_pt_y": 45.88932423, + "cokey": 26581756, + "compkind": "Series", + "compname": "itat", + "comppct_r": 2, + "dist_meters": 0, + "elev_r": null, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 76223, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": null, + "taxorder": "Inceptisols", + "taxsubgrp": "Typic Haploxerepts", + "which": "a" + }, + { + "closest_pt_x": -121.03483037896436, + "closest_pt_y": 45.88894866900438, + "cokey": 26581766, + "compkind": "Series", + "compname": "gunn", + "comppct_r": 90, + "dist_meters": 42, + "elev_r": 500, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 76225, + "nirrcapcl": 4, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 19, + "taxorder": "Alfisols", + "taxsubgrp": "Ultic Haploxeralfs", + "which": "b" + }, + { + "closest_pt_x": -121.03483037896436, + "closest_pt_y": 45.88894866900438, + "cokey": 26581764, + "compkind": "Series", + "compname": "itat", + "comppct_r": 5, + "dist_meters": 42, + "elev_r": null, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 76225, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": null, + "taxorder": "Inceptisols", + "taxsubgrp": "Typic Haploxerepts", + "which": "b" + }, + { + "closest_pt_x": -121.03483037896436, + "closest_pt_y": 45.88894866900438, + "cokey": 26581765, + "compkind": "Series", + "compname": "kiakus", + "comppct_r": 5, + "dist_meters": 42, + "elev_r": null, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 76225, + "nirrcapcl": null, + "nirrcapscl": null, + "nirrcapunit": null, + "slope_r": null, + "taxorder": null, + "taxsubgrp": null, + "which": "b" + } + ] + } +} diff --git a/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[47.213922,-69.28246582].json b/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[47.213922,-69.28246582].json new file mode 100644 index 0000000..c4dd89b --- /dev/null +++ b/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[47.213922,-69.28246582].json @@ -0,0 +1,1735 @@ +{ + "elev": { + "location": { + "spatialReference": { + "latestWkid": 4326, + "wkid": 4326 + }, + "x": -69.28246582, + "y": 47.213922 + }, + "locationId": 0, + "rasterId": 60549, + "resolution": 1, + "value": "416.654968262" + }, + "soilweb": { + "ESD": [ + { + "cokey": 26560861, + "ecoclassid": "F143XY704ME", + "ecoclassname": "Shallow Organic Rock Pocket", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/143X/F143XY704ME" + }, + { + "cokey": 26560911, + "ecoclassid": "F143XY501ME", + "ecoclassname": "Loamy Slope", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/143X/F143XY501ME" + }, + { + "cokey": 26560912, + "ecoclassid": "F143XY501ME", + "ecoclassname": "Loamy Slope", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/143X/F143XY501ME" + }, + { + "cokey": 26560913, + "ecoclassid": "F143XY704ME", + "ecoclassname": "Shallow Organic Rock Pocket", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/143X/F143XY704ME" + }, + { + "cokey": 26560914, + "ecoclassid": "F143XY702ME", + "ecoclassname": "Shallow And Moderately Deep Till", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/143X/F143XY702ME" + }, + { + "cokey": 26560915, + "ecoclassid": "F143XY702ME", + "ecoclassname": "Shallow And Moderately Deep Till", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/143X/F143XY702ME" + } + ], + "OSD_morph": [ + { + "bottom": 3, + "cf_class": null, + "cielab_a": 3.03964776951091, + "cielab_b": 4.81088954371305, + "cielab_l": 40.893588788738, + "hzname": "Oa", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 4, + "series": "chesuncook", + "srgb_b": 0.347828844601866, + "srgb_g": 0.370493610277408, + "srgb_r": 0.410580229253493, + "texture_class": null, + "top": 0 + }, + { + "bottom": 10, + "cf_class": null, + "cielab_a": 4.41373370516107, + "cielab_b": 11.5190802771938, + "cielab_l": 71.5329441752543, + "hzname": "E", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 7, + "series": "chesuncook", + "srgb_b": 0.60602220449204, + "srgb_g": 0.673682984872979, + "srgb_r": 0.751631964480583, + "texture_class": "silt loam", + "top": 3 + }, + { + "bottom": 13, + "cf_class": null, + "cielab_a": 9.02133057946997, + "cielab_b": 14.8676602566038, + "cielab_l": 51.3913630066119, + "hzname": "Bhs", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 5, + "series": "chesuncook", + "srgb_b": 0.382644062180627, + "srgb_g": 0.456104625281809, + "srgb_r": 0.57400009550616, + "texture_class": "silt loam", + "top": 10 + }, + { + "bottom": 27, + "cf_class": null, + "cielab_a": 11.5287289701211, + "cielab_b": 19.945123635805, + "cielab_l": 61.5800946425975, + "hzname": "Bs1", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 6, + "series": "chesuncook", + "srgb_b": 0.447454988119342, + "srgb_g": 0.550964051886174, + "srgb_r": 0.707333768098213, + "texture_class": "silt loam", + "top": 13 + }, + { + "bottom": 45, + "cf_class": "gravelly", + "cielab_a": 5.76704039721426, + "cielab_b": 25.325825465666, + "cielab_l": 61.5954494798993, + "hzname": "Bs2", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "chesuncook", + "srgb_b": 0.408818876581867, + "srgb_g": 0.564248474767131, + "srgb_r": 0.681677226481998, + "texture_class": "silt loam", + "top": 27 + }, + { + "bottom": 53, + "cf_class": "gravelly", + "cielab_a": 2.13842469597725, + "cielab_b": 27.4679800212948, + "cielab_l": 61.6021478744143, + "hzname": "BC", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 6, + "series": "chesuncook", + "srgb_b": 0.392947209884661, + "srgb_g": 0.572418528215225, + "srgb_r": 0.662861082252112, + "texture_class": "loam", + "top": 45 + }, + { + "bottom": 165, + "cf_class": "gravelly", + "cielab_a": 1.35288254510624, + "cielab_b": 20.7280825303816, + "cielab_l": 61.5889622491912, + "hzname": "Cd", + "matrix_dry_color_chroma": 3, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 6, + "series": "chesuncook", + "srgb_b": 0.440190474142481, + "srgb_g": 0.575322240237554, + "srgb_r": 0.645238061865951, + "texture_class": "loam", + "top": 53 + }, + { + "bottom": 3, + "cf_class": null, + "cielab_a": 7.00626888407088, + "cielab_b": 10.4146990909137, + "cielab_l": 40.9052196322005, + "hzname": "Oa", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 4, + "series": "elliottsville", + "srgb_b": 0.312824819877818, + "srgb_g": 0.360560687425871, + "srgb_r": 0.446642669467142, + "texture_class": null, + "top": 0 + }, + { + "bottom": 5, + "cf_class": null, + "cielab_a": 3.85503664928699, + "cielab_b": 11.5581587634576, + "cielab_l": 81.3229749912725, + "hzname": "E", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 8, + "series": "elliottsville", + "srgb_b": 0.708628670715425, + "srgb_g": 0.779827530553503, + "srgb_r": 0.855246486413984, + "texture_class": "silt loam", + "top": 3 + }, + { + "bottom": 10, + "cf_class": null, + "cielab_a": 12.0187023642853, + "cielab_b": 20.083427492453, + "cielab_l": 51.4005810940307, + "hzname": "Bh", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 5, + "series": "elliottsville", + "srgb_b": 0.348301053829705, + "srgb_g": 0.447730036366018, + "srgb_r": 0.600629634680312, + "texture_class": "silt loam", + "top": 5 + }, + { + "bottom": 28, + "cf_class": "flaggy", + "cielab_a": 11.5014599916651, + "cielab_b": 28.325261542155, + "cielab_l": 61.597165598456, + "hzname": "Bs", + "matrix_dry_color_chroma": 5, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 6, + "series": "elliottsville", + "srgb_b": 0.388850649681818, + "srgb_g": 0.549571672657322, + "srgb_r": 0.72119995788861, + "texture_class": "loam", + "top": 10 + }, + { + "bottom": 43, + "cf_class": "channery", + "cielab_a": 2.99934922075612, + "cielab_b": 34.4225257289827, + "cielab_l": 61.6140101620951, + "hzname": "BC", + "matrix_dry_color_chroma": 5, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 6, + "series": "elliottsville", + "srgb_b": 0.343045640565605, + "srgb_g": 0.569413878055385, + "srgb_r": 0.679274559657146, + "texture_class": "loam", + "top": 28 + }, + { + "bottom": 66, + "cf_class": "channery", + "cielab_a": -1.79729074072404, + "cielab_b": 28.9038496819158, + "cielab_l": 61.6075288682941, + "hzname": "C", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "5Y", + "matrix_dry_color_value": 6, + "series": "elliottsville", + "srgb_b": 0.381900458098106, + "srgb_g": 0.58106302243498, + "srgb_r": 0.640485723833725, + "texture_class": "loam", + "top": 43 + }, + { + "bottom": 81, + "cf_class": null, + "cielab_a": null, + "cielab_b": null, + "cielab_l": null, + "hzname": "R", + "matrix_dry_color_chroma": null, + "matrix_dry_color_hue": null, + "matrix_dry_color_value": null, + "series": "elliottsville", + "srgb_b": null, + "srgb_g": null, + "srgb_r": null, + "texture_class": null, + "top": 66 + }, + { + "bottom": 8, + "cf_class": null, + "cielab_a": 7.00626888407088, + "cielab_b": 10.4146990909137, + "cielab_l": 40.9052196322005, + "hzname": "Oe", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 4, + "series": "knob lock", + "srgb_b": 0.312824819877818, + "srgb_g": 0.360560687425871, + "srgb_r": 0.446642669467142, + "texture_class": null, + "top": 0 + }, + { + "bottom": 18, + "cf_class": null, + "cielab_a": 3.03964776951091, + "cielab_b": 4.81088954371305, + "cielab_l": 40.893588788738, + "hzname": "Oa", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 4, + "series": "knob lock", + "srgb_b": 0.347828844601866, + "srgb_g": 0.370493610277408, + "srgb_r": 0.410580229253493, + "texture_class": null, + "top": 8 + }, + { + "bottom": 23, + "cf_class": null, + "cielab_a": 5.98614970870492, + "cielab_b": 10.0842871115546, + "cielab_l": 61.5605193508719, + "hzname": "Bs", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 6, + "series": "knob lock", + "srgb_b": 0.514428436573233, + "srgb_g": 0.566592838322803, + "srgb_r": 0.651826223067527, + "texture_class": "very fine sandy loam", + "top": 18 + }, + { + "bottom": 38, + "cf_class": null, + "cielab_a": null, + "cielab_b": null, + "cielab_l": null, + "hzname": "R", + "matrix_dry_color_chroma": null, + "matrix_dry_color_hue": null, + "matrix_dry_color_value": null, + "series": "knob lock", + "srgb_b": null, + "srgb_g": null, + "srgb_r": null, + "texture_class": null, + "top": 23 + }, + { + "bottom": 10, + "cf_class": null, + "cielab_a": 7.00626888407088, + "cielab_b": 10.4146990909137, + "cielab_l": 40.9052196322005, + "hzname": "Oa", + "matrix_dry_color_chroma": 2, + "matrix_dry_color_hue": "5YR", + "matrix_dry_color_value": 4, + "series": "monson", + "srgb_b": 0.312824819877818, + "srgb_g": 0.360560687425871, + "srgb_r": 0.446642669467142, + "texture_class": null, + "top": 0 + }, + { + "bottom": 13, + "cf_class": "channery", + "cielab_a": 1.04219683490708, + "cielab_b": 7.1047602136578, + "cielab_l": 81.3128871284898, + "hzname": "E", + "matrix_dry_color_chroma": 1, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 8, + "series": "monson", + "srgb_b": 0.740512439440642, + "srgb_g": 0.787615918671633, + "srgb_r": 0.822320274031211, + "texture_class": "silt loam", + "top": 10 + }, + { + "bottom": 15, + "cf_class": null, + "cielab_a": 15.7829240472477, + "cielab_b": 17.5103819878438, + "cielab_l": 40.914515847679, + "hzname": "Bh", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "2.5YR", + "matrix_dry_color_value": 4, + "series": "monson", + "srgb_b": 0.268997188895341, + "srgb_g": 0.337543631709207, + "srgb_r": 0.506961445664423, + "texture_class": "silt loam", + "top": 13 + }, + { + "bottom": 23, + "cf_class": null, + "cielab_a": 9.31189329898768, + "cielab_b": 22.4496446381707, + "cielab_l": 61.5870610331128, + "hzname": "Bs1", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "7.5YR", + "matrix_dry_color_value": 6, + "series": "monson", + "srgb_b": 0.429645085489254, + "srgb_g": 0.556090686344839, + "srgb_r": 0.69835386071579, + "texture_class": "silt loam", + "top": 15 + }, + { + "bottom": 28, + "cf_class": null, + "cielab_a": 10.4894365208519, + "cielab_b": 44.7029545660413, + "cielab_l": 61.624195732947, + "hzname": "Bs2", + "matrix_dry_color_chroma": 7, + "matrix_dry_color_hue": "10YR", + "matrix_dry_color_value": 6, + "series": "monson", + "srgb_b": 0.267279812308455, + "srgb_g": 0.549895076567578, + "srgb_r": 0.736390592515428, + "texture_class": "silt loam", + "top": 23 + }, + { + "bottom": 48, + "cf_class": "channery", + "cielab_a": 2.13842469597725, + "cielab_b": 27.4679800212948, + "cielab_l": 61.6021478744143, + "hzname": "BC", + "matrix_dry_color_chroma": 4, + "matrix_dry_color_hue": "2.5Y", + "matrix_dry_color_value": 6, + "series": "monson", + "srgb_b": 0.392947209884661, + "srgb_g": 0.572418528215225, + "srgb_r": 0.662861082252112, + "texture_class": "silt loam", + "top": 28 + }, + { + "bottom": 63, + "cf_class": null, + "cielab_a": null, + "cielab_b": null, + "cielab_l": null, + "hzname": "R", + "matrix_dry_color_chroma": null, + "matrix_dry_color_hue": null, + "matrix_dry_color_value": null, + "series": "monson", + "srgb_b": null, + "srgb_g": null, + "srgb_r": null, + "texture_class": null, + "top": 48 + } + ], + "OSD_narrative": [ + { + "brief_narrative": "The Chesuncook series consists of very deep, moderately well drained soils on till plains, hills, ridges, and mountains. These soils formed in dense glacial till. Saturated hydraulic conductivity is moderately high or high in the solum, and low to moderately high in the dense substratum. Slope ranges from 3 to 45 percent. Mean annual temperature is about 4 degrees C, and mean annual precipitation is about 1092 mm at the type location.", + "series": "chesuncook" + }, + { + "brief_narrative": "The Elliottsville series consists of moderately deep, well drained soils formed in glacial till on till plains, hills, ridges and mountains. Permeability is moderate. Slope ranges from 3 to 65 percent. Mean annual temperature is about 3 degrees C, and mean annual precipitation is about 970 mm at the type location.", + "series": "elliottsville" + }, + { + "brief_narrative": "The Knob Lock series consists of very shallow and shallow, well drained through excessively drained organic soils on mountains and hills. They formed in thin organic deposits underlain in most places by a very thin mineral horizon over bedrock. Saturated hydraulic conductivity is moderately high through very high throughout the soil. Slope ranges from 3 through 80 percent. Mean annual precipitation is about 1092 mm and mean annual temperature is about 5 degrees C.", + "series": "knob lock" + }, + { + "brief_narrative": "The Monson series consists of shallow, somewhat excessively drained soils formed in glacial till on knolls of till plains, and on hills, ridges and mountains. Estimated saturated hydraulic conductivity is moderate or high. Slope ranges from 3 to 60 percent. Mean annual temperature is about 3 degrees C, and mean annual precipitation is about 965 mm at the type location.", + "series": "monson" + } + ], + "hz": [ + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79252811, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26560912, + "dbovendry_h": 0.24, + "dbovendry_l": 0.2, + "dbovendry_r": 0.22, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 28, + "ecec_l": 8, + "ecec_r": 15, + "hzdepb_r": 5, + "hzdept_r": 0, + "hzname": "Oa", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 2549860, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 4, + "wfifteenbar_h": 15.1, + "wfifteenbar_l": 5.9, + "wfifteenbar_r": 9, + "wthirdbar_h": 56.2, + "wthirdbar_l": 44.5, + "wthirdbar_r": 50.4 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79252812, + "claytotal_h": 18, + "claytotal_l": 7, + "claytotal_r": 10, + "cokey": 26560912, + "dbovendry_h": 1.39, + "dbovendry_l": 0.74, + "dbovendry_r": 1.14, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 28.1, + "ecec_l": 4.5, + "ecec_r": 10.3, + "hzdepb_r": 10, + "hzdept_r": 5, + "hzname": "E", + "lep_h": 1.9, + "lep_l": 0.5, + "lep_r": 1, + "mukey": 2549860, + "ph1to1h2o_h": 6, + "ph1to1h2o_l": 3.4, + "ph1to1h2o_r": 4.2, + "sandtotal_h": 43, + "sandtotal_l": 20, + "sandtotal_r": 35, + "silttotal_h": 72, + "silttotal_l": 50, + "silttotal_r": 55, + "total_frag_volume": 12, + "wfifteenbar_h": 12.4, + "wfifteenbar_l": 3.1, + "wfifteenbar_r": 6.5, + "wthirdbar_h": 26.9, + "wthirdbar_l": 14.3, + "wthirdbar_r": 20.4 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79252813, + "claytotal_h": 18, + "claytotal_l": 10, + "claytotal_r": 12, + "cokey": 26560912, + "dbovendry_h": 1.34, + "dbovendry_l": 0.74, + "dbovendry_r": 1.04, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 20, + "ecec_l": 8.3, + "ecec_r": 12.5, + "hzdepb_r": 51, + "hzdept_r": 10, + "hzname": "Bs", + "lep_h": 2.2, + "lep_l": 0.6, + "lep_r": 1.1, + "mukey": 2549860, + "ph1to1h2o_h": 6, + "ph1to1h2o_l": 3.4, + "ph1to1h2o_r": 5.1, + "sandtotal_h": 52, + "sandtotal_l": 21, + "sandtotal_r": 36, + "silttotal_h": 69, + "silttotal_l": 38, + "silttotal_r": 52, + "total_frag_volume": 15, + "wfifteenbar_h": 16.1, + "wfifteenbar_l": 5.2, + "wfifteenbar_r": 8.6, + "wthirdbar_h": 29.5, + "wthirdbar_l": 17, + "wthirdbar_r": 22 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79252814, + "claytotal_h": 18, + "claytotal_l": 10, + "claytotal_r": 14, + "cokey": 26560912, + "dbovendry_h": 1.64, + "dbovendry_l": 1.34, + "dbovendry_r": 1.49, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 11.7, + "ecec_l": 4.1, + "ecec_r": 7.8, + "hzdepb_r": 61, + "hzdept_r": 51, + "hzname": "BC", + "lep_h": 1.6, + "lep_l": 0.3, + "lep_r": 0.8, + "mukey": 2549860, + "ph1to1h2o_h": 6, + "ph1to1h2o_l": 3.4, + "ph1to1h2o_r": 5.3, + "sandtotal_h": 52, + "sandtotal_l": 21, + "sandtotal_r": 38, + "silttotal_h": 69, + "silttotal_l": 38, + "silttotal_r": 48, + "total_frag_volume": 20, + "wfifteenbar_h": 11.8, + "wfifteenbar_l": 3.9, + "wfifteenbar_r": 7.6, + "wthirdbar_h": 25.5, + "wthirdbar_l": 14.2, + "wthirdbar_r": 20.3 + }, + { + "cec7_h": 12.2, + "cec7_l": 3.7, + "cec7_r": 7.5, + "chkey": 79252815, + "claytotal_h": 18, + "claytotal_l": 10, + "claytotal_r": 14, + "cokey": 26560912, + "dbovendry_h": 1.95, + "dbovendry_l": 1.65, + "dbovendry_r": 1.85, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 165, + "hzdept_r": 61, + "hzname": "Cd", + "lep_h": 1.2, + "lep_l": 0.3, + "lep_r": 0.7, + "mukey": 2549860, + "ph1to1h2o_h": 7.3, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 5.8, + "sandtotal_h": 52, + "sandtotal_l": 21, + "sandtotal_r": 39, + "silttotal_h": 69, + "silttotal_l": 38, + "silttotal_r": 47, + "total_frag_volume": 20, + "wfifteenbar_h": 12.4, + "wfifteenbar_l": 4.8, + "wfifteenbar_r": 8.4, + "wthirdbar_h": 26, + "wthirdbar_l": 15.2, + "wthirdbar_r": 21 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79252043, + "claytotal_h": 25, + "claytotal_l": 0, + "claytotal_r": 20, + "cokey": 26560861, + "dbovendry_h": 0.13, + "dbovendry_l": 0.03, + "dbovendry_r": 0.06, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 39.8, + "ecec_l": 18.8, + "ecec_r": 29.5, + "hzdepb_r": 20, + "hzdept_r": 0, + "hzname": "Oe", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 2549870, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": 30, + "sandtotal_l": 20, + "sandtotal_r": 26, + "silttotal_h": 71.5, + "silttotal_l": 45, + "silttotal_r": 54, + "total_frag_volume": 0, + "wfifteenbar_h": 19.7, + "wfifteenbar_l": 8.3, + "wfifteenbar_r": 14, + "wthirdbar_h": 51.7, + "wthirdbar_l": 45.7, + "wthirdbar_r": 49.3 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79252044, + "claytotal_h": 15, + "claytotal_l": 3, + "claytotal_r": 8, + "cokey": 26560861, + "dbovendry_h": 1.4, + "dbovendry_l": 0.74, + "dbovendry_r": 1.02, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 13.3, + "ecec_l": 0, + "ecec_r": 5.1, + "hzdepb_r": 25, + "hzdept_r": 20, + "hzname": "H", + "lep_h": 2.9, + "lep_l": 0, + "lep_r": 1.5, + "mukey": 2549870, + "ph1to1h2o_h": 5, + "ph1to1h2o_l": 3.5, + "ph1to1h2o_r": 4.4, + "sandtotal_h": 52, + "sandtotal_l": 7, + "sandtotal_r": 47, + "silttotal_h": 63.5, + "silttotal_l": 33, + "silttotal_r": 45, + "total_frag_volume": 0, + "wfifteenbar_h": 18.4, + "wfifteenbar_l": null, + "wfifteenbar_r": 8.7, + "wthirdbar_h": 32, + "wthirdbar_l": null, + "wthirdbar_r": 19.6 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79252045, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26560861, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 50, + "hzdept_r": 25, + "hzname": "R", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 2549870, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79252862, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26560914, + "dbovendry_h": 0.24, + "dbovendry_l": 0.2, + "dbovendry_r": 0.22, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 28, + "ecec_l": 8, + "ecec_r": 15, + "hzdepb_r": 10, + "hzdept_r": 0, + "hzname": "Oa", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 2549867, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 4, + "wfifteenbar_h": 15.1, + "wfifteenbar_l": 5.9, + "wfifteenbar_r": 9, + "wthirdbar_h": 56.2, + "wthirdbar_l": 44.5, + "wthirdbar_r": 50.4 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79252865, + "claytotal_h": 20, + "claytotal_l": 7, + "claytotal_r": 9, + "cokey": 26560914, + "dbovendry_h": 1.43, + "dbovendry_l": 1.13, + "dbovendry_r": 1.23, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 25.1, + "ecec_l": 2.9, + "ecec_r": 7.7, + "hzdepb_r": 13, + "hzdept_r": 10, + "hzname": "E", + "lep_h": 1.8, + "lep_l": 0.5, + "lep_r": 0.7, + "mukey": 2549867, + "ph1to1h2o_h": 6, + "ph1to1h2o_l": 3.6, + "ph1to1h2o_r": 4.2, + "sandtotal_h": 52, + "sandtotal_l": 21, + "sandtotal_r": 42, + "silttotal_h": 72, + "silttotal_l": 28, + "silttotal_r": 49, + "total_frag_volume": 15, + "wfifteenbar_h": 12.3, + "wfifteenbar_l": 2.8, + "wfifteenbar_r": 5.4, + "wthirdbar_h": 26.9, + "wthirdbar_l": 13.2, + "wthirdbar_r": 18.7 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79252866, + "claytotal_h": 20, + "claytotal_l": 7, + "claytotal_r": 12, + "cokey": 26560914, + "dbovendry_h": 1.38, + "dbovendry_l": 1.08, + "dbovendry_r": 1.18, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 20.4, + "ecec_l": 6.7, + "ecec_r": 12, + "hzdepb_r": 28, + "hzdept_r": 13, + "hzname": "Bs", + "lep_h": 1.8, + "lep_l": 0.5, + "lep_r": 0.9, + "mukey": 2549867, + "ph1to1h2o_h": 6, + "ph1to1h2o_l": 3.6, + "ph1to1h2o_r": 4.8, + "sandtotal_h": 52, + "sandtotal_l": 21, + "sandtotal_r": 42, + "silttotal_h": 72, + "silttotal_l": 28, + "silttotal_r": 46, + "total_frag_volume": 10, + "wfifteenbar_h": 18.8, + "wfifteenbar_l": 4.6, + "wfifteenbar_r": 10.5, + "wthirdbar_h": 31.2, + "wthirdbar_l": 15.5, + "wthirdbar_r": 24.5 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79252863, + "claytotal_h": 20, + "claytotal_l": 7, + "claytotal_r": 10, + "cokey": 26560914, + "dbovendry_h": 1.33, + "dbovendry_l": 1.03, + "dbovendry_r": 1.13, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 12.4, + "ecec_l": 4, + "ecec_r": 7.5, + "hzdepb_r": 48, + "hzdept_r": 28, + "hzname": "BC", + "lep_h": 1.7, + "lep_l": 0.4, + "lep_r": 0.6, + "mukey": 2549867, + "ph1to1h2o_h": 6, + "ph1to1h2o_l": 3.6, + "ph1to1h2o_r": 5.1, + "sandtotal_h": 52, + "sandtotal_l": 21, + "sandtotal_r": 46, + "silttotal_h": 72, + "silttotal_l": 28, + "silttotal_r": 44, + "total_frag_volume": 25, + "wfifteenbar_h": 10.3, + "wfifteenbar_l": 2.4, + "wfifteenbar_r": 4.8, + "wthirdbar_h": 25.3, + "wthirdbar_l": 12, + "wthirdbar_r": 16.6 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79252864, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26560914, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 48, + "hzname": "R", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 2549867, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79252810, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26560911, + "dbovendry_h": 0.24, + "dbovendry_l": 0.2, + "dbovendry_r": 0.22, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 28, + "ecec_l": 8, + "ecec_r": 15, + "hzdepb_r": 5, + "hzdept_r": 0, + "hzname": "Oa", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 2549860, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 4, + "wfifteenbar_h": 15.1, + "wfifteenbar_l": 5.9, + "wfifteenbar_r": 9, + "wthirdbar_h": 56.2, + "wthirdbar_l": 44.5, + "wthirdbar_r": 50.4 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79252806, + "claytotal_h": 18, + "claytotal_l": 7, + "claytotal_r": 12, + "cokey": 26560911, + "dbovendry_h": 1.33, + "dbovendry_l": 0.73, + "dbovendry_r": 1.03, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 21.8, + "ecec_l": 2.8, + "ecec_r": 9.2, + "hzdepb_r": 8, + "hzdept_r": 5, + "hzname": "E", + "lep_h": 1.8, + "lep_l": 0.4, + "lep_r": 1, + "mukey": 2549860, + "ph1to1h2o_h": 5.5, + "ph1to1h2o_l": 3.4, + "ph1to1h2o_r": 4, + "sandtotal_h": 52, + "sandtotal_l": 21, + "sandtotal_r": 38, + "silttotal_h": 72, + "silttotal_l": 30, + "silttotal_r": 50, + "total_frag_volume": 10, + "wfifteenbar_h": 9.7, + "wfifteenbar_l": 2.2, + "wfifteenbar_r": 5.9, + "wthirdbar_h": 25.1, + "wthirdbar_l": 11.5, + "wthirdbar_r": 19.9 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79252807, + "claytotal_h": 18, + "claytotal_l": 10, + "claytotal_r": 12, + "cokey": 26560911, + "dbovendry_h": 1.34, + "dbovendry_l": 0.74, + "dbovendry_r": 1.04, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 19.6, + "ecec_l": 7.6, + "ecec_r": 11.4, + "hzdepb_r": 53, + "hzdept_r": 8, + "hzname": "Bs", + "lep_h": 2.1, + "lep_l": 0.6, + "lep_r": 1, + "mukey": 2549860, + "ph1to1h2o_h": 5.5, + "ph1to1h2o_l": 3.4, + "ph1to1h2o_r": 4.6, + "sandtotal_h": 52, + "sandtotal_l": 21, + "sandtotal_r": 42, + "silttotal_h": 69, + "silttotal_l": 30, + "silttotal_r": 46, + "total_frag_volume": 15, + "wfifteenbar_h": 15.7, + "wfifteenbar_l": 4.6, + "wfifteenbar_r": 7.7, + "wthirdbar_h": 29.3, + "wthirdbar_l": 15, + "wthirdbar_r": 20.4 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79252808, + "claytotal_h": 18, + "claytotal_l": 10, + "claytotal_r": 14, + "cokey": 26560911, + "dbovendry_h": 1.54, + "dbovendry_l": 1.04, + "dbovendry_r": 1.14, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 12.3, + "ecec_l": 3.4, + "ecec_r": 8.6, + "hzdepb_r": 76, + "hzdept_r": 53, + "hzname": "C", + "lep_h": 1.7, + "lep_l": 0.3, + "lep_r": 0.9, + "mukey": 2549860, + "ph1to1h2o_h": 6, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 5.3, + "sandtotal_h": 52, + "sandtotal_l": 21, + "sandtotal_r": 42, + "silttotal_h": 69, + "silttotal_l": 30, + "silttotal_r": 44, + "total_frag_volume": 15, + "wfifteenbar_h": 10, + "wfifteenbar_l": 3, + "wfifteenbar_r": 6.8, + "wthirdbar_h": 25, + "wthirdbar_l": 12.9, + "wthirdbar_r": 20.3 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79252809, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26560911, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 76, + "hzname": "R", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 2549860, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79252846, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26560913, + "dbovendry_h": 0.24, + "dbovendry_l": 0.2, + "dbovendry_r": 0.22, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 28, + "ecec_l": 8, + "ecec_r": 15, + "hzdepb_r": 20, + "hzdept_r": 0, + "hzname": "Oe", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 2549867, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 3, + "wfifteenbar_h": 17.6, + "wfifteenbar_l": 7.3, + "wfifteenbar_r": 10.6, + "wthirdbar_h": 53, + "wthirdbar_l": 37.1, + "wthirdbar_r": 43.3 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79252845, + "claytotal_h": 12, + "claytotal_l": 3, + "claytotal_r": 8, + "cokey": 26560913, + "dbovendry_h": 1.43, + "dbovendry_l": 1.13, + "dbovendry_r": 1.28, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 15.9, + "ecec_l": 2.5, + "ecec_r": 8.4, + "hzdepb_r": 25, + "hzdept_r": 20, + "hzname": "E", + "lep_h": 1.3, + "lep_l": 0.2, + "lep_r": 0.7, + "mukey": 2549867, + "ph1to1h2o_h": 5, + "ph1to1h2o_l": 3.4, + "ph1to1h2o_r": 4.2, + "sandtotal_h": 69, + "sandtotal_l": 40, + "sandtotal_r": 51, + "silttotal_h": 50, + "silttotal_l": 28, + "silttotal_r": 41, + "total_frag_volume": 5, + "wfifteenbar_h": 12, + "wfifteenbar_l": 2.6, + "wfifteenbar_r": 7.8, + "wthirdbar_h": 27.5, + "wthirdbar_l": 12.3, + "wthirdbar_r": 22.9 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79252844, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26560913, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 25, + "hzname": "R", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 2549867, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79252848, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26560915, + "dbovendry_h": 0.24, + "dbovendry_l": 0.2, + "dbovendry_r": 0.22, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 28, + "ecec_l": 8, + "ecec_r": 15, + "hzdepb_r": 5, + "hzdept_r": 0, + "hzname": "Oa", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 2549867, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 4, + "wfifteenbar_h": 15.1, + "wfifteenbar_l": 5.9, + "wfifteenbar_r": 9, + "wthirdbar_h": 56.2, + "wthirdbar_l": 44.5, + "wthirdbar_r": 50.4 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79252849, + "claytotal_h": 18, + "claytotal_l": 7, + "claytotal_r": 12, + "cokey": 26560915, + "dbovendry_h": 1.33, + "dbovendry_l": 0.73, + "dbovendry_r": 1.03, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 21.8, + "ecec_l": 2.8, + "ecec_r": 9.2, + "hzdepb_r": 8, + "hzdept_r": 5, + "hzname": "E", + "lep_h": 1.7, + "lep_l": 0.4, + "lep_r": 0.9, + "mukey": 2549867, + "ph1to1h2o_h": 5.5, + "ph1to1h2o_l": 3.4, + "ph1to1h2o_r": 4, + "sandtotal_h": 52, + "sandtotal_l": 21, + "sandtotal_r": 38, + "silttotal_h": 72, + "silttotal_l": 30, + "silttotal_r": 50, + "total_frag_volume": 10, + "wfifteenbar_h": 9.7, + "wfifteenbar_l": 2.2, + "wfifteenbar_r": 5.9, + "wthirdbar_h": 25.1, + "wthirdbar_l": 11.5, + "wthirdbar_r": 19.9 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79252850, + "claytotal_h": 18, + "claytotal_l": 10, + "claytotal_r": 12, + "cokey": 26560915, + "dbovendry_h": 1.33, + "dbovendry_l": 0.73, + "dbovendry_r": 1.03, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 19.6, + "ecec_l": 7.6, + "ecec_r": 11.4, + "hzdepb_r": 53, + "hzdept_r": 8, + "hzname": "Bs", + "lep_h": 1.7, + "lep_l": 0.5, + "lep_r": 0.9, + "mukey": 2549867, + "ph1to1h2o_h": 5.5, + "ph1to1h2o_l": 3.4, + "ph1to1h2o_r": 4.6, + "sandtotal_h": 52, + "sandtotal_l": 21, + "sandtotal_r": 42, + "silttotal_h": 69, + "silttotal_l": 30, + "silttotal_r": 46, + "total_frag_volume": 15, + "wfifteenbar_h": 15.7, + "wfifteenbar_l": 4.6, + "wfifteenbar_r": 8.1, + "wthirdbar_h": 29.3, + "wthirdbar_l": 15, + "wthirdbar_r": 21.6 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79252851, + "claytotal_h": 18, + "claytotal_l": 10, + "claytotal_r": 14, + "cokey": 26560915, + "dbovendry_h": 1.54, + "dbovendry_l": 1.04, + "dbovendry_r": 1.14, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 12.3, + "ecec_l": 3.4, + "ecec_r": 8.6, + "hzdepb_r": 76, + "hzdept_r": 53, + "hzname": "C", + "lep_h": 1.6, + "lep_l": 0.5, + "lep_r": 0.9, + "mukey": 2549867, + "ph1to1h2o_h": 6, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 5.3, + "sandtotal_h": 52, + "sandtotal_l": 21, + "sandtotal_r": 42, + "silttotal_h": 69, + "silttotal_l": 30, + "silttotal_r": 44, + "total_frag_volume": 15, + "wfifteenbar_h": 10, + "wfifteenbar_l": 3, + "wfifteenbar_r": 6.8, + "wthirdbar_h": 25, + "wthirdbar_l": 12.9, + "wthirdbar_r": 20.3 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79252847, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26560915, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 200, + "hzdept_r": 76, + "hzname": "R", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 2549867, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + } + ], + "spn": [ + { + "closest_pt_x": -69.28246582, + "closest_pt_y": 47.213922, + "cokey": 26560861, + "compkind": "Series", + "compname": "knob lock", + "comppct_r": 46, + "dist_meters": 0, + "elev_r": 378, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 2549870, + "nirrcapcl": 7, + "nirrcapscl": "s", + "nirrcapunit": null, + "slope_r": 40, + "taxorder": "Histosols", + "taxsubgrp": "Lithic Udifolists", + "which": "a" + }, + { + "closest_pt_x": -69.28261996883907, + "closest_pt_y": 47.213768554685394, + "cokey": 26560912, + "compkind": "Series", + "compname": "chesuncook", + "comppct_r": 50, + "dist_meters": 19, + "elev_r": 405, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 2549860, + "nirrcapcl": 6, + "nirrcapscl": "s", + "nirrcapunit": null, + "slope_r": 20, + "taxorder": "Spodosols", + "taxsubgrp": "Aquic Haplorthods", + "which": "b" + }, + { + "closest_pt_x": -69.28261996883907, + "closest_pt_y": 47.213768554685394, + "cokey": 26560911, + "compkind": "Series", + "compname": "elliottsville", + "comppct_r": 35, + "dist_meters": 19, + "elev_r": 405, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 2549860, + "nirrcapcl": 6, + "nirrcapscl": "s", + "nirrcapunit": null, + "slope_r": 25, + "taxorder": "Spodosols", + "taxsubgrp": "Typic Haplorthods", + "which": "b" + }, + { + "closest_pt_x": -69.2800646066387, + "closest_pt_y": 47.2133686113518, + "cokey": 26560914, + "compkind": "Series", + "compname": "monson", + "comppct_r": 40, + "dist_meters": 192, + "elev_r": 405, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 2549867, + "nirrcapcl": 6, + "nirrcapscl": "s", + "nirrcapunit": null, + "slope_r": 40, + "taxorder": "Spodosols", + "taxsubgrp": "Lithic Haplorthods", + "which": "b" + }, + { + "closest_pt_x": -69.2800646066387, + "closest_pt_y": 47.2133686113518, + "cokey": 26560913, + "compkind": "Series", + "compname": "knob lock", + "comppct_r": 25, + "dist_meters": 192, + "elev_r": 405, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 2549867, + "nirrcapcl": 7, + "nirrcapscl": "s", + "nirrcapunit": null, + "slope_r": 50, + "taxorder": "Histosols", + "taxsubgrp": "Lithic Udifolists", + "which": "b" + }, + { + "closest_pt_x": -69.2800646066387, + "closest_pt_y": 47.2133686113518, + "cokey": 26560915, + "compkind": "Series", + "compname": "elliottsville", + "comppct_r": 20, + "dist_meters": 192, + "elev_r": 405, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 2549867, + "nirrcapcl": 6, + "nirrcapscl": "s", + "nirrcapunit": null, + "slope_r": 40, + "taxorder": "Spodosols", + "taxsubgrp": "Typic Haplorthods", + "which": "b" + } + ] + } +} diff --git a/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[48.6956,-121.8166].json b/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[48.6956,-121.8166].json new file mode 100644 index 0000000..3e1e2cf --- /dev/null +++ b/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[48.6956,-121.8166].json @@ -0,0 +1,869 @@ +{ + "elev": { + "location": { + "spatialReference": { + "latestWkid": 4326, + "wkid": 4326 + }, + "x": -121.8166, + "y": 48.6956 + }, + "locationId": 0, + "rasterId": 124851, + "resolution": 1, + "value": "939.959960938" + }, + "soilweb": { + "ESD": [ + { + "cokey": 26612815, + "ecoclassid": "F003XN924WA", + "ecoclassname": "Low Cryic/Udic West Coniferous ", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/003X/F003XN924WA" + }, + { + "cokey": 26612823, + "ecoclassid": "R003XN613WA", + "ecoclassname": "Low Mountain Unforested Wetlands", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/003X/R003XN613WA" + }, + { + "cokey": 26612824, + "ecoclassid": "F003XA305WA", + "ecoclassname": "Low Glacial Trough Valleys Moist Forest western hemlock", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/003X/F003XA305WA" + } + ], + "OSD_morph": [], + "OSD_narrative": [], + "hz": [ + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79427916, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26612815, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 37.1, + "ecec_l": 10.8, + "ecec_r": 22.5, + "hzdepb_r": 3, + "hzdept_r": 0, + "hzname": "Oi", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 3418436, + "ph1to1h2o_h": 5.5, + "ph1to1h2o_l": 3.5, + "ph1to1h2o_r": 4.5, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": 19.2, + "wfifteenbar_l": 12.7, + "wfifteenbar_r": 15.5, + "wthirdbar_h": 54.2, + "wthirdbar_l": 45.4, + "wthirdbar_r": 49.4 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79427917, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26612815, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 50.1, + "ecec_l": 14.6, + "ecec_r": 30.3, + "hzdepb_r": 10, + "hzdept_r": 3, + "hzname": "Oe", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 3418436, + "ph1to1h2o_h": 5.5, + "ph1to1h2o_l": 3.5, + "ph1to1h2o_r": 4.5, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": 18.3, + "wfifteenbar_l": 12.1, + "wfifteenbar_r": 14.8, + "wthirdbar_h": 53.8, + "wthirdbar_l": 46.4, + "wthirdbar_r": 49.8 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79427923, + "claytotal_h": 10, + "claytotal_l": 2, + "claytotal_r": 4, + "cokey": 26612815, + "dbovendry_h": 1.01, + "dbovendry_l": 0.61, + "dbovendry_r": 0.71, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 4.2, + "ecec_l": 0.7, + "ecec_r": 1.9, + "hzdepb_r": 13, + "hzdept_r": 10, + "hzname": "A", + "lep_h": 0.8, + "lep_l": 0.1, + "lep_r": 0.3, + "mukey": 3418436, + "ph1to1h2o_h": 5.5, + "ph1to1h2o_l": 4, + "ph1to1h2o_r": 4.4, + "sandtotal_h": 75, + "sandtotal_l": 55, + "sandtotal_r": 65, + "silttotal_h": 43, + "silttotal_l": 15, + "silttotal_r": 31, + "total_frag_volume": 5, + "wfifteenbar_h": 4.7, + "wfifteenbar_l": 2.2, + "wfifteenbar_r": 3.2, + "wthirdbar_h": 45.3, + "wthirdbar_l": 10.1, + "wthirdbar_r": 27.5 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79427920, + "claytotal_h": 10, + "claytotal_l": 2, + "claytotal_r": 5, + "cokey": 26612815, + "dbovendry_h": 1.01, + "dbovendry_l": 0.61, + "dbovendry_r": 0.71, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 3.6, + "ecec_l": 0.7, + "ecec_r": 1.8, + "hzdepb_r": 22, + "hzdept_r": 13, + "hzname": "Bw1", + "lep_h": 0.8, + "lep_l": 0.1, + "lep_r": 0.3, + "mukey": 3418436, + "ph1to1h2o_h": 5.5, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 5.1, + "sandtotal_h": 75, + "sandtotal_l": 55, + "sandtotal_r": 65, + "silttotal_h": 43, + "silttotal_l": 15, + "silttotal_r": 30, + "total_frag_volume": 30, + "wfifteenbar_h": 7.2, + "wfifteenbar_l": 1, + "wfifteenbar_r": 3, + "wthirdbar_h": 16.5, + "wthirdbar_l": 5, + "wthirdbar_r": 9.3 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79427919, + "claytotal_h": 10, + "claytotal_l": 2, + "claytotal_r": 4, + "cokey": 26612815, + "dbovendry_h": 1.01, + "dbovendry_l": 0.61, + "dbovendry_r": 0.81, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 3.6, + "ecec_l": 0.7, + "ecec_r": 1.6, + "hzdepb_r": 44, + "hzdept_r": 22, + "hzname": "Bw2", + "lep_h": 0.8, + "lep_l": 0.1, + "lep_r": 0.2, + "mukey": 3418436, + "ph1to1h2o_h": 5.5, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 5.2, + "sandtotal_h": 75, + "sandtotal_l": 55, + "sandtotal_r": 65, + "silttotal_h": 43, + "silttotal_l": 15, + "silttotal_r": 31, + "total_frag_volume": 30, + "wfifteenbar_h": 6.8, + "wfifteenbar_l": 0.8, + "wfifteenbar_r": 2.6, + "wthirdbar_h": 16, + "wthirdbar_l": 4.4, + "wthirdbar_r": 8.8 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79427918, + "claytotal_h": 10, + "claytotal_l": 0, + "claytotal_r": 3, + "cokey": 26612815, + "dbovendry_h": 1.01, + "dbovendry_l": 0.61, + "dbovendry_r": 0.81, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 3.7, + "ecec_l": 0.1, + "ecec_r": 1.2, + "hzdepb_r": 60, + "hzdept_r": 44, + "hzname": "Bw3", + "lep_h": 0.8, + "lep_l": 0, + "lep_r": 0.2, + "mukey": 3418436, + "ph1to1h2o_h": 5.5, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 5.5, + "sandtotal_h": 75, + "sandtotal_l": 55, + "sandtotal_r": 70, + "silttotal_h": 45, + "silttotal_l": 15, + "silttotal_r": 27, + "total_frag_volume": 30, + "wfifteenbar_h": 5.4, + "wfifteenbar_l": 0.2, + "wfifteenbar_r": 1.5, + "wthirdbar_h": 14.4, + "wthirdbar_l": 2.5, + "wthirdbar_r": 6.9 + }, + { + "cec7_h": 6.6, + "cec7_l": 0.4, + "cec7_r": 2.2, + "chkey": 79427922, + "claytotal_h": 6, + "claytotal_l": 0, + "claytotal_r": 1, + "cokey": 26612815, + "dbovendry_h": 1.61, + "dbovendry_l": 1.36, + "dbovendry_r": 1.46, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 105, + "hzdept_r": 60, + "hzname": "2BC", + "lep_h": 0.5, + "lep_l": 0, + "lep_r": 0.1, + "mukey": 3418436, + "ph1to1h2o_h": 6, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 5.7, + "sandtotal_h": 90, + "sandtotal_l": 70, + "sandtotal_r": 80, + "silttotal_h": 30, + "silttotal_l": 4, + "silttotal_r": 19, + "total_frag_volume": 55, + "wfifteenbar_h": 5.4, + "wfifteenbar_l": 0.2, + "wfifteenbar_r": 0.9, + "wthirdbar_h": 13.1, + "wthirdbar_l": 2.1, + "wthirdbar_r": 4.4 + }, + { + "cec7_h": 6.6, + "cec7_l": 0.4, + "cec7_r": 1.4, + "chkey": 79427921, + "claytotal_h": 6, + "claytotal_l": 0, + "claytotal_r": 1, + "cokey": 26612815, + "dbovendry_h": 1.61, + "dbovendry_l": 1.36, + "dbovendry_r": 1.46, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 152, + "hzdept_r": 105, + "hzname": "2C", + "lep_h": 0.5, + "lep_l": 0, + "lep_r": 0.1, + "mukey": 3418436, + "ph1to1h2o_h": 6, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 6, + "sandtotal_h": 90, + "sandtotal_l": 70, + "sandtotal_r": 80, + "silttotal_h": 30, + "silttotal_l": 4, + "silttotal_r": 19, + "total_frag_volume": 55, + "wfifteenbar_h": 5.4, + "wfifteenbar_l": 0.2, + "wfifteenbar_r": 0.6, + "wthirdbar_h": 13.1, + "wthirdbar_l": 2.1, + "wthirdbar_r": 3.6 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79428042, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26612824, + "dbovendry_h": 0.35, + "dbovendry_l": 0.28, + "dbovendry_r": 0.32, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 78.7, + "ecec_l": 24.8, + "ecec_r": 42.7, + "hzdepb_r": 5, + "hzdept_r": 0, + "hzname": "Oi", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 3418433, + "ph1to1h2o_h": 5.5, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 5, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": 21.1, + "wfifteenbar_l": 14, + "wfifteenbar_r": 17, + "wthirdbar_h": 54.9, + "wthirdbar_l": 46.1, + "wthirdbar_r": 50.1 + }, + { + "cec7_h": 17.3, + "cec7_l": 8.8, + "cec7_r": 13.2, + "chkey": 79428046, + "claytotal_h": 20, + "claytotal_l": 10, + "claytotal_r": 15, + "cokey": 26612824, + "dbovendry_h": 1.49, + "dbovendry_l": 1.41, + "dbovendry_r": 1.44, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 23, + "hzdept_r": 5, + "hzname": "A", + "lep_h": 2.3, + "lep_l": 0.7, + "lep_r": 1.3, + "mukey": 3418433, + "ph1to1h2o_h": 6, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 5.6, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 66, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 19, + "total_frag_volume": 7, + "wfifteenbar_h": 14, + "wfifteenbar_l": 6.3, + "wfifteenbar_r": 9.9, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": 24.6 + }, + { + "cec7_h": 11.7, + "cec7_l": 4.2, + "cec7_r": 8.1, + "chkey": 79428043, + "claytotal_h": 15, + "claytotal_l": 5, + "claytotal_r": 10, + "cokey": 26612824, + "dbovendry_h": 1.55, + "dbovendry_l": 1.46, + "dbovendry_r": 1.49, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 46, + "hzdept_r": 23, + "hzname": "Bw", + "lep_h": 1.2, + "lep_l": 0.1, + "lep_r": 0.5, + "mukey": 3418433, + "ph1to1h2o_h": 6, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 5.6, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 46, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 44, + "total_frag_volume": 46, + "wfifteenbar_h": 9.7, + "wfifteenbar_l": 1.3, + "wfifteenbar_r": 4.5, + "wthirdbar_h": 21.7, + "wthirdbar_l": 6.1, + "wthirdbar_r": 13.1 + }, + { + "cec7_h": 10.1, + "cec7_l": 3.9, + "cec7_r": 7.1, + "chkey": 79428044, + "claytotal_h": 15, + "claytotal_l": 5, + "claytotal_r": 10, + "cokey": 26612824, + "dbovendry_h": 1.53, + "dbovendry_l": 1.46, + "dbovendry_r": 1.49, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 100, + "hzdept_r": 46, + "hzname": "BC", + "lep_h": 1, + "lep_l": 0.1, + "lep_r": 0.5, + "mukey": 3418433, + "ph1to1h2o_h": 6, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 5.6, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 67, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 23, + "total_frag_volume": 46, + "wfifteenbar_h": 7.5, + "wfifteenbar_l": 1.3, + "wfifteenbar_r": 3.7, + "wthirdbar_h": 14.7, + "wthirdbar_l": 4.4, + "wthirdbar_r": 9 + }, + { + "cec7_h": 10.1, + "cec7_l": 3.9, + "cec7_r": 7.1, + "chkey": 79428045, + "claytotal_h": 15, + "claytotal_l": 5, + "claytotal_r": 10, + "cokey": 26612824, + "dbovendry_h": 1.86, + "dbovendry_l": 1.77, + "dbovendry_r": 1.81, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 150, + "hzdept_r": 100, + "hzname": "Cd", + "lep_h": 1, + "lep_l": 0.1, + "lep_r": 0.5, + "mukey": 3418433, + "ph1to1h2o_h": 6, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 5.6, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 67, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 23, + "total_frag_volume": 46, + "wfifteenbar_h": 9.7, + "wfifteenbar_l": 1.7, + "wfifteenbar_r": 4.8, + "wthirdbar_h": 16.4, + "wthirdbar_l": 4.9, + "wthirdbar_r": 10.1 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79428039, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26612823, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 67.7, + "ecec_l": 19.7, + "ecec_r": 40.9, + "hzdepb_r": 25, + "hzdept_r": 0, + "hzname": "Oa", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 3418433, + "ph1to1h2o_h": 5.5, + "ph1to1h2o_l": 3.5, + "ph1to1h2o_r": 4.5, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": 15.7, + "wfifteenbar_l": 10.4, + "wfifteenbar_r": 12.7, + "wthirdbar_h": 56.5, + "wthirdbar_l": 53.3, + "wthirdbar_r": 54.8 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79428041, + "claytotal_h": 18, + "claytotal_l": 5, + "claytotal_r": 15, + "cokey": 26612823, + "dbovendry_h": 1.25, + "dbovendry_l": 0.85, + "dbovendry_r": 1.05, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 25.1, + "ecec_l": 7.7, + "ecec_r": 13.4, + "hzdepb_r": 45, + "hzdept_r": 25, + "hzname": "A1", + "lep_h": 2.2, + "lep_l": 0.5, + "lep_r": 1.8, + "mukey": 3418433, + "ph1to1h2o_h": 5.5, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 5, + "sandtotal_h": 55, + "sandtotal_l": 40, + "sandtotal_r": 45, + "silttotal_h": 50, + "silttotal_l": 27, + "silttotal_r": 40, + "total_frag_volume": 0, + "wfifteenbar_h": 12.5, + "wfifteenbar_l": 4, + "wfifteenbar_r": 9.3, + "wthirdbar_h": 42.7, + "wthirdbar_l": 34, + "wthirdbar_r": 40.6 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79428040, + "claytotal_h": 18, + "claytotal_l": 5, + "claytotal_r": 15, + "cokey": 26612823, + "dbovendry_h": 1.25, + "dbovendry_l": 0.85, + "dbovendry_r": 1.05, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 25.1, + "ecec_l": 7.7, + "ecec_r": 13.4, + "hzdepb_r": 58, + "hzdept_r": 45, + "hzname": "A2", + "lep_h": 2.2, + "lep_l": 0.5, + "lep_r": 1.8, + "mukey": 3418433, + "ph1to1h2o_h": 5.5, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 5, + "sandtotal_h": 55, + "sandtotal_l": 40, + "sandtotal_r": 45, + "silttotal_h": 50, + "silttotal_l": 27, + "silttotal_r": 40, + "total_frag_volume": 0, + "wfifteenbar_h": 12.5, + "wfifteenbar_l": 3.8, + "wfifteenbar_r": 9.3, + "wthirdbar_h": 42.7, + "wthirdbar_l": 32, + "wthirdbar_r": 40.6 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79428038, + "claytotal_h": 15, + "claytotal_l": 0, + "claytotal_r": 10, + "cokey": 26612823, + "dbovendry_h": 1.55, + "dbovendry_l": 1.3, + "dbovendry_r": 1.35, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 5.5, + "ecec_l": 0.2, + "ecec_r": 3, + "hzdepb_r": 96, + "hzdept_r": 58, + "hzname": "Cg1", + "lep_h": 1.8, + "lep_l": 0.2, + "lep_r": 1.2, + "mukey": 3418433, + "ph1to1h2o_h": 5.5, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 5, + "sandtotal_h": 90, + "sandtotal_l": 55, + "sandtotal_r": 60, + "silttotal_h": 40, + "silttotal_l": 10, + "silttotal_r": 30, + "total_frag_volume": 0, + "wfifteenbar_h": 9.4, + "wfifteenbar_l": 0.1, + "wfifteenbar_r": 6.1, + "wthirdbar_h": 19.1, + "wthirdbar_l": 1.7, + "wthirdbar_r": 15.7 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79428037, + "claytotal_h": 7, + "claytotal_l": 0, + "claytotal_r": 5, + "cokey": 26612823, + "dbovendry_h": 1.63, + "dbovendry_l": 1.38, + "dbovendry_r": 1.53, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 3.6, + "ecec_l": 0.2, + "ecec_r": 2.1, + "hzdepb_r": 150, + "hzdept_r": 96, + "hzname": "Cg2", + "lep_h": 0.8, + "lep_l": 0, + "lep_r": 0.6, + "mukey": 3418433, + "ph1to1h2o_h": 5.5, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 5, + "sandtotal_h": 90, + "sandtotal_l": 70, + "sandtotal_r": 80, + "silttotal_h": 30, + "silttotal_l": 8, + "silttotal_r": 15, + "total_frag_volume": 0, + "wfifteenbar_h": 6.2, + "wfifteenbar_l": 0.2, + "wfifteenbar_r": 4.1, + "wthirdbar_h": 15.8, + "wthirdbar_l": 1.8, + "wthirdbar_r": 13.1 + } + ], + "spn": [ + { + "closest_pt_x": -121.8166, + "closest_pt_y": 48.6956, + "cokey": 26612815, + "compkind": "Taxon above family", + "compname": "typic vitricryands", + "comppct_r": 80, + "dist_meters": 0, + "elev_r": 950, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 3418436, + "nirrcapcl": 7, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 35, + "taxorder": "Andisols", + "taxsubgrp": "Typic Vitricryands", + "which": "a" + }, + { + "closest_pt_x": -121.81659684344898, + "closest_pt_y": 48.695410046397114, + "cokey": 26612824, + "compkind": "Taxon above family", + "compname": "vitrandic dystrocryepts", + "comppct_r": 70, + "dist_meters": 21, + "elev_r": 950, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 3418433, + "nirrcapcl": 6, + "nirrcapscl": "c", + "nirrcapunit": null, + "slope_r": 8, + "taxorder": "Inceptisols", + "taxsubgrp": "Vitrandic Dystrocryepts", + "which": "b" + }, + { + "closest_pt_x": -121.81659684344898, + "closest_pt_y": 48.695410046397114, + "cokey": 26612823, + "compkind": "Taxon above family", + "compname": "histic cryaquepts", + "comppct_r": 30, + "dist_meters": 21, + "elev_r": 950, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 3418433, + "nirrcapcl": 6, + "nirrcapscl": "w", + "nirrcapunit": null, + "slope_r": 4, + "taxorder": "Inceptisols", + "taxsubgrp": "Histic Cryaquepts", + "which": "b" + } + ] + } +} diff --git a/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[60.42282639,-158.4018264].json b/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[60.42282639,-158.4018264].json new file mode 100644 index 0000000..10dbca6 --- /dev/null +++ b/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[60.42282639,-158.4018264].json @@ -0,0 +1,1208 @@ +{ + "elev": { + "location": { + "spatialReference": { + "latestWkid": 4326, + "wkid": 4326 + }, + "x": -158.4018264, + "y": 60.42282639 + }, + "locationId": 0, + "rasterId": 6051, + "resolution": 5, + "value": "286.739776611" + }, + "soilweb": { + "ESD": [ + { + "cokey": 26723595, + "ecoclassid": "R236XY107AK", + "ecoclassname": "Western Alaska Maritime Scrub Gravelly Drainages", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/236X/R236XY107AK" + }, + { + "cokey": 26723596, + "ecoclassid": "R236XY132AK", + "ecoclassname": "Subarctic Dwarf Scrub Dry Loamy Slopes", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/236X/R236XY132AK" + }, + { + "cokey": 26723597, + "ecoclassid": "F236XY139AK", + "ecoclassname": "Boreal Woodland Loamy Rises", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/236X/F236XY139AK" + }, + { + "cokey": 26723598, + "ecoclassid": "R236XY131AK", + "ecoclassname": "Subarctic Tussock-Scrub Frozen Plains", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/236X/R236XY131AK" + }, + { + "cokey": 26723599, + "ecoclassid": "R236XY140AK", + "ecoclassname": "Subarctic Tussock Tundra Wet Loamy Plains", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/236X/R236XY140AK" + }, + { + "cokey": 26723600, + "ecoclassid": "R236XY109AK", + "ecoclassname": "Subarctic Low Scrub Peat Drainages", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/236X/R236XY109AK" + } + ], + "OSD_morph": [], + "OSD_narrative": [], + "hz": [ + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79785662, + "claytotal_h": 8, + "claytotal_l": 4, + "claytotal_r": 5, + "cokey": 26723599, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 54, + "ecec_l": 30, + "ecec_r": 35, + "hzdepb_r": 32, + "hzdept_r": 0, + "hzname": "Oe", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 2661500, + "ph1to1h2o_h": 5.1, + "ph1to1h2o_l": 3.8, + "ph1to1h2o_r": 4.6, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 60, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 35, + "total_frag_volume": 0, + "wfifteenbar_h": 45, + "wfifteenbar_l": 25, + "wfifteenbar_r": 40, + "wthirdbar_h": 70, + "wthirdbar_l": 60, + "wthirdbar_r": 65 + }, + { + "cec7_h": 25, + "cec7_l": 5, + "cec7_r": 10, + "chkey": 79785663, + "claytotal_h": 8, + "claytotal_l": 4, + "claytotal_r": 5, + "cokey": 26723599, + "dbovendry_h": 1.53, + "dbovendry_l": 1.41, + "dbovendry_r": 1.46, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 75, + "hzdept_r": 32, + "hzname": "Cg1", + "lep_h": 2.9, + "lep_l": 1, + "lep_r": 1.5, + "mukey": 2661500, + "ph1to1h2o_h": 6.3, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 6, + "sandtotal_h": 70, + "sandtotal_l": 12, + "sandtotal_r": 60, + "silttotal_h": 84, + "silttotal_l": 22, + "silttotal_r": 35, + "total_frag_volume": 0, + "wfifteenbar_h": 10, + "wfifteenbar_l": 0, + "wfifteenbar_r": 4.5, + "wthirdbar_h": 25, + "wthirdbar_l": 10, + "wthirdbar_r": 20 + }, + { + "cec7_h": 10, + "cec7_l": 0, + "cec7_r": 7, + "chkey": 79785664, + "claytotal_h": 10, + "claytotal_l": 2, + "claytotal_r": 5, + "cokey": 26723599, + "dbovendry_h": 1.85, + "dbovendry_l": 1.73, + "dbovendry_r": 1.78, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 183, + "hzdept_r": 75, + "hzname": "Cg2", + "lep_h": 2.9, + "lep_l": 1, + "lep_r": 1.5, + "mukey": 2661500, + "ph1to1h2o_h": 6.6, + "ph1to1h2o_l": 5.6, + "ph1to1h2o_r": 6.4, + "sandtotal_h": 80, + "sandtotal_l": 32, + "sandtotal_r": 65, + "silttotal_h": 65, + "silttotal_l": 10, + "silttotal_r": 30, + "total_frag_volume": 0, + "wfifteenbar_h": 10, + "wfifteenbar_l": 0, + "wfifteenbar_r": 3, + "wthirdbar_h": 25, + "wthirdbar_l": 5, + "wthirdbar_r": 15 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79785656, + "claytotal_h": 7, + "claytotal_l": 2, + "claytotal_r": 5, + "cokey": 26723596, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 30, + "ecec_l": 20, + "ecec_r": 25, + "hzdepb_r": 3, + "hzdept_r": 0, + "hzname": "Oe", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 2661500, + "ph1to1h2o_h": 5.2, + "ph1to1h2o_l": 4.2, + "ph1to1h2o_r": 4.4, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 30, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 65, + "total_frag_volume": 0, + "wfifteenbar_h": 30, + "wfifteenbar_l": 6, + "wfifteenbar_r": 15, + "wthirdbar_h": 70, + "wthirdbar_l": 25, + "wthirdbar_r": 50 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79785657, + "claytotal_h": 7, + "claytotal_l": 2, + "claytotal_r": 5, + "cokey": 26723596, + "dbovendry_h": 1.31, + "dbovendry_l": 1.21, + "dbovendry_r": 1.26, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 9, + "ecec_l": 1, + "ecec_r": 5, + "hzdepb_r": 27, + "hzdept_r": 3, + "hzname": "AB", + "lep_h": 2.9, + "lep_l": 1, + "lep_r": 1.5, + "mukey": 2661500, + "ph1to1h2o_h": 5.9, + "ph1to1h2o_l": 5.2, + "ph1to1h2o_r": 5.3, + "sandtotal_h": 60, + "sandtotal_l": 25, + "sandtotal_r": 30, + "silttotal_h": 73, + "silttotal_l": 33, + "silttotal_r": 65, + "total_frag_volume": 1, + "wfifteenbar_h": 10, + "wfifteenbar_l": 0, + "wfifteenbar_r": 5, + "wthirdbar_h": 32, + "wthirdbar_l": 22, + "wthirdbar_r": 27 + }, + { + "cec7_h": 15, + "cec7_l": 1, + "cec7_r": 6, + "chkey": 79785654, + "claytotal_h": 6, + "claytotal_l": 2, + "claytotal_r": 4, + "cokey": 26723596, + "dbovendry_h": 1.69, + "dbovendry_l": 1.57, + "dbovendry_r": 1.62, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 61, + "hzdept_r": 27, + "hzname": "BC", + "lep_h": 2.9, + "lep_l": 1, + "lep_r": 1.5, + "mukey": 2661500, + "ph1to1h2o_h": 6.2, + "ph1to1h2o_l": 5.5, + "ph1to1h2o_r": 5.7, + "sandtotal_h": 80, + "sandtotal_l": 25, + "sandtotal_r": 60, + "silttotal_h": 73, + "silttotal_l": 14, + "silttotal_r": 36, + "total_frag_volume": 0, + "wfifteenbar_h": 10, + "wfifteenbar_l": 0, + "wfifteenbar_r": 5, + "wthirdbar_h": 24, + "wthirdbar_l": 20, + "wthirdbar_r": 22 + }, + { + "cec7_h": 15, + "cec7_l": 1, + "cec7_r": 6, + "chkey": 79785655, + "claytotal_h": 5, + "claytotal_l": 1, + "claytotal_r": 3, + "cokey": 26723596, + "dbovendry_h": 2.01, + "dbovendry_l": 1.81, + "dbovendry_r": 1.86, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 183, + "hzdept_r": 61, + "hzname": "2C", + "lep_h": 2.9, + "lep_l": 1, + "lep_r": 1.5, + "mukey": 2661500, + "ph1to1h2o_h": 6.4, + "ph1to1h2o_l": 5.5, + "ph1to1h2o_r": 5.6, + "sandtotal_h": 99, + "sandtotal_l": 35, + "sandtotal_r": 95, + "silttotal_h": 64, + "silttotal_l": 0, + "silttotal_r": 2, + "total_frag_volume": 50, + "wfifteenbar_h": 10, + "wfifteenbar_l": 0, + "wfifteenbar_r": 5, + "wthirdbar_h": 20, + "wthirdbar_l": 10, + "wthirdbar_r": 15 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79785651, + "claytotal_h": 6, + "claytotal_l": 4, + "claytotal_r": 5, + "cokey": 26723600, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 30, + "ecec_l": 20, + "ecec_r": 25, + "hzdepb_r": 55, + "hzdept_r": 0, + "hzname": "Oi", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 2661500, + "ph1to1h2o_h": 5.2, + "ph1to1h2o_l": 3.7, + "ph1to1h2o_r": 5.2, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 50, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 45, + "total_frag_volume": 0, + "wfifteenbar_h": 30, + "wfifteenbar_l": 20, + "wfifteenbar_r": 25, + "wthirdbar_h": 70, + "wthirdbar_l": 60, + "wthirdbar_r": 65 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79785652, + "claytotal_h": 6, + "claytotal_l": 4, + "claytotal_r": 5, + "cokey": 26723600, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 30, + "ecec_l": 20, + "ecec_r": 25, + "hzdepb_r": 70, + "hzdept_r": 55, + "hzname": "Oe", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 2661500, + "ph1to1h2o_h": 5.1, + "ph1to1h2o_l": 3.9, + "ph1to1h2o_r": 5.1, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 50, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 45, + "total_frag_volume": 0, + "wfifteenbar_h": 45, + "wfifteenbar_l": 15, + "wfifteenbar_r": 35, + "wthirdbar_h": 70, + "wthirdbar_l": 60, + "wthirdbar_r": 65 + }, + { + "cec7_h": 10, + "cec7_l": 1, + "cec7_r": 5, + "chkey": 79785653, + "claytotal_h": 6, + "claytotal_l": 4, + "claytotal_r": 5, + "cokey": 26723600, + "dbovendry_h": 1.85, + "dbovendry_l": 1.73, + "dbovendry_r": 1.78, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 183, + "hzdept_r": 70, + "hzname": "Cg", + "lep_h": 2.9, + "lep_l": 1, + "lep_r": 1.5, + "mukey": 2661500, + "ph1to1h2o_h": 6.1, + "ph1to1h2o_l": 5, + "ph1to1h2o_r": 5.5, + "sandtotal_h": 60, + "sandtotal_l": 12, + "sandtotal_r": 50, + "silttotal_h": 84, + "silttotal_l": 34, + "silttotal_r": 45, + "total_frag_volume": 0, + "wfifteenbar_h": 10, + "wfifteenbar_l": 2, + "wfifteenbar_r": 5, + "wthirdbar_h": 20, + "wthirdbar_l": 10, + "wthirdbar_r": 15 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79785658, + "claytotal_h": 12, + "claytotal_l": 8, + "claytotal_r": 10, + "cokey": 26723598, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 30, + "ecec_l": 20, + "ecec_r": 25, + "hzdepb_r": 31, + "hzdept_r": 0, + "hzname": "Oe", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 2661500, + "ph1to1h2o_h": 4.9, + "ph1to1h2o_l": 3.9, + "ph1to1h2o_r": 4.4, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 7, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 83, + "total_frag_volume": 0, + "wfifteenbar_h": 30, + "wfifteenbar_l": 6, + "wfifteenbar_r": 15, + "wthirdbar_h": 70, + "wthirdbar_l": 25, + "wthirdbar_r": 50 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79785660, + "claytotal_h": 12, + "claytotal_l": 8, + "claytotal_r": 10, + "cokey": 26723598, + "dbovendry_h": 1.36, + "dbovendry_l": 1.26, + "dbovendry_r": 1.31, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 7.1, + "ecec_l": 4.8, + "ecec_r": 6, + "hzdepb_r": 75, + "hzdept_r": 31, + "hzname": "ACjj", + "lep_h": 2.9, + "lep_l": 1, + "lep_r": 1.5, + "mukey": 2661500, + "ph1to1h2o_h": 5.5, + "ph1to1h2o_l": 5, + "ph1to1h2o_r": 5, + "sandtotal_h": 35, + "sandtotal_l": 5, + "sandtotal_r": 7, + "silttotal_h": 84, + "silttotal_l": 53, + "silttotal_r": 83, + "total_frag_volume": 0, + "wfifteenbar_h": 15, + "wfifteenbar_l": 3, + "wfifteenbar_r": 10, + "wthirdbar_h": 32, + "wthirdbar_l": 22, + "wthirdbar_r": 27 + }, + { + "cec7_h": 8.9, + "cec7_l": 5.1, + "cec7_r": 7, + "chkey": 79785661, + "claytotal_h": 10, + "claytotal_l": 6, + "claytotal_r": 8, + "cokey": 26723598, + "dbovendry_h": 1.53, + "dbovendry_l": 1.41, + "dbovendry_r": 1.46, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 90, + "hzdept_r": 75, + "hzname": "BCjj", + "lep_h": 2.9, + "lep_l": 1, + "lep_r": 1.5, + "mukey": 2661500, + "ph1to1h2o_h": 6.2, + "ph1to1h2o_l": 5.8, + "ph1to1h2o_r": 6, + "sandtotal_h": 20, + "sandtotal_l": 8, + "sandtotal_r": 10, + "silttotal_h": 86, + "silttotal_l": 70, + "silttotal_r": 82, + "total_frag_volume": 0, + "wfifteenbar_h": 20, + "wfifteenbar_l": 3, + "wfifteenbar_r": 10, + "wthirdbar_h": 29, + "wthirdbar_l": 19, + "wthirdbar_r": 24 + }, + { + "cec7_h": 7.2, + "cec7_l": 4.3, + "cec7_r": 6.1, + "chkey": 79785659, + "claytotal_h": 8, + "claytotal_l": 5, + "claytotal_r": 7, + "cokey": 26723598, + "dbovendry_h": 1.62, + "dbovendry_l": 1.47, + "dbovendry_r": 1.57, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 183, + "hzdept_r": 90, + "hzname": "Cf", + "lep_h": 2.5, + "lep_l": 1, + "lep_r": 1.5, + "mukey": 2661500, + "ph1to1h2o_h": 6.4, + "ph1to1h2o_l": 5, + "ph1to1h2o_r": 6.2, + "sandtotal_h": 20, + "sandtotal_l": 8, + "sandtotal_r": 10, + "silttotal_h": 87, + "silttotal_l": 72, + "silttotal_r": 83, + "total_frag_volume": 0, + "wfifteenbar_h": 20, + "wfifteenbar_l": 3, + "wfifteenbar_r": 10, + "wthirdbar_h": 25, + "wthirdbar_l": 15, + "wthirdbar_r": 20 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79785668, + "claytotal_h": 6, + "claytotal_l": 4, + "claytotal_r": 5, + "cokey": 26723597, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 30, + "ecec_l": 20, + "ecec_r": 25, + "hzdepb_r": 10, + "hzdept_r": 0, + "hzname": "Oe", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 2661500, + "ph1to1h2o_h": 4.5, + "ph1to1h2o_l": 3.3, + "ph1to1h2o_r": 3.8, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 25, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 70, + "total_frag_volume": 0, + "wfifteenbar_h": 30, + "wfifteenbar_l": 6, + "wfifteenbar_r": 15, + "wthirdbar_h": 70, + "wthirdbar_l": 25, + "wthirdbar_r": 50 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79785667, + "claytotal_h": 6, + "claytotal_l": 4, + "claytotal_r": 5, + "cokey": 26723597, + "dbovendry_h": 0.96, + "dbovendry_l": 0.87, + "dbovendry_r": 0.92, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 19.5, + "ecec_l": 10, + "ecec_r": 15, + "hzdepb_r": 17, + "hzdept_r": 10, + "hzname": "AE", + "lep_h": 4, + "lep_l": 1, + "lep_r": 2.5, + "mukey": 2661500, + "ph1to1h2o_h": 4.8, + "ph1to1h2o_l": 3.3, + "ph1to1h2o_r": 4.2, + "sandtotal_h": 35, + "sandtotal_l": 20, + "sandtotal_r": 25, + "silttotal_h": 76, + "silttotal_l": 59, + "silttotal_r": 70, + "total_frag_volume": 0, + "wfifteenbar_h": 20, + "wfifteenbar_l": 10, + "wfifteenbar_r": 15, + "wthirdbar_h": 50, + "wthirdbar_l": 40, + "wthirdbar_r": 45 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79785670, + "claytotal_h": 6, + "claytotal_l": 4, + "claytotal_r": 5, + "cokey": 26723597, + "dbovendry_h": 0.82, + "dbovendry_l": 0.73, + "dbovendry_r": 0.78, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 15, + "ecec_l": 7, + "ecec_r": 10, + "hzdepb_r": 24, + "hzdept_r": 17, + "hzname": "Bhs", + "lep_h": 2.9, + "lep_l": 1, + "lep_r": 1.5, + "mukey": 2661500, + "ph1to1h2o_h": 5.3, + "ph1to1h2o_l": 4.2, + "ph1to1h2o_r": 4.7, + "sandtotal_h": 65, + "sandtotal_l": 25, + "sandtotal_r": 35, + "silttotal_h": 71, + "silttotal_l": 31, + "silttotal_r": 60, + "total_frag_volume": 0, + "wfifteenbar_h": 20, + "wfifteenbar_l": 13, + "wfifteenbar_r": 15, + "wthirdbar_h": 47, + "wthirdbar_l": 37, + "wthirdbar_r": 42 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79785669, + "claytotal_h": 6, + "claytotal_l": 4, + "claytotal_r": 5, + "cokey": 26723597, + "dbovendry_h": 1.36, + "dbovendry_l": 1.26, + "dbovendry_r": 1.31, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 3.8, + "ecec_l": 2.5, + "ecec_r": 3.1, + "hzdepb_r": 40, + "hzdept_r": 24, + "hzname": "BC1", + "lep_h": 2.9, + "lep_l": 1, + "lep_r": 1.5, + "mukey": 2661500, + "ph1to1h2o_h": 5.9, + "ph1to1h2o_l": 4.8, + "ph1to1h2o_r": 5.1, + "sandtotal_h": 65, + "sandtotal_l": 25, + "sandtotal_r": 35, + "silttotal_h": 71, + "silttotal_l": 31, + "silttotal_r": 60, + "total_frag_volume": 0, + "wfifteenbar_h": 15, + "wfifteenbar_l": 5, + "wfifteenbar_r": 10, + "wthirdbar_h": 25, + "wthirdbar_l": 15, + "wthirdbar_r": 22 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79785666, + "claytotal_h": 5, + "claytotal_l": 3, + "claytotal_r": 4, + "cokey": 26723597, + "dbovendry_h": 1.42, + "dbovendry_l": 1.31, + "dbovendry_r": 1.36, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 3.2, + "ecec_l": 1.9, + "ecec_r": 2.5, + "hzdepb_r": 92, + "hzdept_r": 40, + "hzname": "2BC2", + "lep_h": 2.9, + "lep_l": 1, + "lep_r": 1.5, + "mukey": 2661500, + "ph1to1h2o_h": 6, + "ph1to1h2o_l": 5, + "ph1to1h2o_r": 5.4, + "sandtotal_h": 70, + "sandtotal_l": 25, + "sandtotal_r": 60, + "silttotal_h": 72, + "silttotal_l": 25, + "silttotal_r": 36, + "total_frag_volume": 0, + "wfifteenbar_h": 15, + "wfifteenbar_l": 5, + "wfifteenbar_r": 10, + "wthirdbar_h": 25, + "wthirdbar_l": 15, + "wthirdbar_r": 20 + }, + { + "cec7_h": 4.8, + "cec7_l": 0.1, + "cec7_r": 2.9, + "chkey": 79785665, + "claytotal_h": 5, + "claytotal_l": 0, + "claytotal_r": 3, + "cokey": 26723597, + "dbovendry_h": 1.53, + "dbovendry_l": 1.41, + "dbovendry_r": 1.46, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 183, + "hzdept_r": 92, + "hzname": "2C", + "lep_h": 2.9, + "lep_l": 1, + "lep_r": 1.5, + "mukey": 2661500, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 5.3, + "ph1to1h2o_r": 5.6, + "sandtotal_h": 90, + "sandtotal_l": 30, + "sandtotal_r": 65, + "silttotal_h": 70, + "silttotal_l": 5, + "silttotal_r": 32, + "total_frag_volume": 0, + "wfifteenbar_h": 15, + "wfifteenbar_l": 5, + "wfifteenbar_r": 10, + "wthirdbar_h": 25, + "wthirdbar_l": 15, + "wthirdbar_r": 18 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79786391, + "claytotal_h": 6, + "claytotal_l": 2, + "claytotal_r": 3, + "cokey": 26723595, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 30, + "ecec_l": 20, + "ecec_r": 25, + "hzdepb_r": 3, + "hzdept_r": 0, + "hzname": "Oa", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 2661500, + "ph1to1h2o_h": 5.8, + "ph1to1h2o_l": 5.1, + "ph1to1h2o_r": 5.4, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": 55, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": 42, + "total_frag_volume": 3, + "wfifteenbar_h": 30, + "wfifteenbar_l": 6, + "wfifteenbar_r": 15, + "wthirdbar_h": 70, + "wthirdbar_l": 25, + "wthirdbar_r": 50 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 79786392, + "claytotal_h": 6, + "claytotal_l": 2, + "claytotal_r": 3, + "cokey": 26723595, + "dbovendry_h": 1.02, + "dbovendry_l": 0.92, + "dbovendry_r": 0.97, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 4, + "ecec_l": 1.4, + "ecec_r": 2.1, + "hzdepb_r": 12, + "hzdept_r": 3, + "hzname": "A1", + "lep_h": 4, + "lep_l": 1, + "lep_r": 2.5, + "mukey": 2661500, + "ph1to1h2o_h": 5.6, + "ph1to1h2o_l": 5.3, + "ph1to1h2o_r": 5.3, + "sandtotal_h": 65, + "sandtotal_l": 20, + "sandtotal_r": 55, + "silttotal_h": 78, + "silttotal_l": 29, + "silttotal_r": 42, + "total_frag_volume": 3, + "wfifteenbar_h": 20, + "wfifteenbar_l": 10, + "wfifteenbar_r": 15, + "wthirdbar_h": 47, + "wthirdbar_l": 37, + "wthirdbar_r": 42 + }, + { + "cec7_h": 6.1, + "cec7_l": 2.2, + "cec7_r": 3.3, + "chkey": 79786393, + "claytotal_h": 6, + "claytotal_l": 2, + "claytotal_r": 3, + "cokey": 26723595, + "dbovendry_h": 1.22, + "dbovendry_l": 1.09, + "dbovendry_r": 1.14, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 61, + "hzdept_r": 12, + "hzname": "2A2", + "lep_h": 2.9, + "lep_l": 1, + "lep_r": 1.5, + "mukey": 2661500, + "ph1to1h2o_h": 5.9, + "ph1to1h2o_l": 5.5, + "ph1to1h2o_r": 5.7, + "sandtotal_h": 45, + "sandtotal_l": 12, + "sandtotal_r": 40, + "silttotal_h": 86, + "silttotal_l": 50, + "silttotal_r": 57, + "total_frag_volume": 56, + "wfifteenbar_h": 15, + "wfifteenbar_l": 5, + "wfifteenbar_r": 10, + "wthirdbar_h": 30, + "wthirdbar_l": 20, + "wthirdbar_r": 25 + }, + { + "cec7_h": 7.4, + "cec7_l": 2, + "cec7_r": 3, + "chkey": 79786394, + "claytotal_h": 8, + "claytotal_l": 2, + "claytotal_r": 3, + "cokey": 26723595, + "dbovendry_h": 2.06, + "dbovendry_l": 1.8, + "dbovendry_r": 1.85, + "ec_h": 2, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 183, + "hzdept_r": 61, + "hzname": "3C", + "lep_h": 2.9, + "lep_l": 1, + "lep_r": 1.5, + "mukey": 2661500, + "ph1to1h2o_h": 5.9, + "ph1to1h2o_l": 5.5, + "ph1to1h2o_r": 5.8, + "sandtotal_h": 45, + "sandtotal_l": 20, + "sandtotal_r": 40, + "silttotal_h": 78, + "silttotal_l": 50, + "silttotal_r": 57, + "total_frag_volume": 62, + "wfifteenbar_h": 10, + "wfifteenbar_l": 0, + "wfifteenbar_r": 4.5, + "wthirdbar_h": 25, + "wthirdbar_l": 1, + "wthirdbar_r": 14 + } + ], + "spn": [ + { + "closest_pt_x": -158.4018264, + "closest_pt_y": 60.42282639, + "cokey": 26723599, + "compkind": "Taxon above family", + "compname": "d36-western maritime tussock scrub loamy eolian slopes", + "comppct_r": 24, + "dist_meters": 0, + "elev_r": 178, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 2661500, + "nirrcapcl": 6, + "nirrcapscl": "s", + "nirrcapunit": null, + "slope_r": 2, + "taxorder": "Inceptisols", + "taxsubgrp": "Histic Gelaquepts", + "which": "a" + }, + { + "closest_pt_x": -158.4018264, + "closest_pt_y": 60.42282639, + "cokey": 26723596, + "compkind": "Taxon above family", + "compname": "d36-western maritime dwarf scrub loamy glaciated slopes", + "comppct_r": 23, + "dist_meters": 0, + "elev_r": 178, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 2661500, + "nirrcapcl": 4, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 6, + "taxorder": "Inceptisols", + "taxsubgrp": "Typic Dystrocryepts", + "which": "a" + }, + { + "closest_pt_x": -158.4018264, + "closest_pt_y": 60.42282639, + "cokey": 26723600, + "compkind": "Taxon above family", + "compname": "d36-western maritime sedge organic depressions", + "comppct_r": 20, + "dist_meters": 0, + "elev_r": 178, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 2661500, + "nirrcapcl": 7, + "nirrcapscl": "s", + "nirrcapunit": null, + "slope_r": 0, + "taxorder": "Histosols", + "taxsubgrp": "Terric Cryohemists", + "which": "a" + }, + { + "closest_pt_x": -158.4018264, + "closest_pt_y": 60.42282639, + "cokey": 26723598, + "compkind": "Taxon above family", + "compname": "d36-western maritime scrub organic peat mounds", + "comppct_r": 17, + "dist_meters": 0, + "elev_r": 178, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 2661500, + "nirrcapcl": 6, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 4, + "taxorder": "Gelisols", + "taxsubgrp": "Folistic Umbriturbels", + "which": "a" + }, + { + "closest_pt_x": -158.4018264, + "closest_pt_y": 60.42282639, + "cokey": 26723597, + "compkind": "Taxon above family", + "compname": "d36-boreal forest loamy eolian slopes", + "comppct_r": 10, + "dist_meters": 0, + "elev_r": 178, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 2661500, + "nirrcapcl": 4, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 3, + "taxorder": "Spodosols", + "taxsubgrp": "Typic Haplocryods", + "which": "a" + }, + { + "closest_pt_x": -158.4018264, + "closest_pt_y": 60.42282639, + "cokey": 26723595, + "compkind": "Taxon above family", + "compname": "d36-western maritime scrub drainageways", + "comppct_r": 1, + "dist_meters": 0, + "elev_r": 178, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 2661500, + "nirrcapcl": 6, + "nirrcapscl": "s", + "nirrcapunit": null, + "slope_r": 3, + "taxorder": "Inceptisols", + "taxsubgrp": "Oxyaquic Humicryepts", + "which": "a" + } + ] + } +} diff --git a/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[62.32776717,-157.2767099].json b/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[62.32776717,-157.2767099].json new file mode 100644 index 0000000..77c05a8 --- /dev/null +++ b/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[62.32776717,-157.2767099].json @@ -0,0 +1,2015 @@ +{ + "elev": { + "location": { + "spatialReference": { + "latestWkid": 4326, + "wkid": 4326 + }, + "x": -157.2767099, + "y": 62.32776717 + }, + "locationId": 0, + "rasterId": 7909, + "resolution": 5, + "value": "250.669815063" + }, + "soilweb": { + "ESD": [ + { + "cokey": 27026711, + "ecoclassid": "F230XY612AK", + "ecoclassname": "Boreal Forest Loamy Slopes", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/230X/F230XY612AK" + }, + { + "cokey": 27026716, + "ecoclassid": "F230XY611AK", + "ecoclassname": "Boreal Forest Loamy Frozen Slopes", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/230X/F230XY611AK" + }, + { + "cokey": 27026717, + "ecoclassid": "R230XY630AK", + "ecoclassname": "Alpine Dwarf Scrub Gravelly Slopes", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/230X/R230XY630AK" + } + ], + "OSD_morph": [], + "OSD_narrative": [], + "hz": [ + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80701162, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 27026711, + "dbovendry_h": 0.46, + "dbovendry_l": 0.25, + "dbovendry_r": 0.35, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": 110.7, + "ecec_l": 19.4, + "ecec_r": 47.7, + "hzdepb_r": 10, + "hzdept_r": 0, + "hzname": "Oe", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 3352670, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": 17.4, + "wfifteenbar_l": 12.1, + "wfifteenbar_r": 14.8, + "wthirdbar_h": 52.8, + "wthirdbar_l": 46.4, + "wthirdbar_r": 49.8 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80701158, + "claytotal_h": 18, + "claytotal_l": 10, + "claytotal_r": 15, + "cokey": 27026711, + "dbovendry_h": 1.38, + "dbovendry_l": 1.22, + "dbovendry_r": 1.35, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 29.6, + "ecec_l": 12.5, + "ecec_r": 21.3, + "hzdepb_r": 14, + "hzdept_r": 10, + "hzname": "E", + "lep_h": 3.1, + "lep_l": 1.3, + "lep_r": 2.3, + "mukey": 3352670, + "ph1to1h2o_h": 5.4, + "ph1to1h2o_l": 4.1, + "ph1to1h2o_r": 4.8, + "sandtotal_h": 14, + "sandtotal_l": 5, + "sandtotal_r": 10, + "silttotal_h": 84, + "silttotal_l": 68, + "silttotal_r": 75, + "total_frag_volume": 0, + "wfifteenbar_h": 16.1, + "wfifteenbar_l": 9.9, + "wfifteenbar_r": 13.5, + "wthirdbar_h": 30.5, + "wthirdbar_l": 25.7, + "wthirdbar_r": 28.6 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80701159, + "claytotal_h": 18, + "claytotal_l": 10, + "claytotal_r": 15, + "cokey": 27026711, + "dbovendry_h": 1.23, + "dbovendry_l": 1.18, + "dbovendry_r": 1.22, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 10.1, + "ecec_l": 5.7, + "ecec_r": 8.5, + "hzdepb_r": 21, + "hzdept_r": 14, + "hzname": "Bs", + "lep_h": 1.5, + "lep_l": 0.7, + "lep_r": 1.2, + "mukey": 3352670, + "ph1to1h2o_h": 5.5, + "ph1to1h2o_l": 5, + "ph1to1h2o_r": 5.2, + "sandtotal_h": 14, + "sandtotal_l": 5, + "sandtotal_r": 10, + "silttotal_h": 84, + "silttotal_l": 68, + "silttotal_r": 75, + "total_frag_volume": 0, + "wfifteenbar_h": 11.8, + "wfifteenbar_l": 5.9, + "wfifteenbar_r": 9.3, + "wthirdbar_h": 27.3, + "wthirdbar_l": 21.3, + "wthirdbar_r": 25.1 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80701160, + "claytotal_h": 18, + "claytotal_l": 10, + "claytotal_r": 15, + "cokey": 27026711, + "dbovendry_h": 1.55, + "dbovendry_l": 1.39, + "dbovendry_r": 1.43, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 9.8, + "ecec_l": 5, + "ecec_r": 8.2, + "hzdepb_r": 52, + "hzdept_r": 21, + "hzname": "Bw", + "lep_h": 1.4, + "lep_l": 0.6, + "lep_r": 1.1, + "mukey": 3352670, + "ph1to1h2o_h": 6, + "ph1to1h2o_l": 5, + "ph1to1h2o_r": 5.4, + "sandtotal_h": 14, + "sandtotal_l": 5, + "sandtotal_r": 10, + "silttotal_h": 84, + "silttotal_l": 68, + "silttotal_r": 75, + "total_frag_volume": 0, + "wfifteenbar_h": 11.2, + "wfifteenbar_l": 5.5, + "wfifteenbar_r": 9.3, + "wthirdbar_h": 26.8, + "wthirdbar_l": 20.9, + "wthirdbar_r": 25.1 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80701157, + "claytotal_h": 18, + "claytotal_l": 10, + "claytotal_r": 15, + "cokey": 27026711, + "dbovendry_h": 1.58, + "dbovendry_l": 1.4, + "dbovendry_r": 1.49, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 10, + "ecec_l": 5, + "ecec_r": 8.3, + "hzdepb_r": 95, + "hzdept_r": 52, + "hzname": "BC", + "lep_h": 1.5, + "lep_l": 0.6, + "lep_r": 1.1, + "mukey": 3352670, + "ph1to1h2o_h": 6, + "ph1to1h2o_l": 5.2, + "ph1to1h2o_r": 5.5, + "sandtotal_h": 14, + "sandtotal_l": 5, + "sandtotal_r": 10, + "silttotal_h": 84, + "silttotal_l": 68, + "silttotal_r": 75, + "total_frag_volume": 5, + "wfifteenbar_h": 13, + "wfifteenbar_l": 5.2, + "wfifteenbar_r": 9.5, + "wthirdbar_h": 28.3, + "wthirdbar_l": 19.1, + "wthirdbar_r": 24.5 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80701161, + "claytotal_h": 14, + "claytotal_l": 8, + "claytotal_r": 10, + "cokey": 27026711, + "dbovendry_h": 1.53, + "dbovendry_l": 1.48, + "dbovendry_r": 1.51, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 8, + "ecec_l": 4, + "ecec_r": 5.7, + "hzdepb_r": 152, + "hzdept_r": 95, + "hzname": "2C", + "lep_h": 0.7, + "lep_l": 0.1, + "lep_r": 0.4, + "mukey": 3352670, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 5.2, + "ph1to1h2o_r": 5.3, + "sandtotal_h": 50, + "sandtotal_l": 40, + "sandtotal_r": 45, + "silttotal_h": 50, + "silttotal_l": 37, + "silttotal_r": 45, + "total_frag_volume": 35, + "wfifteenbar_h": 7.2, + "wfifteenbar_l": 1.2, + "wfifteenbar_r": 4.8, + "wthirdbar_h": 17.4, + "wthirdbar_l": 5, + "wthirdbar_r": 15 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80701184, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 27026717, + "dbovendry_h": 0.46, + "dbovendry_l": 0.25, + "dbovendry_r": 0.35, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": 110.7, + "ecec_l": 19.4, + "ecec_r": 47.7, + "hzdepb_r": 7, + "hzdept_r": 0, + "hzname": "Oe", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 3352670, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": 17.4, + "wfifteenbar_l": 12.1, + "wfifteenbar_r": 14.8, + "wthirdbar_h": 52.8, + "wthirdbar_l": 46.4, + "wthirdbar_r": 49.8 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80701188, + "claytotal_h": 16, + "claytotal_l": 5, + "claytotal_r": 10, + "cokey": 27026717, + "dbovendry_h": 1.1, + "dbovendry_l": 1.05, + "dbovendry_r": 1.05, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 9.5, + "ecec_l": 3.3, + "ecec_r": 6.2, + "hzdepb_r": 13, + "hzdept_r": 7, + "hzname": "A", + "lep_h": 1.4, + "lep_l": 0.2, + "lep_r": 0.8, + "mukey": 3352670, + "ph1to1h2o_h": 5, + "ph1to1h2o_l": 4.2, + "ph1to1h2o_r": 4.5, + "sandtotal_h": 35, + "sandtotal_l": 20, + "sandtotal_r": 30, + "silttotal_h": 73, + "silttotal_l": 50, + "silttotal_r": 60, + "total_frag_volume": 5, + "wfifteenbar_h": 15.4, + "wfifteenbar_l": 9.8, + "wfifteenbar_r": 13.2, + "wthirdbar_h": 29.2, + "wthirdbar_l": 23.6, + "wthirdbar_r": 27.5 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80701186, + "claytotal_h": 12, + "claytotal_l": 8, + "claytotal_r": 10, + "cokey": 27026717, + "dbovendry_h": 1.42, + "dbovendry_l": 1.4, + "dbovendry_r": 1.41, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 7.1, + "ecec_l": 4.8, + "ecec_r": 5.9, + "hzdepb_r": 44, + "hzdept_r": 13, + "hzname": "2Bw", + "lep_h": 0.5, + "lep_l": 0.2, + "lep_r": 0.4, + "mukey": 3352670, + "ph1to1h2o_h": 5.6, + "ph1to1h2o_l": 4.3, + "ph1to1h2o_r": 5.1, + "sandtotal_h": 50, + "sandtotal_l": 40, + "sandtotal_r": 45, + "silttotal_h": 50, + "silttotal_l": 38, + "silttotal_r": 45, + "total_frag_volume": 45, + "wfifteenbar_h": 8, + "wfifteenbar_l": 1.5, + "wfifteenbar_r": 5.3, + "wthirdbar_h": 18.5, + "wthirdbar_l": 4.8, + "wthirdbar_r": 14 + }, + { + "cec7_h": 8.9, + "cec7_l": 6.2, + "cec7_r": 7.6, + "chkey": 80701187, + "claytotal_h": 12, + "claytotal_l": 8, + "claytotal_r": 10, + "cokey": 27026717, + "dbovendry_h": 1.54, + "dbovendry_l": 1.53, + "dbovendry_r": 1.53, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 120, + "hzdept_r": 44, + "hzname": "2C", + "lep_h": 0.6, + "lep_l": 0.3, + "lep_r": 0.5, + "mukey": 3352670, + "ph1to1h2o_h": 6, + "ph1to1h2o_l": 5.4, + "ph1to1h2o_r": 5.7, + "sandtotal_h": 50, + "sandtotal_l": 40, + "sandtotal_r": 45, + "silttotal_h": 50, + "silttotal_l": 38, + "silttotal_r": 45, + "total_frag_volume": 45, + "wfifteenbar_h": 4.9, + "wfifteenbar_l": 1, + "wfifteenbar_r": 3.3, + "wthirdbar_h": 15.5, + "wthirdbar_l": 4.3, + "wthirdbar_r": 11.9 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80701185, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 27026717, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 152, + "hzdept_r": 120, + "hzname": "2Cr", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 3352670, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80701183, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 27026716, + "dbovendry_h": 0.4, + "dbovendry_l": 0.19, + "dbovendry_r": 0.3, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": 100, + "ecec_l": 18.8, + "ecec_r": 45.2, + "hzdepb_r": 12, + "hzdept_r": 0, + "hzname": "Oi", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 3352670, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": 18.2, + "wfifteenbar_l": 12.7, + "wfifteenbar_r": 15.5, + "wthirdbar_h": 53, + "wthirdbar_l": 45.4, + "wthirdbar_r": 49.4 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80701182, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 27026716, + "dbovendry_h": 0.63, + "dbovendry_l": 0.38, + "dbovendry_r": 0.53, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": 100, + "ecec_l": 18.8, + "ecec_r": 45.2, + "hzdepb_r": 34, + "hzdept_r": 12, + "hzname": "Oa", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 3352670, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": 14.9, + "wfifteenbar_l": 10.4, + "wfifteenbar_r": 12.7, + "wthirdbar_h": 56.1, + "wthirdbar_l": 53.3, + "wthirdbar_r": 54.8 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80701181, + "claytotal_h": 18, + "claytotal_l": 8, + "claytotal_r": 13, + "cokey": 27026716, + "dbovendry_h": 1.33, + "dbovendry_l": 1.25, + "dbovendry_r": 1.31, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 10.5, + "ecec_l": 4.9, + "ecec_r": 7.7, + "hzdepb_r": 40, + "hzdept_r": 34, + "hzname": "Ag", + "lep_h": 1.8, + "lep_l": 0.6, + "lep_r": 1.2, + "mukey": 3352670, + "ph1to1h2o_h": 5.4, + "ph1to1h2o_l": 4.2, + "ph1to1h2o_r": 4.8, + "sandtotal_h": 14, + "sandtotal_l": 2, + "sandtotal_r": 10, + "silttotal_h": 88, + "silttotal_l": 68, + "silttotal_r": 77, + "total_frag_volume": 0, + "wfifteenbar_h": 17.3, + "wfifteenbar_l": 9.1, + "wfifteenbar_r": 13.7, + "wthirdbar_h": 31.3, + "wthirdbar_l": 23.3, + "wthirdbar_r": 28.8 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80701179, + "claytotal_h": 18, + "claytotal_l": 8, + "claytotal_r": 13, + "cokey": 27026716, + "dbovendry_h": 1.34, + "dbovendry_l": 1.26, + "dbovendry_r": 1.32, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 10.4, + "ecec_l": 4.9, + "ecec_r": 7.7, + "hzdepb_r": 55, + "hzdept_r": 40, + "hzname": "Bjjg", + "lep_h": 1.5, + "lep_l": 0.3, + "lep_r": 1, + "mukey": 3352670, + "ph1to1h2o_h": 5.4, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 5, + "sandtotal_h": 14, + "sandtotal_l": 2, + "sandtotal_r": 10, + "silttotal_h": 88, + "silttotal_l": 68, + "silttotal_r": 77, + "total_frag_volume": 0, + "wfifteenbar_h": 16.3, + "wfifteenbar_l": 5.5, + "wfifteenbar_r": 12.7, + "wthirdbar_h": 30.7, + "wthirdbar_l": 15, + "wthirdbar_r": 28.1 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80701180, + "claytotal_h": 18, + "claytotal_l": 8, + "claytotal_r": 13, + "cokey": 27026716, + "dbovendry_h": 1.52, + "dbovendry_l": 1.45, + "dbovendry_r": 1.49, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 10, + "ecec_l": 4, + "ecec_r": 7.3, + "hzdepb_r": 152, + "hzdept_r": 55, + "hzname": "Cf", + "lep_h": 1.5, + "lep_l": 0.3, + "lep_r": 1, + "mukey": 3352670, + "ph1to1h2o_h": 5.4, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 5, + "sandtotal_h": 14, + "sandtotal_l": 2, + "sandtotal_r": 10, + "silttotal_h": 88, + "silttotal_l": 68, + "silttotal_r": 77, + "total_frag_volume": 0, + "wfifteenbar_h": 13.1, + "wfifteenbar_l": 2.8, + "wfifteenbar_r": 8.9, + "wthirdbar_h": 28.4, + "wthirdbar_l": 11.8, + "wthirdbar_r": 24.8 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80701171, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 27026714, + "dbovendry_h": 0.4, + "dbovendry_l": 0.19, + "dbovendry_r": 0.3, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": 82, + "ecec_l": 14.4, + "ecec_r": 35.3, + "hzdepb_r": 10, + "hzdept_r": 0, + "hzname": "Oi", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 3352670, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": 14.9, + "wfifteenbar_l": 10.4, + "wfifteenbar_r": 12.7, + "wthirdbar_h": 56.1, + "wthirdbar_l": 53.3, + "wthirdbar_r": 54.8 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80701173, + "claytotal_h": 12, + "claytotal_l": 2, + "claytotal_r": 5, + "cokey": 27026714, + "dbovendry_h": 1.25, + "dbovendry_l": 1.07, + "dbovendry_r": 1.19, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 7.3, + "ecec_l": 1.4, + "ecec_r": 3.3, + "hzdepb_r": 19, + "hzdept_r": 10, + "hzname": "A", + "lep_h": 1, + "lep_l": 0, + "lep_r": 0.3, + "mukey": 3352670, + "ph1to1h2o_h": 4.9, + "ph1to1h2o_l": 3.3, + "ph1to1h2o_r": 4.1, + "sandtotal_h": 40, + "sandtotal_l": 20, + "sandtotal_r": 30, + "silttotal_h": 78, + "silttotal_l": 50, + "silttotal_r": 65, + "total_frag_volume": 0, + "wfifteenbar_h": 18, + "wfifteenbar_l": 10.3, + "wfifteenbar_r": 12.8, + "wthirdbar_h": 31.7, + "wthirdbar_l": 26.1, + "wthirdbar_r": 28.1 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80701175, + "claytotal_h": 25, + "claytotal_l": 10, + "claytotal_r": 15, + "cokey": 27026714, + "dbovendry_h": 1.5, + "dbovendry_l": 1.44, + "dbovendry_r": 1.47, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 13.5, + "ecec_l": 5, + "ecec_r": 8.3, + "hzdepb_r": 41, + "hzdept_r": 19, + "hzname": "2Bw", + "lep_h": 0.6, + "lep_l": 0.3, + "lep_r": 0.3, + "mukey": 3352670, + "ph1to1h2o_h": 5.4, + "ph1to1h2o_l": 4.2, + "ph1to1h2o_r": 4.7, + "sandtotal_h": 40, + "sandtotal_l": 20, + "sandtotal_r": 35, + "silttotal_h": 68, + "silttotal_l": 50, + "silttotal_r": 50, + "total_frag_volume": 45, + "wfifteenbar_h": 13.7, + "wfifteenbar_l": 2.6, + "wfifteenbar_r": 5.5, + "wthirdbar_h": 24.9, + "wthirdbar_l": 9.6, + "wthirdbar_r": 14.2 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80701174, + "claytotal_h": 22, + "claytotal_l": 10, + "claytotal_r": 15, + "cokey": 27026714, + "dbovendry_h": 1.61, + "dbovendry_l": 1.44, + "dbovendry_r": 1.58, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 11.7, + "ecec_l": 5, + "ecec_r": 7.2, + "hzdepb_r": 84, + "hzdept_r": 41, + "hzname": "2C", + "lep_h": 0.5, + "lep_l": 0.2, + "lep_r": 0.2, + "mukey": 3352670, + "ph1to1h2o_h": 5.6, + "ph1to1h2o_l": 4.6, + "ph1to1h2o_r": 5.2, + "sandtotal_h": 52, + "sandtotal_l": 38, + "sandtotal_r": 40, + "silttotal_h": 50, + "silttotal_l": 32, + "silttotal_r": 45, + "total_frag_volume": 55, + "wfifteenbar_h": 12.1, + "wfifteenbar_l": 1.9, + "wfifteenbar_r": 4.2, + "wthirdbar_h": 23.9, + "wthirdbar_l": 6.5, + "wthirdbar_r": 11.3 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80701172, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 27026714, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 152, + "hzdept_r": 84, + "hzname": "2Cr", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 3352670, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80701176, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 27026715, + "dbovendry_h": 0.4, + "dbovendry_l": 0.19, + "dbovendry_r": 0.3, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": 100, + "ecec_l": 18.8, + "ecec_r": 45.2, + "hzdepb_r": 40, + "hzdept_r": 0, + "hzname": "Oi", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 3352670, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": 18.2, + "wfifteenbar_l": 12.7, + "wfifteenbar_r": 15.5, + "wthirdbar_h": 53, + "wthirdbar_l": 45.4, + "wthirdbar_r": 49.4 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80701177, + "claytotal_h": 14, + "claytotal_l": 7, + "claytotal_r": 10, + "cokey": 27026715, + "dbovendry_h": 0.82, + "dbovendry_l": 0.59, + "dbovendry_r": 0.71, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 16, + "ecec_l": 9.4, + "ecec_r": 15.3, + "hzdepb_r": 77, + "hzdept_r": 40, + "hzname": "Cg/Oajj", + "lep_h": 1.2, + "lep_l": 0.4, + "lep_r": 0.7, + "mukey": 3352670, + "ph1to1h2o_h": 5.3, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 5.3, + "sandtotal_h": 14, + "sandtotal_l": 5, + "sandtotal_r": 11, + "silttotal_h": 87, + "silttotal_l": 72, + "silttotal_r": 79, + "total_frag_volume": 0, + "wfifteenbar_h": 15.2, + "wfifteenbar_l": 12.2, + "wfifteenbar_r": 13.6, + "wthirdbar_h": 29.9, + "wthirdbar_l": 27.6, + "wthirdbar_r": 28.7 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80701178, + "claytotal_h": 14, + "claytotal_l": 7, + "claytotal_r": 10, + "cokey": 27026715, + "dbovendry_h": 1.37, + "dbovendry_l": 1.33, + "dbovendry_r": 1.36, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 8.3, + "ecec_l": 4.4, + "ecec_r": 6.1, + "hzdepb_r": 152, + "hzdept_r": 77, + "hzname": "Cgf", + "lep_h": 1.3, + "lep_l": 0.5, + "lep_r": 0.9, + "mukey": 3352670, + "ph1to1h2o_h": 5.6, + "ph1to1h2o_l": 4.8, + "ph1to1h2o_r": 5.3, + "sandtotal_h": 14, + "sandtotal_l": 5, + "sandtotal_r": 11, + "silttotal_h": 87, + "silttotal_l": 72, + "silttotal_r": 79, + "total_frag_volume": 0, + "wfifteenbar_h": 16.1, + "wfifteenbar_l": 10.1, + "wfifteenbar_r": 12.9, + "wthirdbar_h": 30.5, + "wthirdbar_l": 25.9, + "wthirdbar_r": 28.2 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80701170, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 27026713, + "dbovendry_h": 0.46, + "dbovendry_l": 0.25, + "dbovendry_r": 0.35, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": 110.7, + "ecec_l": 19.4, + "ecec_r": 47.7, + "hzdepb_r": 7, + "hzdept_r": 0, + "hzname": "Oe", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 3352670, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": 17.4, + "wfifteenbar_l": 12.1, + "wfifteenbar_r": 14.8, + "wthirdbar_h": 52.8, + "wthirdbar_l": 46.4, + "wthirdbar_r": 49.8 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80701166, + "claytotal_h": 16, + "claytotal_l": 3, + "claytotal_r": 5, + "cokey": 27026713, + "dbovendry_h": 1.28, + "dbovendry_l": 1.13, + "dbovendry_r": 1.21, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 9.4, + "ecec_l": 2, + "ecec_r": 3.2, + "hzdepb_r": 13, + "hzdept_r": 7, + "hzname": "AE", + "lep_h": 1.5, + "lep_l": 0.1, + "lep_r": 0.3, + "mukey": 3352670, + "ph1to1h2o_h": 5.6, + "ph1to1h2o_l": 4.3, + "ph1to1h2o_r": 5, + "sandtotal_h": 35, + "sandtotal_l": 20, + "sandtotal_r": 25, + "silttotal_h": 77, + "silttotal_l": 56, + "silttotal_r": 70, + "total_frag_volume": 0, + "wfifteenbar_h": 15.5, + "wfifteenbar_l": 7.4, + "wfifteenbar_r": 9.5, + "wthirdbar_h": 30.1, + "wthirdbar_l": 23.1, + "wthirdbar_r": 25.3 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80701167, + "claytotal_h": 20, + "claytotal_l": 3, + "claytotal_r": 5, + "cokey": 27026713, + "dbovendry_h": 1.51, + "dbovendry_l": 1.36, + "dbovendry_r": 1.41, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 11.6, + "ecec_l": 2, + "ecec_r": 3.2, + "hzdepb_r": 25, + "hzdept_r": 13, + "hzname": "Bw1", + "lep_h": 2.3, + "lep_l": 0.1, + "lep_r": 0.3, + "mukey": 3352670, + "ph1to1h2o_h": 5.6, + "ph1to1h2o_l": 4.8, + "ph1to1h2o_r": 5.2, + "sandtotal_h": 35, + "sandtotal_l": 20, + "sandtotal_r": 25, + "silttotal_h": 77, + "silttotal_l": 54, + "silttotal_r": 70, + "total_frag_volume": 0, + "wfifteenbar_h": 21.5, + "wfifteenbar_l": 8.2, + "wfifteenbar_r": 12.4, + "wthirdbar_h": 33.8, + "wthirdbar_l": 23.2, + "wthirdbar_r": 27.8 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80701168, + "claytotal_h": 20, + "claytotal_l": 3, + "claytotal_r": 5, + "cokey": 27026713, + "dbovendry_h": 1.61, + "dbovendry_l": 1.46, + "dbovendry_r": 1.51, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 11, + "ecec_l": 1.7, + "ecec_r": 3, + "hzdepb_r": 50, + "hzdept_r": 25, + "hzname": "2Bw2", + "lep_h": 1.5, + "lep_l": 0, + "lep_r": 0.1, + "mukey": 3352670, + "ph1to1h2o_h": 6, + "ph1to1h2o_l": 5, + "ph1to1h2o_r": 5.4, + "sandtotal_h": 35, + "sandtotal_l": 20, + "sandtotal_r": 25, + "silttotal_h": 77, + "silttotal_l": 54, + "silttotal_r": 70, + "total_frag_volume": 35, + "wfifteenbar_h": 12.1, + "wfifteenbar_l": 1, + "wfifteenbar_r": 2.9, + "wthirdbar_h": 24.2, + "wthirdbar_l": 8, + "wthirdbar_r": 12.7 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80701169, + "claytotal_h": 16, + "claytotal_l": 3, + "claytotal_r": 5, + "cokey": 27026713, + "dbovendry_h": 1.54, + "dbovendry_l": 1.4, + "dbovendry_r": 1.47, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 9, + "ecec_l": 1.7, + "ecec_r": 3, + "hzdepb_r": 152, + "hzdept_r": 50, + "hzname": "2C", + "lep_h": 0.9, + "lep_l": 0, + "lep_r": 0.1, + "mukey": 3352670, + "ph1to1h2o_h": 6, + "ph1to1h2o_l": 5, + "ph1to1h2o_r": 5.4, + "sandtotal_h": 35, + "sandtotal_l": 20, + "sandtotal_r": 25, + "silttotal_h": 77, + "silttotal_l": 56, + "silttotal_r": 70, + "total_frag_volume": 35, + "wfifteenbar_h": 9.7, + "wfifteenbar_l": 1, + "wfifteenbar_r": 2.8, + "wthirdbar_h": 22.1, + "wthirdbar_l": 7.7, + "wthirdbar_r": 12.5 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80701165, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 27026712, + "dbovendry_h": 0.46, + "dbovendry_l": 0.25, + "dbovendry_r": 0.35, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": 100, + "ecec_l": 18.8, + "ecec_r": 45.2, + "hzdepb_r": 24, + "hzdept_r": 0, + "hzname": "Oe", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 3352670, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": 17.4, + "wfifteenbar_l": 12.1, + "wfifteenbar_r": 14.8, + "wthirdbar_h": 52.8, + "wthirdbar_l": 46.4, + "wthirdbar_r": 49.8 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80701163, + "claytotal_h": 17, + "claytotal_l": 5, + "claytotal_r": 10, + "cokey": 27026712, + "dbovendry_h": 1.32, + "dbovendry_l": 1.27, + "dbovendry_r": 1.29, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 10.1, + "ecec_l": 3.3, + "ecec_r": 6.2, + "hzdepb_r": 99, + "hzdept_r": 24, + "hzname": "Cg/Oejj", + "lep_h": 1.6, + "lep_l": 0.3, + "lep_r": 0.8, + "mukey": 3352670, + "ph1to1h2o_h": 5.3, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 5.3, + "sandtotal_h": 14, + "sandtotal_l": 2, + "sandtotal_r": 13, + "silttotal_h": 88, + "silttotal_l": 69, + "silttotal_r": 77, + "total_frag_volume": 0, + "wfifteenbar_h": 23.8, + "wfifteenbar_l": 14.9, + "wfifteenbar_r": 19.6, + "wthirdbar_h": 35, + "wthirdbar_l": 29.7, + "wthirdbar_r": 32.7 + }, + { + "cec7_h": 14.3, + "cec7_l": 4.1, + "cec7_r": 7.6, + "chkey": 80701164, + "claytotal_h": 17, + "claytotal_l": 5, + "claytotal_r": 10, + "cokey": 27026712, + "dbovendry_h": 1.57, + "dbovendry_l": 1.51, + "dbovendry_r": 1.53, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 152, + "hzdept_r": 99, + "hzname": "Cgf", + "lep_h": 1.8, + "lep_l": 0.3, + "lep_r": 0.9, + "mukey": 3352670, + "ph1to1h2o_h": 6, + "ph1to1h2o_l": 4.8, + "ph1to1h2o_r": 5.7, + "sandtotal_h": 14, + "sandtotal_l": 2, + "sandtotal_r": 13, + "silttotal_h": 88, + "silttotal_l": 69, + "silttotal_r": 77, + "total_frag_volume": 0, + "wfifteenbar_h": 11.5, + "wfifteenbar_l": 3, + "wfifteenbar_r": 6, + "wthirdbar_h": 27.1, + "wthirdbar_l": 16.8, + "wthirdbar_r": 21.5 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80701190, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 27026718, + "dbovendry_h": 0.4, + "dbovendry_l": 0.19, + "dbovendry_r": 0.3, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": 82, + "ecec_l": 14.4, + "ecec_r": 35.3, + "hzdepb_r": 2, + "hzdept_r": 0, + "hzname": "Oi", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 3352670, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": 14.9, + "wfifteenbar_l": 10.4, + "wfifteenbar_r": 12.7, + "wthirdbar_h": 56.1, + "wthirdbar_l": 53.3, + "wthirdbar_r": 54.8 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80701194, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 27026719, + "dbovendry_h": 0.4, + "dbovendry_l": 0.19, + "dbovendry_r": 0.3, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": 82, + "ecec_l": 14.4, + "ecec_r": 35.3, + "hzdepb_r": 15, + "hzdept_r": 0, + "hzname": "Oi", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 3352670, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": 14.9, + "wfifteenbar_l": 10.4, + "wfifteenbar_r": 12.7, + "wthirdbar_h": 56.1, + "wthirdbar_l": 53.3, + "wthirdbar_r": 54.8 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80701193, + "claytotal_h": 15, + "claytotal_l": 5, + "claytotal_r": 10, + "cokey": 27026718, + "dbovendry_h": 1.26, + "dbovendry_l": 1.21, + "dbovendry_r": 1.24, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 8.9, + "ecec_l": 3.2, + "ecec_r": 6.1, + "hzdepb_r": 6, + "hzdept_r": 2, + "hzname": "A", + "lep_h": 1.4, + "lep_l": 0.3, + "lep_r": 0.8, + "mukey": 3352670, + "ph1to1h2o_h": 5.4, + "ph1to1h2o_l": 4, + "ph1to1h2o_r": 4.7, + "sandtotal_h": 35, + "sandtotal_l": 20, + "sandtotal_r": 30, + "silttotal_h": 72, + "silttotal_l": 50, + "silttotal_r": 60, + "total_frag_volume": 5, + "wfifteenbar_h": 14.8, + "wfifteenbar_l": 7.4, + "wfifteenbar_r": 11.3, + "wthirdbar_h": 29.1, + "wthirdbar_l": 21.5, + "wthirdbar_r": 26 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80701191, + "claytotal_h": 16, + "claytotal_l": 8, + "claytotal_r": 10, + "cokey": 27026718, + "dbovendry_h": 1.51, + "dbovendry_l": 1.45, + "dbovendry_r": 1.48, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 8.8, + "ecec_l": 4, + "ecec_r": 5.6, + "hzdepb_r": 38, + "hzdept_r": 6, + "hzname": "2Bw", + "lep_h": 0.7, + "lep_l": 0.2, + "lep_r": 0.4, + "mukey": 3352670, + "ph1to1h2o_h": 5.7, + "ph1to1h2o_l": 4.6, + "ph1to1h2o_r": 5.3, + "sandtotal_h": 52, + "sandtotal_l": 40, + "sandtotal_r": 45, + "silttotal_h": 50, + "silttotal_l": 35, + "silttotal_r": 45, + "total_frag_volume": 45, + "wfifteenbar_h": 7, + "wfifteenbar_l": 0.8, + "wfifteenbar_r": 3.7, + "wthirdbar_h": 17.2, + "wthirdbar_l": 3.3, + "wthirdbar_r": 12.5 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80701195, + "claytotal_h": 14, + "claytotal_l": 3, + "claytotal_r": 5, + "cokey": 27026719, + "dbovendry_h": 1.49, + "dbovendry_l": 1.4, + "dbovendry_r": 1.44, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 8.3, + "ecec_l": 2, + "ecec_r": 3.2, + "hzdepb_r": 19, + "hzdept_r": 15, + "hzname": "AE", + "lep_h": 1.3, + "lep_l": 0, + "lep_r": 0.3, + "mukey": 3352670, + "ph1to1h2o_h": 5.4, + "ph1to1h2o_l": 4.4, + "ph1to1h2o_r": 4.9, + "sandtotal_h": 75, + "sandtotal_l": 60, + "sandtotal_r": 70, + "silttotal_h": 37, + "silttotal_l": 12, + "silttotal_r": 25, + "total_frag_volume": 15, + "wfifteenbar_h": 18.4, + "wfifteenbar_l": 4.7, + "wfifteenbar_r": 9.9, + "wthirdbar_h": 25.9, + "wthirdbar_l": 9.7, + "wthirdbar_r": 17.9 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80701197, + "claytotal_h": 14, + "claytotal_l": 3, + "claytotal_r": 5, + "cokey": 27026719, + "dbovendry_h": 1.58, + "dbovendry_l": 1.52, + "dbovendry_r": 1.53, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 8.3, + "ecec_l": 2, + "ecec_r": 3.2, + "hzdepb_r": 38, + "hzdept_r": 19, + "hzname": "Bw", + "lep_h": 1, + "lep_l": 0.1, + "lep_r": 0.2, + "mukey": 3352670, + "ph1to1h2o_h": 5.6, + "ph1to1h2o_l": 4.6, + "ph1to1h2o_r": 5.1, + "sandtotal_h": 75, + "sandtotal_l": 60, + "sandtotal_r": 70, + "silttotal_h": 37, + "silttotal_l": 12, + "silttotal_r": 25, + "total_frag_volume": 20, + "wfifteenbar_h": 17, + "wfifteenbar_l": 7.7, + "wfifteenbar_r": 11.2, + "wthirdbar_h": 22.1, + "wthirdbar_l": 14.3, + "wthirdbar_r": 18.3 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80701196, + "claytotal_h": 14, + "claytotal_l": 2, + "claytotal_r": 5, + "cokey": 27026719, + "dbovendry_h": 1.52, + "dbovendry_l": 1.43, + "dbovendry_r": 1.48, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 8, + "ecec_l": 1.1, + "ecec_r": 3, + "hzdepb_r": 55, + "hzdept_r": 38, + "hzname": "BC", + "lep_h": 0.8, + "lep_l": 0, + "lep_r": 0.1, + "mukey": 3352670, + "ph1to1h2o_h": 6, + "ph1to1h2o_l": 5, + "ph1to1h2o_r": 5.4, + "sandtotal_h": 35, + "sandtotal_l": 20, + "sandtotal_r": 25, + "silttotal_h": 78, + "silttotal_l": 56, + "silttotal_r": 70, + "total_frag_volume": 30, + "wfifteenbar_h": 7.7, + "wfifteenbar_l": 0.3, + "wfifteenbar_r": 3.1, + "wthirdbar_h": 18.6, + "wthirdbar_l": 3.2, + "wthirdbar_r": 13.4 + }, + { + "cec7_h": 13.6, + "cec7_l": 6.2, + "cec7_r": 7.6, + "chkey": 80701192, + "claytotal_h": 16, + "claytotal_l": 8, + "claytotal_r": 10, + "cokey": 27026718, + "dbovendry_h": 1.66, + "dbovendry_l": 1.5, + "dbovendry_r": 1.6, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 152, + "hzdept_r": 38, + "hzname": "2C", + "lep_h": 0.8, + "lep_l": 0.1, + "lep_r": 0.3, + "mukey": 3352670, + "ph1to1h2o_h": 6.2, + "ph1to1h2o_l": 5, + "ph1to1h2o_r": 5.8, + "sandtotal_h": 52, + "sandtotal_l": 40, + "sandtotal_r": 45, + "silttotal_h": 50, + "silttotal_l": 35, + "silttotal_r": 45, + "total_frag_volume": 60, + "wfifteenbar_h": 7.4, + "wfifteenbar_l": 0.7, + "wfifteenbar_r": 2.5, + "wthirdbar_h": 17.6, + "wthirdbar_l": 3, + "wthirdbar_r": 8.7 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80701198, + "claytotal_h": 14, + "claytotal_l": 2, + "claytotal_r": 5, + "cokey": 27026719, + "dbovendry_h": 1.55, + "dbovendry_l": 1.4, + "dbovendry_r": 1.48, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 8, + "ecec_l": 1.1, + "ecec_r": 3, + "hzdepb_r": 152, + "hzdept_r": 55, + "hzname": "C", + "lep_h": 0.5, + "lep_l": 0, + "lep_r": 0.1, + "mukey": 3352670, + "ph1to1h2o_h": 6, + "ph1to1h2o_l": 5, + "ph1to1h2o_r": 5.5, + "sandtotal_h": 35, + "sandtotal_l": 20, + "sandtotal_r": 25, + "silttotal_h": 78, + "silttotal_l": 56, + "silttotal_r": 70, + "total_frag_volume": 65, + "wfifteenbar_h": 7.7, + "wfifteenbar_l": 0.3, + "wfifteenbar_r": 1.5, + "wthirdbar_h": 18.7, + "wthirdbar_l": 3, + "wthirdbar_r": 6.7 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80701189, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 27026718, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 177, + "hzdept_r": 152, + "hzname": "2Cr", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 3352670, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + } + ], + "spn": [ + { + "closest_pt_x": -157.2767099, + "closest_pt_y": 62.32776717, + "cokey": 27026711, + "compkind": "Taxon above family", + "compname": "e30-boreal forest-silty slopes", + "comppct_r": 30, + "dist_meters": 0, + "elev_r": 294, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 3352670, + "nirrcapcl": 7, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 18, + "taxorder": "Spodosols", + "taxsubgrp": "Typic Haplocryods", + "which": "a" + }, + { + "closest_pt_x": -157.2767099, + "closest_pt_y": 62.32776717, + "cokey": 27026717, + "compkind": "Taxon above family", + "compname": "e30-boreal alpine scrub-gravelly colluvial slopes", + "comppct_r": 29, + "dist_meters": 0, + "elev_r": 625, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 3352670, + "nirrcapcl": 7, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 25, + "taxorder": "Inceptisols", + "taxsubgrp": "Typic Haplogelepts", + "which": "a" + }, + { + "closest_pt_x": -157.2767099, + "closest_pt_y": 62.32776717, + "cokey": 27026716, + "compkind": "Taxon above family", + "compname": "e30-boreal taiga-loamy frozen colluvial slopes", + "comppct_r": 13, + "dist_meters": 0, + "elev_r": 294, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 3352670, + "nirrcapcl": 7, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 14, + "taxorder": "Gelisols", + "taxsubgrp": "Typic Histoturbels", + "which": "a" + }, + { + "closest_pt_x": -157.2767099, + "closest_pt_y": 62.32776717, + "cokey": 27026714, + "compkind": "Taxon above family", + "compname": "e30-boreal taiga-silty slopes", + "comppct_r": 7, + "dist_meters": 0, + "elev_r": 294, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 3352670, + "nirrcapcl": 6, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 15, + "taxorder": "Inceptisols", + "taxsubgrp": "Typic Dystrocryepts", + "which": "a" + }, + { + "closest_pt_x": -157.2767099, + "closest_pt_y": 62.32776717, + "cokey": 27026715, + "compkind": "Taxon above family", + "compname": "e30-boreal taiga/tussock-silty frozen slopes", + "comppct_r": 6, + "dist_meters": 0, + "elev_r": 294, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 3352670, + "nirrcapcl": 6, + "nirrcapscl": "s", + "nirrcapunit": null, + "slope_r": 2, + "taxorder": "Gelisols", + "taxsubgrp": "Typic Histoturbels", + "which": "a" + }, + { + "closest_pt_x": -157.2767099, + "closest_pt_y": 62.32776717, + "cokey": 27026713, + "compkind": "Taxon above family", + "compname": "e30-boreal subalpine scrub-loamy colluvial slopes", + "comppct_r": 5, + "dist_meters": 0, + "elev_r": 600, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 3352670, + "nirrcapcl": 7, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 14, + "taxorder": "Inceptisols", + "taxsubgrp": "Typic Dystrocryepts", + "which": "a" + }, + { + "closest_pt_x": -157.2767099, + "closest_pt_y": 62.32776717, + "cokey": 27026712, + "compkind": "Taxon above family", + "compname": "e30-boreal scrub-silty frozen drainageways", + "comppct_r": 4, + "dist_meters": 0, + "elev_r": 294, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 3352670, + "nirrcapcl": 6, + "nirrcapscl": "s", + "nirrcapunit": null, + "slope_r": 1, + "taxorder": "Gelisols", + "taxsubgrp": "Fluvaquentic Historthels", + "which": "a" + }, + { + "closest_pt_x": -157.2767099, + "closest_pt_y": 62.32776717, + "cokey": 27026718, + "compkind": "Taxon above family", + "compname": "e30-boreal alpine dwarf scrub-gravelly colluvial slopes", + "comppct_r": 3, + "dist_meters": 0, + "elev_r": 625, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 3352670, + "nirrcapcl": 7, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 35, + "taxorder": "Inceptisols", + "taxsubgrp": "Typic Haplogelepts", + "which": "a" + }, + { + "closest_pt_x": -157.2767099, + "closest_pt_y": 62.32776717, + "cokey": 27026719, + "compkind": "Taxon above family", + "compname": "e30-boreal subalpine woodland-gravelly colluvial slopes", + "comppct_r": 3, + "dist_meters": 0, + "elev_r": 600, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 3352670, + "nirrcapcl": 7, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 20, + "taxorder": "Inceptisols", + "taxsubgrp": "Typic Dystrocryepts", + "which": "a" + } + ] + } +} diff --git a/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[63.52666854,-156.4422738].json b/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[63.52666854,-156.4422738].json new file mode 100644 index 0000000..9e0b4e3 --- /dev/null +++ b/soil_id/tests/us/__snapshots__/test_api_snapshots/test_api_snapshot[63.52666854,-156.4422738].json @@ -0,0 +1,2597 @@ +{ + "elev": { + "location": { + "spatialReference": { + "latestWkid": 4326, + "wkid": 4326 + }, + "x": -156.4422738, + "y": 63.52666854 + }, + "locationId": 0, + "rasterId": 7683, + "resolution": 5, + "value": "88.169868469" + }, + "soilweb": { + "ESD": [ + { + "cokey": 26837431, + "ecoclassid": "F230XY612AK", + "ecoclassname": "Boreal Forest Loamy Slopes", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/230X/F230XY612AK" + }, + { + "cokey": 26837432, + "ecoclassid": "R230XY610AK", + "ecoclassname": "Boreal Scrub Silty Frozen Drainages", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/230X/R230XY610AK" + }, + { + "cokey": 26837434, + "ecoclassid": "F230XY611AK", + "ecoclassname": "Boreal Forest Loamy Frozen Slopes", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/230X/F230XY611AK" + }, + { + "cokey": 26837436, + "ecoclassid": "R230XY620AK", + "ecoclassname": "Boreal Peat Frozen Flats Complex", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/230X/R230XY620AK" + }, + { + "cokey": 26837483, + "ecoclassid": "F230XY611AK", + "ecoclassname": "Boreal Forest Loamy Frozen Slopes", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/230X/F230XY611AK" + }, + { + "cokey": 26837484, + "ecoclassid": "R230XY620AK", + "ecoclassname": "Boreal Peat Frozen Flats Complex", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/230X/R230XY620AK" + }, + { + "cokey": 26837485, + "ecoclassid": "R230XY601AK", + "ecoclassname": "Boreal Forest Flood Plain Complex", + "edit_url": "https://edit.jornada.nmsu.edu/catalogs/esd/230X/R230XY601AK" + } + ], + "OSD_morph": [], + "OSD_narrative": [], + "hz": [ + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80108837, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26837434, + "dbovendry_h": 0.4, + "dbovendry_l": 0.19, + "dbovendry_r": 0.3, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": 100, + "ecec_l": 18.8, + "ecec_r": 45.2, + "hzdepb_r": 23, + "hzdept_r": 0, + "hzname": "Oi", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 3375378, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": 18.2, + "wfifteenbar_l": 12.7, + "wfifteenbar_r": 15.5, + "wthirdbar_h": 53, + "wthirdbar_l": 45.4, + "wthirdbar_r": 49.4 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80108838, + "claytotal_h": 16, + "claytotal_l": 8, + "claytotal_r": 12, + "cokey": 26837434, + "dbovendry_h": 1.29, + "dbovendry_l": 1.08, + "dbovendry_r": 1.22, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 9.5, + "ecec_l": 5, + "ecec_r": 7.3, + "hzdepb_r": 39, + "hzdept_r": 23, + "hzname": "Ag", + "lep_h": 1.5, + "lep_l": 0.6, + "lep_r": 1, + "mukey": 3375378, + "ph1to1h2o_h": 5.7, + "ph1to1h2o_l": 3.9, + "ph1to1h2o_r": 5.5, + "sandtotal_h": 14, + "sandtotal_l": 4, + "sandtotal_r": 12, + "silttotal_h": 85, + "silttotal_l": 70, + "silttotal_r": 76, + "total_frag_volume": 0, + "wfifteenbar_h": 19.7, + "wfifteenbar_l": 12.9, + "wfifteenbar_r": 15.8, + "wthirdbar_h": 32.8, + "wthirdbar_l": 28.2, + "wthirdbar_r": 30.3 + }, + { + "cec7_h": 14.6, + "cec7_l": 7.7, + "cec7_r": 11.2, + "chkey": 80108839, + "claytotal_h": 16, + "claytotal_l": 8, + "claytotal_r": 12, + "cokey": 26837434, + "dbovendry_h": 1.38, + "dbovendry_l": 1.34, + "dbovendry_r": 1.36, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 152, + "hzdept_r": 39, + "hzname": "Cgf", + "lep_h": 1.5, + "lep_l": 0.6, + "lep_r": 1.1, + "mukey": 3375378, + "ph1to1h2o_h": 6.6, + "ph1to1h2o_l": 5, + "ph1to1h2o_r": 6.4, + "sandtotal_h": 14, + "sandtotal_l": 4, + "sandtotal_r": 12, + "silttotal_h": 85, + "silttotal_l": 70, + "silttotal_r": 76, + "total_frag_volume": 0, + "wfifteenbar_h": 17.1, + "wfifteenbar_l": 10.6, + "wfifteenbar_r": 13.9, + "wthirdbar_h": 31.2, + "wthirdbar_l": 26.3, + "wthirdbar_r": 28.9 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80109208, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26837483, + "dbovendry_h": 0.4, + "dbovendry_l": 0.19, + "dbovendry_r": 0.3, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": 100, + "ecec_l": 18.8, + "ecec_r": 45.2, + "hzdepb_r": 23, + "hzdept_r": 0, + "hzname": "Oi", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 3375385, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": 18.2, + "wfifteenbar_l": 12.7, + "wfifteenbar_r": 15.5, + "wthirdbar_h": 53, + "wthirdbar_l": 45.4, + "wthirdbar_r": 49.4 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80109209, + "claytotal_h": 18, + "claytotal_l": 8, + "claytotal_r": 13, + "cokey": 26837483, + "dbovendry_h": 1.31, + "dbovendry_l": 1.08, + "dbovendry_r": 1.23, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 10.6, + "ecec_l": 5, + "ecec_r": 7.8, + "hzdepb_r": 35, + "hzdept_r": 23, + "hzname": "Ag", + "lep_h": 1.7, + "lep_l": 0.6, + "lep_r": 1.1, + "mukey": 3375385, + "ph1to1h2o_h": 5.7, + "ph1to1h2o_l": 4.9, + "ph1to1h2o_r": 5.5, + "sandtotal_h": 14, + "sandtotal_l": 2, + "sandtotal_r": 10, + "silttotal_h": 88, + "silttotal_l": 68, + "silttotal_r": 77, + "total_frag_volume": 0, + "wfifteenbar_h": 20.7, + "wfifteenbar_l": 13, + "wfifteenbar_r": 16.3, + "wthirdbar_h": 33.3, + "wthirdbar_l": 28.3, + "wthirdbar_r": 30.7 + }, + { + "cec7_h": 16.3, + "cec7_l": 7.7, + "cec7_r": 12.1, + "chkey": 80109210, + "claytotal_h": 18, + "claytotal_l": 8, + "claytotal_r": 13, + "cokey": 26837483, + "dbovendry_h": 1.38, + "dbovendry_l": 1.29, + "dbovendry_r": 1.36, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 58, + "hzdept_r": 35, + "hzname": "Cg", + "lep_h": 1.8, + "lep_l": 0.6, + "lep_r": 1.2, + "mukey": 3375385, + "ph1to1h2o_h": 6.6, + "ph1to1h2o_l": 5, + "ph1to1h2o_r": 6.2, + "sandtotal_h": 14, + "sandtotal_l": 2, + "sandtotal_r": 10, + "silttotal_h": 88, + "silttotal_l": 68, + "silttotal_r": 77, + "total_frag_volume": 0, + "wfifteenbar_h": 17.9, + "wfifteenbar_l": 10.5, + "wfifteenbar_r": 14.3, + "wthirdbar_h": 31.7, + "wthirdbar_l": 26.3, + "wthirdbar_r": 29.2 + }, + { + "cec7_h": 16.3, + "cec7_l": 7.7, + "cec7_r": 12.1, + "chkey": 80109211, + "claytotal_h": 18, + "claytotal_l": 8, + "claytotal_r": 13, + "cokey": 26837483, + "dbovendry_h": 1.38, + "dbovendry_l": 1.29, + "dbovendry_r": 1.36, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 152, + "hzdept_r": 58, + "hzname": "Cgf", + "lep_h": 1.8, + "lep_l": 0.6, + "lep_r": 1.2, + "mukey": 3375385, + "ph1to1h2o_h": 6.6, + "ph1to1h2o_l": 5, + "ph1to1h2o_r": 6.4, + "sandtotal_h": 14, + "sandtotal_l": 2, + "sandtotal_r": 10, + "silttotal_h": 88, + "silttotal_l": 68, + "silttotal_r": 77, + "total_frag_volume": 0, + "wfifteenbar_h": 17.9, + "wfifteenbar_l": 10.5, + "wfifteenbar_r": 14.3, + "wthirdbar_h": 31.7, + "wthirdbar_l": 26.3, + "wthirdbar_r": 29.2 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80108802, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26837431, + "dbovendry_h": 0.4, + "dbovendry_l": 0.19, + "dbovendry_r": 0.3, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": 82, + "ecec_l": 14.4, + "ecec_r": 35.3, + "hzdepb_r": 6, + "hzdept_r": 0, + "hzname": "Oi", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 3375378, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": 14.9, + "wfifteenbar_l": 10.4, + "wfifteenbar_r": 12.7, + "wthirdbar_h": 56.1, + "wthirdbar_l": 53.3, + "wthirdbar_r": 54.8 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80108799, + "claytotal_h": 15, + "claytotal_l": 2, + "claytotal_r": 5, + "cokey": 26837431, + "dbovendry_h": 1.28, + "dbovendry_l": 1.09, + "dbovendry_r": 1.19, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 8.9, + "ecec_l": 1.4, + "ecec_r": 3.3, + "hzdepb_r": 9, + "hzdept_r": 6, + "hzname": "A", + "lep_h": 1.4, + "lep_l": 0, + "lep_r": 0.3, + "mukey": 3375378, + "ph1to1h2o_h": 4.2, + "ph1to1h2o_l": 3, + "ph1to1h2o_r": 3.6, + "sandtotal_h": 35, + "sandtotal_l": 15, + "sandtotal_r": 20, + "silttotal_h": 83, + "silttotal_l": 58, + "silttotal_r": 75, + "total_frag_volume": 0, + "wfifteenbar_h": 17.1, + "wfifteenbar_l": 9.1, + "wfifteenbar_r": 11.6, + "wthirdbar_h": 31.1, + "wthirdbar_l": 25, + "wthirdbar_r": 27.2 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80108801, + "claytotal_h": 15, + "claytotal_l": 2, + "claytotal_r": 5, + "cokey": 26837431, + "dbovendry_h": 1.54, + "dbovendry_l": 1.48, + "dbovendry_r": 1.5, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 8.7, + "ecec_l": 1.3, + "ecec_r": 3.2, + "hzdepb_r": 56, + "hzdept_r": 9, + "hzname": "Bw", + "lep_h": 1.2, + "lep_l": 0, + "lep_r": 0.2, + "mukey": 3375378, + "ph1to1h2o_h": 5.5, + "ph1to1h2o_l": 4.2, + "ph1to1h2o_r": 4.9, + "sandtotal_h": 70, + "sandtotal_l": 53, + "sandtotal_r": 55, + "silttotal_h": 45, + "silttotal_l": 25, + "silttotal_r": 40, + "total_frag_volume": 0, + "wfifteenbar_h": 15.8, + "wfifteenbar_l": 4.3, + "wfifteenbar_r": 7.8, + "wthirdbar_h": 24.1, + "wthirdbar_l": 13.4, + "wthirdbar_r": 17.5 + }, + { + "cec7_h": 13.2, + "cec7_l": 1.8, + "cec7_r": 4.8, + "chkey": 80108800, + "claytotal_h": 15, + "claytotal_l": 2, + "claytotal_r": 5, + "cokey": 26837431, + "dbovendry_h": 1.62, + "dbovendry_l": 1.51, + "dbovendry_r": 1.56, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 141, + "hzdept_r": 56, + "hzname": "C", + "lep_h": 1.6, + "lep_l": 0, + "lep_r": 0.4, + "mukey": 3375378, + "ph1to1h2o_h": 6.8, + "ph1to1h2o_l": 5.4, + "ph1to1h2o_r": 6, + "sandtotal_h": 70, + "sandtotal_l": 53, + "sandtotal_r": 55, + "silttotal_h": 45, + "silttotal_l": 25, + "silttotal_r": 40, + "total_frag_volume": 0, + "wfifteenbar_h": 13.5, + "wfifteenbar_l": 1.4, + "wfifteenbar_r": 5, + "wthirdbar_h": 22.5, + "wthirdbar_l": 8.1, + "wthirdbar_r": 14.4 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80108798, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26837431, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 166, + "hzdept_r": 141, + "hzname": "2Cr", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 3375378, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": 9.6, + "cec7_l": 1.4, + "cec7_r": 4.2, + "chkey": 80109201, + "claytotal_h": 12, + "claytotal_l": 2, + "claytotal_r": 5, + "cokey": 26837485, + "dbovendry_h": 1.64, + "dbovendry_l": 1.48, + "dbovendry_r": 1.56, + "ec_h": 0.5, + "ec_l": 0.1, + "ec_r": 0.3, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 12, + "hzdept_r": 0, + "hzname": "AC", + "lep_h": 1.1, + "lep_l": 0, + "lep_r": 0.3, + "mukey": 3375385, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.2, + "ph1to1h2o_r": 7.6, + "sandtotal_h": 75, + "sandtotal_l": 50, + "sandtotal_r": 65, + "silttotal_h": 48, + "silttotal_l": 13, + "silttotal_r": 30, + "total_frag_volume": 0, + "wfifteenbar_h": 10.4, + "wfifteenbar_l": 1.2, + "wfifteenbar_r": 4.6, + "wthirdbar_h": 20, + "wthirdbar_l": 7.4, + "wthirdbar_r": 13.8 + }, + { + "cec7_h": 5, + "cec7_l": 0.8, + "cec7_r": 1.4, + "chkey": 80109200, + "claytotal_h": 6, + "claytotal_l": 1, + "claytotal_r": 2, + "cokey": 26837485, + "dbovendry_h": 1.75, + "dbovendry_l": 1.56, + "dbovendry_r": 1.72, + "ec_h": 0.5, + "ec_l": 0.1, + "ec_r": 0.3, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 152, + "hzdept_r": 12, + "hzname": "2C", + "lep_h": 0.2, + "lep_l": 0, + "lep_r": 0, + "mukey": 3375385, + "ph1to1h2o_h": 8.4, + "ph1to1h2o_l": 7.2, + "ph1to1h2o_r": 7.6, + "sandtotal_h": 97, + "sandtotal_l": 87, + "sandtotal_r": 90, + "silttotal_h": 12, + "silttotal_l": 0, + "silttotal_r": 8, + "total_frag_volume": 70, + "wfifteenbar_h": 3.2, + "wfifteenbar_l": 0.1, + "wfifteenbar_r": 0.4, + "wthirdbar_h": 7, + "wthirdbar_l": 1.1, + "wthirdbar_r": 2 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80109094, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26837488, + "dbovendry_h": 0.4, + "dbovendry_l": 0.19, + "dbovendry_r": 0.3, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": 26.5, + "ecec_l": 10.8, + "ecec_r": 16.9, + "hzdepb_r": 45, + "hzdept_r": 0, + "hzname": "Oi", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 3375385, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": 18.2, + "wfifteenbar_l": 12.7, + "wfifteenbar_r": 15.5, + "wthirdbar_h": 53, + "wthirdbar_l": 45.4, + "wthirdbar_r": 49.4 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80108822, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26837436, + "dbovendry_h": 0.4, + "dbovendry_l": 0.19, + "dbovendry_r": 0.3, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": 100, + "ecec_l": 18.8, + "ecec_r": 45.2, + "hzdepb_r": 40, + "hzdept_r": 0, + "hzname": "Oi", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 3375378, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": 18.2, + "wfifteenbar_l": 12.7, + "wfifteenbar_r": 15.5, + "wthirdbar_h": 53, + "wthirdbar_l": 45.4, + "wthirdbar_r": 49.4 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80108823, + "claytotal_h": 14, + "claytotal_l": 7, + "claytotal_r": 10, + "cokey": 26837436, + "dbovendry_h": 0.82, + "dbovendry_l": 0.59, + "dbovendry_r": 0.71, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 16, + "ecec_l": 9.4, + "ecec_r": 15.3, + "hzdepb_r": 61, + "hzdept_r": 40, + "hzname": "Cg/Oajj", + "lep_h": 1.2, + "lep_l": 0.4, + "lep_r": 0.7, + "mukey": 3375378, + "ph1to1h2o_h": 5.3, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 5.3, + "sandtotal_h": 14, + "sandtotal_l": 5, + "sandtotal_r": 11, + "silttotal_h": 87, + "silttotal_l": 72, + "silttotal_r": 79, + "total_frag_volume": 0, + "wfifteenbar_h": 15.2, + "wfifteenbar_l": 12.2, + "wfifteenbar_r": 13.6, + "wthirdbar_h": 29.9, + "wthirdbar_l": 27.6, + "wthirdbar_r": 28.7 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80109095, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26837488, + "dbovendry_h": 0.46, + "dbovendry_l": 0.25, + "dbovendry_r": 0.35, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": 53.1, + "ecec_l": 21.7, + "ecec_r": 40.2, + "hzdepb_r": 152, + "hzdept_r": 45, + "hzname": "Oef", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 3375385, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": 17.4, + "wfifteenbar_l": 12.1, + "wfifteenbar_r": 15.7, + "wthirdbar_h": 52.8, + "wthirdbar_l": 46.4, + "wthirdbar_r": 50.8 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80108824, + "claytotal_h": 14, + "claytotal_l": 7, + "claytotal_r": 10, + "cokey": 26837436, + "dbovendry_h": 1.37, + "dbovendry_l": 1.33, + "dbovendry_r": 1.36, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 8.3, + "ecec_l": 4.4, + "ecec_r": 6.1, + "hzdepb_r": 152, + "hzdept_r": 61, + "hzname": "Cgf", + "lep_h": 1.3, + "lep_l": 0.5, + "lep_r": 0.9, + "mukey": 3375378, + "ph1to1h2o_h": 5.6, + "ph1to1h2o_l": 4.8, + "ph1to1h2o_r": 5.3, + "sandtotal_h": 14, + "sandtotal_l": 5, + "sandtotal_r": 11, + "silttotal_h": 87, + "silttotal_l": 72, + "silttotal_r": 79, + "total_frag_volume": 0, + "wfifteenbar_h": 16.1, + "wfifteenbar_l": 10.1, + "wfifteenbar_r": 12.9, + "wthirdbar_h": 30.5, + "wthirdbar_l": 25.9, + "wthirdbar_r": 28.2 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80109212, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26837484, + "dbovendry_h": 0.4, + "dbovendry_l": 0.19, + "dbovendry_r": 0.3, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": 100, + "ecec_l": 18.8, + "ecec_r": 45.2, + "hzdepb_r": 48, + "hzdept_r": 0, + "hzname": "Oi", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 3375385, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": 18.2, + "wfifteenbar_l": 12.7, + "wfifteenbar_r": 15.5, + "wthirdbar_h": 53, + "wthirdbar_l": 45.4, + "wthirdbar_r": 49.4 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80108821, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26837432, + "dbovendry_h": 0.46, + "dbovendry_l": 0.25, + "dbovendry_r": 0.35, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": 100, + "ecec_l": 18.8, + "ecec_r": 45.2, + "hzdepb_r": 24, + "hzdept_r": 0, + "hzname": "Oe", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 3375378, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": 17.4, + "wfifteenbar_l": 12.1, + "wfifteenbar_r": 14.8, + "wthirdbar_h": 52.8, + "wthirdbar_l": 46.4, + "wthirdbar_r": 49.8 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80108819, + "claytotal_h": 17, + "claytotal_l": 5, + "claytotal_r": 10, + "cokey": 26837432, + "dbovendry_h": 1.32, + "dbovendry_l": 1.27, + "dbovendry_r": 1.29, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 10.1, + "ecec_l": 3.3, + "ecec_r": 6.2, + "hzdepb_r": 99, + "hzdept_r": 24, + "hzname": "Cg/Oejj", + "lep_h": 1.6, + "lep_l": 0.3, + "lep_r": 0.8, + "mukey": 3375378, + "ph1to1h2o_h": 5.3, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 5.3, + "sandtotal_h": 14, + "sandtotal_l": 2, + "sandtotal_r": 13, + "silttotal_h": 88, + "silttotal_l": 69, + "silttotal_r": 77, + "total_frag_volume": 0, + "wfifteenbar_h": 23.8, + "wfifteenbar_l": 14.9, + "wfifteenbar_r": 19.6, + "wthirdbar_h": 35, + "wthirdbar_l": 29.7, + "wthirdbar_r": 32.7 + }, + { + "cec7_h": 39.1, + "cec7_l": 34.2, + "cec7_r": 36.5, + "chkey": 80109214, + "claytotal_h": 14, + "claytotal_l": 7, + "claytotal_r": 10, + "cokey": 26837484, + "dbovendry_h": 0.82, + "dbovendry_l": 0.59, + "dbovendry_r": 0.71, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 64, + "hzdept_r": 48, + "hzname": "Cg/Oajj", + "lep_h": 1.2, + "lep_l": 0.4, + "lep_r": 0.7, + "mukey": 3375385, + "ph1to1h2o_h": 6.2, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 5.6, + "sandtotal_h": 14, + "sandtotal_l": 5, + "sandtotal_r": 11, + "silttotal_h": 87, + "silttotal_l": 72, + "silttotal_r": 79, + "total_frag_volume": 0, + "wfifteenbar_h": 15.2, + "wfifteenbar_l": 12.2, + "wfifteenbar_r": 13.6, + "wthirdbar_h": 29.9, + "wthirdbar_l": 27.6, + "wthirdbar_r": 28.7 + }, + { + "cec7_h": 11.3, + "cec7_l": 6.9, + "cec7_r": 9.5, + "chkey": 80109213, + "claytotal_h": 12, + "claytotal_l": 7, + "claytotal_r": 10, + "cokey": 26837484, + "dbovendry_h": 1.45, + "dbovendry_l": 1.35, + "dbovendry_r": 1.4, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 152, + "hzdept_r": 64, + "hzname": "Cgf", + "lep_h": 1.1, + "lep_l": 0.5, + "lep_r": 0.9, + "mukey": 3375385, + "ph1to1h2o_h": 6.2, + "ph1to1h2o_l": 4.5, + "ph1to1h2o_r": 5.6, + "sandtotal_h": 14, + "sandtotal_l": 2, + "sandtotal_r": 11, + "silttotal_h": 88, + "silttotal_l": 74, + "silttotal_r": 79, + "total_frag_volume": 0, + "wfifteenbar_h": 15.6, + "wfifteenbar_l": 10.4, + "wfifteenbar_r": 13.3, + "wthirdbar_h": 24, + "wthirdbar_l": 20, + "wthirdbar_r": 22.3 + }, + { + "cec7_h": 14.3, + "cec7_l": 4.1, + "cec7_r": 7.6, + "chkey": 80108820, + "claytotal_h": 17, + "claytotal_l": 5, + "claytotal_r": 10, + "cokey": 26837432, + "dbovendry_h": 1.57, + "dbovendry_l": 1.51, + "dbovendry_r": 1.53, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 152, + "hzdept_r": 99, + "hzname": "Cgf", + "lep_h": 1.8, + "lep_l": 0.3, + "lep_r": 0.9, + "mukey": 3375378, + "ph1to1h2o_h": 6, + "ph1to1h2o_l": 4.8, + "ph1to1h2o_r": 5.7, + "sandtotal_h": 14, + "sandtotal_l": 2, + "sandtotal_r": 13, + "silttotal_h": 88, + "silttotal_l": 69, + "silttotal_r": 77, + "total_frag_volume": 0, + "wfifteenbar_h": 11.5, + "wfifteenbar_l": 3, + "wfifteenbar_r": 6, + "wthirdbar_h": 27.1, + "wthirdbar_l": 16.8, + "wthirdbar_r": 21.5 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80108840, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26837437, + "dbovendry_h": 0.4, + "dbovendry_l": 0.19, + "dbovendry_r": 0.3, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": 26.5, + "ecec_l": 10.8, + "ecec_r": 16.9, + "hzdepb_r": 45, + "hzdept_r": 0, + "hzname": "Oi", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 3375378, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": 18.2, + "wfifteenbar_l": 12.7, + "wfifteenbar_r": 15.5, + "wthirdbar_h": 53, + "wthirdbar_l": 45.4, + "wthirdbar_r": 49.4 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80109081, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26837486, + "dbovendry_h": 0.4, + "dbovendry_l": 0.19, + "dbovendry_r": 0.3, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": 82, + "ecec_l": 14.4, + "ecec_r": 35.3, + "hzdepb_r": 5, + "hzdept_r": 0, + "hzname": "Oi", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 3375385, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": 14.9, + "wfifteenbar_l": 10.4, + "wfifteenbar_r": 12.7, + "wthirdbar_h": 56.1, + "wthirdbar_l": 53.3, + "wthirdbar_r": 54.8 + }, + { + "cec7_h": 11.1, + "cec7_l": 2.1, + "cec7_r": 5, + "chkey": 80109080, + "claytotal_h": 12, + "claytotal_l": 2, + "claytotal_r": 5, + "cokey": 26837486, + "dbovendry_h": 1.58, + "dbovendry_l": 1.48, + "dbovendry_r": 1.54, + "ec_h": 0.5, + "ec_l": 0.1, + "ec_r": 0.3, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 25, + "hzdept_r": 5, + "hzname": "AC", + "lep_h": 1.3, + "lep_l": 0, + "lep_r": 0.4, + "mukey": 3375385, + "ph1to1h2o_h": 6.8, + "ph1to1h2o_l": 5, + "ph1to1h2o_r": 6.8, + "sandtotal_h": 75, + "sandtotal_l": 55, + "sandtotal_r": 65, + "silttotal_h": 43, + "silttotal_l": 15, + "silttotal_r": 30, + "total_frag_volume": 0, + "wfifteenbar_h": 14.1, + "wfifteenbar_l": 4.2, + "wfifteenbar_r": 8, + "wthirdbar_h": 18.6, + "wthirdbar_l": 10.7, + "wthirdbar_r": 14.5 + }, + { + "cec7_h": 11.1, + "cec7_l": 2.1, + "cec7_r": 5, + "chkey": 80109082, + "claytotal_h": 12, + "claytotal_l": 2, + "claytotal_r": 5, + "cokey": 26837486, + "dbovendry_h": 1.57, + "dbovendry_l": 1.49, + "dbovendry_r": 1.53, + "ec_h": 0.5, + "ec_l": 0.1, + "ec_r": 0.3, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 92, + "hzdept_r": 25, + "hzname": "C1", + "lep_h": 1.3, + "lep_l": 0, + "lep_r": 0.4, + "mukey": 3375385, + "ph1to1h2o_h": 7.6, + "ph1to1h2o_l": 5.8, + "ph1to1h2o_r": 6.8, + "sandtotal_h": 75, + "sandtotal_l": 55, + "sandtotal_r": 65, + "silttotal_h": 43, + "silttotal_l": 15, + "silttotal_r": 30, + "total_frag_volume": 0, + "wfifteenbar_h": 13, + "wfifteenbar_l": 4, + "wfifteenbar_r": 7.5, + "wthirdbar_h": 22.1, + "wthirdbar_l": 12.6, + "wthirdbar_r": 17.2 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80108841, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26837437, + "dbovendry_h": 0.46, + "dbovendry_l": 0.25, + "dbovendry_r": 0.35, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": 53.1, + "ecec_l": 21.7, + "ecec_r": 40.2, + "hzdepb_r": 152, + "hzdept_r": 45, + "hzname": "Oef", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 3375378, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": 17.4, + "wfifteenbar_l": 12.1, + "wfifteenbar_r": 15.7, + "wthirdbar_h": 52.8, + "wthirdbar_l": 46.4, + "wthirdbar_r": 50.8 + }, + { + "cec7_h": 6.4, + "cec7_l": 0.1, + "cec7_r": 1.8, + "chkey": 80109083, + "claytotal_h": 7, + "claytotal_l": 0, + "claytotal_r": 2, + "cokey": 26837486, + "dbovendry_h": 1.77, + "dbovendry_l": 1.57, + "dbovendry_r": 1.72, + "ec_h": 0.5, + "ec_l": 0.1, + "ec_r": 0.3, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 152, + "hzdept_r": 92, + "hzname": "2C2", + "lep_h": 0.3, + "lep_l": 0, + "lep_r": 0, + "mukey": 3375385, + "ph1to1h2o_h": 7.4, + "ph1to1h2o_l": 6, + "ph1to1h2o_r": 7.2, + "sandtotal_h": 96, + "sandtotal_l": 88, + "sandtotal_r": 90, + "silttotal_h": 12, + "silttotal_l": 0, + "silttotal_r": 8, + "total_frag_volume": 70, + "wfifteenbar_h": 3.9, + "wfifteenbar_l": 0, + "wfifteenbar_r": 0.4, + "wthirdbar_h": 8, + "wthirdbar_l": 0.4, + "wthirdbar_r": 2 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80109224, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26837482, + "dbovendry_h": 0.46, + "dbovendry_l": 0.25, + "dbovendry_r": 0.35, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": 110.7, + "ecec_l": 19.4, + "ecec_r": 47.7, + "hzdepb_r": 10, + "hzdept_r": 0, + "hzname": "Oe", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 3375385, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": 17.4, + "wfifteenbar_l": 12.1, + "wfifteenbar_r": 14.8, + "wthirdbar_h": 52.8, + "wthirdbar_l": 46.4, + "wthirdbar_r": 49.8 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80109229, + "claytotal_h": 18, + "claytotal_l": 10, + "claytotal_r": 15, + "cokey": 26837482, + "dbovendry_h": 1.38, + "dbovendry_l": 1.22, + "dbovendry_r": 1.35, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 29.6, + "ecec_l": 12.5, + "ecec_r": 21.3, + "hzdepb_r": 14, + "hzdept_r": 10, + "hzname": "E", + "lep_h": 3.1, + "lep_l": 1.3, + "lep_r": 2.3, + "mukey": 3375385, + "ph1to1h2o_h": 5.4, + "ph1to1h2o_l": 4.1, + "ph1to1h2o_r": 4.8, + "sandtotal_h": 14, + "sandtotal_l": 5, + "sandtotal_r": 10, + "silttotal_h": 84, + "silttotal_l": 68, + "silttotal_r": 75, + "total_frag_volume": 0, + "wfifteenbar_h": 16.1, + "wfifteenbar_l": 9.9, + "wfifteenbar_r": 13.5, + "wthirdbar_h": 30.5, + "wthirdbar_l": 25.7, + "wthirdbar_r": 28.6 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80109227, + "claytotal_h": 18, + "claytotal_l": 10, + "claytotal_r": 15, + "cokey": 26837482, + "dbovendry_h": 1.23, + "dbovendry_l": 1.18, + "dbovendry_r": 1.22, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 10.1, + "ecec_l": 5.7, + "ecec_r": 8.5, + "hzdepb_r": 21, + "hzdept_r": 14, + "hzname": "Bs", + "lep_h": 1.5, + "lep_l": 0.7, + "lep_r": 1.2, + "mukey": 3375385, + "ph1to1h2o_h": 5.5, + "ph1to1h2o_l": 5, + "ph1to1h2o_r": 5.2, + "sandtotal_h": 14, + "sandtotal_l": 5, + "sandtotal_r": 10, + "silttotal_h": 84, + "silttotal_l": 68, + "silttotal_r": 75, + "total_frag_volume": 0, + "wfifteenbar_h": 11.8, + "wfifteenbar_l": 5.9, + "wfifteenbar_r": 9.3, + "wthirdbar_h": 27.3, + "wthirdbar_l": 21.3, + "wthirdbar_r": 25.1 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80109228, + "claytotal_h": 18, + "claytotal_l": 10, + "claytotal_r": 15, + "cokey": 26837482, + "dbovendry_h": 1.55, + "dbovendry_l": 1.39, + "dbovendry_r": 1.43, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 9.8, + "ecec_l": 5, + "ecec_r": 8.2, + "hzdepb_r": 52, + "hzdept_r": 21, + "hzname": "Bw", + "lep_h": 1.4, + "lep_l": 0.6, + "lep_r": 1.1, + "mukey": 3375385, + "ph1to1h2o_h": 6, + "ph1to1h2o_l": 5, + "ph1to1h2o_r": 5.4, + "sandtotal_h": 14, + "sandtotal_l": 5, + "sandtotal_r": 10, + "silttotal_h": 84, + "silttotal_l": 68, + "silttotal_r": 75, + "total_frag_volume": 0, + "wfifteenbar_h": 11.2, + "wfifteenbar_l": 5.5, + "wfifteenbar_r": 9.3, + "wthirdbar_h": 26.8, + "wthirdbar_l": 20.9, + "wthirdbar_r": 25.1 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80109226, + "claytotal_h": 18, + "claytotal_l": 10, + "claytotal_r": 15, + "cokey": 26837482, + "dbovendry_h": 1.58, + "dbovendry_l": 1.4, + "dbovendry_r": 1.49, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 10, + "ecec_l": 5, + "ecec_r": 8.3, + "hzdepb_r": 95, + "hzdept_r": 52, + "hzname": "BC", + "lep_h": 1.5, + "lep_l": 0.6, + "lep_r": 1.1, + "mukey": 3375385, + "ph1to1h2o_h": 6, + "ph1to1h2o_l": 5.2, + "ph1to1h2o_r": 5.5, + "sandtotal_h": 14, + "sandtotal_l": 5, + "sandtotal_r": 10, + "silttotal_h": 84, + "silttotal_l": 68, + "silttotal_r": 75, + "total_frag_volume": 5, + "wfifteenbar_h": 13, + "wfifteenbar_l": 5.2, + "wfifteenbar_r": 9.5, + "wthirdbar_h": 28.3, + "wthirdbar_l": 19.1, + "wthirdbar_r": 24.5 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80109225, + "claytotal_h": 14, + "claytotal_l": 8, + "claytotal_r": 10, + "cokey": 26837482, + "dbovendry_h": 1.53, + "dbovendry_l": 1.48, + "dbovendry_r": 1.51, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 8, + "ecec_l": 4, + "ecec_r": 5.7, + "hzdepb_r": 152, + "hzdept_r": 95, + "hzname": "2C", + "lep_h": 0.7, + "lep_l": 0.1, + "lep_r": 0.4, + "mukey": 3375385, + "ph1to1h2o_h": 6.5, + "ph1to1h2o_l": 5.2, + "ph1to1h2o_r": 5.3, + "sandtotal_h": 50, + "sandtotal_l": 40, + "sandtotal_r": 45, + "silttotal_h": 50, + "silttotal_l": 37, + "silttotal_r": 45, + "total_frag_volume": 35, + "wfifteenbar_h": 7.2, + "wfifteenbar_l": 1.2, + "wfifteenbar_r": 4.8, + "wthirdbar_h": 17.4, + "wthirdbar_l": 5, + "wthirdbar_r": 15 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80109101, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26837489, + "dbovendry_h": 0.4, + "dbovendry_l": 0.19, + "dbovendry_r": 0.3, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": 100, + "ecec_l": 18.8, + "ecec_r": 45.2, + "hzdepb_r": 56, + "hzdept_r": 0, + "hzname": "Oi", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 3375385, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": 18.2, + "wfifteenbar_l": 12.7, + "wfifteenbar_r": 15.5, + "wthirdbar_h": 53, + "wthirdbar_l": 45.4, + "wthirdbar_r": 49.4 + }, + { + "cec7_h": 11.4, + "cec7_l": 1, + "cec7_r": 5.5, + "chkey": 80109100, + "claytotal_h": 14, + "claytotal_l": 2, + "claytotal_r": 5, + "cokey": 26837489, + "dbovendry_h": 1.52, + "dbovendry_l": 1.43, + "dbovendry_r": 1.48, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 152, + "hzdept_r": 56, + "hzname": "Cg", + "lep_h": 1.4, + "lep_l": 0, + "lep_r": 0.4, + "mukey": 3375385, + "ph1to1h2o_h": 7.8, + "ph1to1h2o_l": 5.2, + "ph1to1h2o_r": 6.8, + "sandtotal_h": 40, + "sandtotal_l": 20, + "sandtotal_r": 30, + "silttotal_h": 78, + "silttotal_l": 50, + "silttotal_r": 65, + "total_frag_volume": 0, + "wfifteenbar_h": 10.9, + "wfifteenbar_l": 1.2, + "wfifteenbar_r": 4.4, + "wthirdbar_h": 26.6, + "wthirdbar_l": 12.1, + "wthirdbar_r": 19.2 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80109092, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26837487, + "dbovendry_h": 0.4, + "dbovendry_l": 0.19, + "dbovendry_r": 0.3, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": 32.9, + "ecec_l": 14.2, + "ecec_r": 21.9, + "hzdepb_r": 63, + "hzdept_r": 0, + "hzname": "Oi", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 3375385, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": 18.2, + "wfifteenbar_l": 12.7, + "wfifteenbar_r": 15.5, + "wthirdbar_h": 53, + "wthirdbar_l": 45.4, + "wthirdbar_r": 49.4 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80109093, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26837487, + "dbovendry_h": null, + "dbovendry_l": null, + "dbovendry_r": null, + "ec_h": null, + "ec_l": null, + "ec_r": null, + "ecec_h": null, + "ecec_l": null, + "ecec_r": null, + "hzdepb_r": 143, + "hzdept_r": 63, + "hzname": "W", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 3375385, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": null, + "wfifteenbar_l": null, + "wfifteenbar_r": null, + "wthirdbar_h": null, + "wthirdbar_l": null, + "wthirdbar_r": null + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80109091, + "claytotal_h": 10, + "claytotal_l": 2, + "claytotal_r": 5, + "cokey": 26837487, + "dbovendry_h": 1.5, + "dbovendry_l": 1.44, + "dbovendry_r": 1.47, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 8.4, + "ecec_l": 1, + "ecec_r": 4.3, + "hzdepb_r": 152, + "hzdept_r": 143, + "hzname": "C", + "lep_h": 0.9, + "lep_l": 0, + "lep_r": 0.3, + "mukey": 3375385, + "ph1to1h2o_h": 5, + "ph1to1h2o_l": 4, + "ph1to1h2o_r": 4.5, + "sandtotal_h": 40, + "sandtotal_l": 20, + "sandtotal_r": 35, + "silttotal_h": 74, + "silttotal_l": 50, + "silttotal_r": 60, + "total_frag_volume": 0, + "wfifteenbar_h": 7.2, + "wfifteenbar_l": 1.2, + "wfifteenbar_r": 3.6, + "wthirdbar_h": 23, + "wthirdbar_l": 12.1, + "wthirdbar_r": 18 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80108860, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26837435, + "dbovendry_h": 0.4, + "dbovendry_l": 0.19, + "dbovendry_r": 0.3, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": 82, + "ecec_l": 14.4, + "ecec_r": 35.3, + "hzdepb_r": 15, + "hzdept_r": 0, + "hzname": "Oi", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 3375378, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": 14.9, + "wfifteenbar_l": 10.4, + "wfifteenbar_r": 12.7, + "wthirdbar_h": 56.1, + "wthirdbar_l": 53.3, + "wthirdbar_r": 54.8 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80108865, + "claytotal_h": null, + "claytotal_l": null, + "claytotal_r": null, + "cokey": 26837433, + "dbovendry_h": 0.46, + "dbovendry_l": 0.25, + "dbovendry_r": 0.35, + "ec_h": 2, + "ec_l": 0, + "ec_r": 1, + "ecec_h": 110.7, + "ecec_l": 19.4, + "ecec_r": 47.7, + "hzdepb_r": 7, + "hzdept_r": 0, + "hzname": "Oe", + "lep_h": null, + "lep_l": null, + "lep_r": null, + "mukey": 3375378, + "ph1to1h2o_h": null, + "ph1to1h2o_l": null, + "ph1to1h2o_r": null, + "sandtotal_h": null, + "sandtotal_l": null, + "sandtotal_r": null, + "silttotal_h": null, + "silttotal_l": null, + "silttotal_r": null, + "total_frag_volume": 0, + "wfifteenbar_h": 17.4, + "wfifteenbar_l": 12.1, + "wfifteenbar_r": 14.8, + "wthirdbar_h": 52.8, + "wthirdbar_l": 46.4, + "wthirdbar_r": 49.8 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80108861, + "claytotal_h": 16, + "claytotal_l": 3, + "claytotal_r": 5, + "cokey": 26837433, + "dbovendry_h": 1.28, + "dbovendry_l": 1.13, + "dbovendry_r": 1.21, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 9.4, + "ecec_l": 2, + "ecec_r": 3.2, + "hzdepb_r": 13, + "hzdept_r": 7, + "hzname": "AE", + "lep_h": 1.5, + "lep_l": 0.1, + "lep_r": 0.3, + "mukey": 3375378, + "ph1to1h2o_h": 5.6, + "ph1to1h2o_l": 4.3, + "ph1to1h2o_r": 5, + "sandtotal_h": 35, + "sandtotal_l": 20, + "sandtotal_r": 25, + "silttotal_h": 77, + "silttotal_l": 56, + "silttotal_r": 70, + "total_frag_volume": 0, + "wfifteenbar_h": 15.5, + "wfifteenbar_l": 7.4, + "wfifteenbar_r": 9.5, + "wthirdbar_h": 30.1, + "wthirdbar_l": 23.1, + "wthirdbar_r": 25.3 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80108862, + "claytotal_h": 20, + "claytotal_l": 3, + "claytotal_r": 5, + "cokey": 26837433, + "dbovendry_h": 1.51, + "dbovendry_l": 1.36, + "dbovendry_r": 1.41, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 11.6, + "ecec_l": 2, + "ecec_r": 3.2, + "hzdepb_r": 25, + "hzdept_r": 13, + "hzname": "Bw1", + "lep_h": 2.3, + "lep_l": 0.1, + "lep_r": 0.3, + "mukey": 3375378, + "ph1to1h2o_h": 5.6, + "ph1to1h2o_l": 4.8, + "ph1to1h2o_r": 5.2, + "sandtotal_h": 35, + "sandtotal_l": 20, + "sandtotal_r": 25, + "silttotal_h": 77, + "silttotal_l": 54, + "silttotal_r": 70, + "total_frag_volume": 0, + "wfifteenbar_h": 21.5, + "wfifteenbar_l": 8.2, + "wfifteenbar_r": 12.4, + "wthirdbar_h": 33.8, + "wthirdbar_l": 23.2, + "wthirdbar_r": 27.8 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80108858, + "claytotal_h": 14, + "claytotal_l": 3, + "claytotal_r": 5, + "cokey": 26837435, + "dbovendry_h": 1.49, + "dbovendry_l": 1.4, + "dbovendry_r": 1.44, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 8.3, + "ecec_l": 2, + "ecec_r": 3.2, + "hzdepb_r": 19, + "hzdept_r": 15, + "hzname": "AE", + "lep_h": 1.3, + "lep_l": 0, + "lep_r": 0.3, + "mukey": 3375378, + "ph1to1h2o_h": 5.4, + "ph1to1h2o_l": 4.4, + "ph1to1h2o_r": 4.9, + "sandtotal_h": 75, + "sandtotal_l": 60, + "sandtotal_r": 70, + "silttotal_h": 37, + "silttotal_l": 12, + "silttotal_r": 25, + "total_frag_volume": 15, + "wfifteenbar_h": 18.4, + "wfifteenbar_l": 4.7, + "wfifteenbar_r": 9.9, + "wthirdbar_h": 25.9, + "wthirdbar_l": 9.7, + "wthirdbar_r": 17.9 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80108857, + "claytotal_h": 14, + "claytotal_l": 3, + "claytotal_r": 5, + "cokey": 26837435, + "dbovendry_h": 1.58, + "dbovendry_l": 1.52, + "dbovendry_r": 1.53, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 8.3, + "ecec_l": 2, + "ecec_r": 3.2, + "hzdepb_r": 38, + "hzdept_r": 19, + "hzname": "Bw", + "lep_h": 1, + "lep_l": 0.1, + "lep_r": 0.2, + "mukey": 3375378, + "ph1to1h2o_h": 5.6, + "ph1to1h2o_l": 4.6, + "ph1to1h2o_r": 5.1, + "sandtotal_h": 75, + "sandtotal_l": 60, + "sandtotal_r": 70, + "silttotal_h": 37, + "silttotal_l": 12, + "silttotal_r": 25, + "total_frag_volume": 20, + "wfifteenbar_h": 17, + "wfifteenbar_l": 7.7, + "wfifteenbar_r": 11.2, + "wthirdbar_h": 22.1, + "wthirdbar_l": 14.3, + "wthirdbar_r": 18.3 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80108863, + "claytotal_h": 20, + "claytotal_l": 3, + "claytotal_r": 5, + "cokey": 26837433, + "dbovendry_h": 1.61, + "dbovendry_l": 1.46, + "dbovendry_r": 1.51, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 11, + "ecec_l": 1.7, + "ecec_r": 3, + "hzdepb_r": 50, + "hzdept_r": 25, + "hzname": "2Bw2", + "lep_h": 1.5, + "lep_l": 0, + "lep_r": 0.1, + "mukey": 3375378, + "ph1to1h2o_h": 6, + "ph1to1h2o_l": 5, + "ph1to1h2o_r": 5.4, + "sandtotal_h": 35, + "sandtotal_l": 20, + "sandtotal_r": 25, + "silttotal_h": 77, + "silttotal_l": 54, + "silttotal_r": 70, + "total_frag_volume": 35, + "wfifteenbar_h": 12.1, + "wfifteenbar_l": 1, + "wfifteenbar_r": 2.9, + "wthirdbar_h": 24.2, + "wthirdbar_l": 8, + "wthirdbar_r": 12.7 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80108859, + "claytotal_h": 14, + "claytotal_l": 2, + "claytotal_r": 5, + "cokey": 26837435, + "dbovendry_h": 1.52, + "dbovendry_l": 1.43, + "dbovendry_r": 1.48, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 8, + "ecec_l": 1.1, + "ecec_r": 3, + "hzdepb_r": 55, + "hzdept_r": 38, + "hzname": "BC", + "lep_h": 0.8, + "lep_l": 0, + "lep_r": 0.1, + "mukey": 3375378, + "ph1to1h2o_h": 6, + "ph1to1h2o_l": 5, + "ph1to1h2o_r": 5.4, + "sandtotal_h": 35, + "sandtotal_l": 20, + "sandtotal_r": 25, + "silttotal_h": 78, + "silttotal_l": 56, + "silttotal_r": 70, + "total_frag_volume": 30, + "wfifteenbar_h": 7.7, + "wfifteenbar_l": 0.3, + "wfifteenbar_r": 3.1, + "wthirdbar_h": 18.6, + "wthirdbar_l": 3.2, + "wthirdbar_r": 13.4 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80108864, + "claytotal_h": 16, + "claytotal_l": 3, + "claytotal_r": 5, + "cokey": 26837433, + "dbovendry_h": 1.54, + "dbovendry_l": 1.4, + "dbovendry_r": 1.47, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 9, + "ecec_l": 1.7, + "ecec_r": 3, + "hzdepb_r": 152, + "hzdept_r": 50, + "hzname": "2C", + "lep_h": 0.9, + "lep_l": 0, + "lep_r": 0.1, + "mukey": 3375378, + "ph1to1h2o_h": 6, + "ph1to1h2o_l": 5, + "ph1to1h2o_r": 5.4, + "sandtotal_h": 35, + "sandtotal_l": 20, + "sandtotal_r": 25, + "silttotal_h": 77, + "silttotal_l": 56, + "silttotal_r": 70, + "total_frag_volume": 35, + "wfifteenbar_h": 9.7, + "wfifteenbar_l": 1, + "wfifteenbar_r": 2.8, + "wthirdbar_h": 22.1, + "wthirdbar_l": 7.7, + "wthirdbar_r": 12.5 + }, + { + "cec7_h": null, + "cec7_l": null, + "cec7_r": null, + "chkey": 80108856, + "claytotal_h": 14, + "claytotal_l": 2, + "claytotal_r": 5, + "cokey": 26837435, + "dbovendry_h": 1.55, + "dbovendry_l": 1.4, + "dbovendry_r": 1.48, + "ec_h": 0, + "ec_l": 0, + "ec_r": 0, + "ecec_h": 8, + "ecec_l": 1.1, + "ecec_r": 3, + "hzdepb_r": 152, + "hzdept_r": 55, + "hzname": "C", + "lep_h": 0.5, + "lep_l": 0, + "lep_r": 0.1, + "mukey": 3375378, + "ph1to1h2o_h": 6, + "ph1to1h2o_l": 5, + "ph1to1h2o_r": 5.5, + "sandtotal_h": 35, + "sandtotal_l": 20, + "sandtotal_r": 25, + "silttotal_h": 78, + "silttotal_l": 56, + "silttotal_r": 70, + "total_frag_volume": 65, + "wfifteenbar_h": 7.7, + "wfifteenbar_l": 0.3, + "wfifteenbar_r": 1.5, + "wthirdbar_h": 18.7, + "wthirdbar_l": 3, + "wthirdbar_r": 6.7 + } + ], + "spn": [ + { + "closest_pt_x": -156.4422738, + "closest_pt_y": 63.52666854, + "cokey": 26837483, + "compkind": "Taxon above family", + "compname": "e30-boreal taiga-loamy frozen colluvial slopes", + "comppct_r": 34, + "dist_meters": 0, + "elev_r": 214, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 3375385, + "nirrcapcl": 6, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 4, + "taxorder": "Gelisols", + "taxsubgrp": "Typic Historthels", + "which": "a" + }, + { + "closest_pt_x": -156.4422738, + "closest_pt_y": 63.52666854, + "cokey": 26837485, + "compkind": "Taxon above family", + "compname": "e30-boreal scrub-gravelly low flood plains", + "comppct_r": 19, + "dist_meters": 0, + "elev_r": 214, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 3375385, + "nirrcapcl": 6, + "nirrcapscl": "s", + "nirrcapunit": null, + "slope_r": 1, + "taxorder": "Entisols", + "taxsubgrp": "Oxyaquic Cryorthents", + "which": "a" + }, + { + "closest_pt_x": -156.4422738, + "closest_pt_y": 63.52666854, + "cokey": 26837488, + "compkind": "Taxon above family", + "compname": "e30-boreal taiga-organic frozen peat plateaus", + "comppct_r": 12, + "dist_meters": 0, + "elev_r": 214, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 3375385, + "nirrcapcl": 7, + "nirrcapscl": "s", + "nirrcapunit": null, + "slope_r": 0, + "taxorder": "Gelisols", + "taxsubgrp": "Glacic Folistels", + "which": "a" + }, + { + "closest_pt_x": -156.4422738, + "closest_pt_y": 63.52666854, + "cokey": 26837484, + "compkind": "Taxon above family", + "compname": "e30-boreal taiga/tussock-silty frozen terraces", + "comppct_r": 11, + "dist_meters": 0, + "elev_r": 214, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 3375385, + "nirrcapcl": 7, + "nirrcapscl": "s", + "nirrcapunit": null, + "slope_r": 1, + "taxorder": "Gelisols", + "taxsubgrp": "Typic Histoturbels", + "which": "a" + }, + { + "closest_pt_x": -156.4422738, + "closest_pt_y": 63.52666854, + "cokey": 26837486, + "compkind": "Taxon above family", + "compname": "e30-boreal forest-loamy flood plains", + "comppct_r": 9, + "dist_meters": 0, + "elev_r": 214, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 3375385, + "nirrcapcl": 4, + "nirrcapscl": "w", + "nirrcapunit": null, + "slope_r": 1, + "taxorder": "Entisols", + "taxsubgrp": "Typic Cryofluvents", + "which": "a" + }, + { + "closest_pt_x": -156.4422738, + "closest_pt_y": 63.52666854, + "cokey": 26837482, + "compkind": "Taxon above family", + "compname": "e30-boreal forest-silty slopes", + "comppct_r": 7, + "dist_meters": 0, + "elev_r": 214, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 3375385, + "nirrcapcl": 6, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 12, + "taxorder": "Spodosols", + "taxsubgrp": "Typic Haplocryods", + "which": "a" + }, + { + "closest_pt_x": -156.4422738, + "closest_pt_y": 63.52666854, + "cokey": 26837489, + "compkind": "Taxon above family", + "compname": "e30-boreal wet meadow-organic depressions", + "comppct_r": 5, + "dist_meters": 0, + "elev_r": 214, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 3375385, + "nirrcapcl": 7, + "nirrcapscl": "s", + "nirrcapunit": null, + "slope_r": 0, + "taxorder": "Histosols", + "taxsubgrp": "Terric Cryofibrists", + "which": "a" + }, + { + "closest_pt_x": -156.4422738, + "closest_pt_y": 63.52666854, + "cokey": 26837487, + "compkind": "Taxon above family", + "compname": "e30-boreal scrub/sphagnum-organic depressions", + "comppct_r": 3, + "dist_meters": 0, + "elev_r": 214, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 3375385, + "nirrcapcl": 7, + "nirrcapscl": "s", + "nirrcapunit": null, + "slope_r": 0, + "taxorder": "Histosols", + "taxsubgrp": "Hydric Cryofibrists", + "which": "a" + }, + { + "closest_pt_x": -156.44540467158845, + "closest_pt_y": 63.530575647863735, + "cokey": 26837434, + "compkind": "Taxon above family", + "compname": "e30-boreal taiga-silty frozen loess slopes", + "comppct_r": 43, + "dist_meters": 350, + "elev_r": 232, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 3375378, + "nirrcapcl": 6, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 8, + "taxorder": "Gelisols", + "taxsubgrp": "Typic Historthels", + "which": "b" + }, + { + "closest_pt_x": -156.44540467158845, + "closest_pt_y": 63.530575647863735, + "cokey": 26837431, + "compkind": "Taxon above family", + "compname": "e30-boreal forest-silty loess slopes", + "comppct_r": 23, + "dist_meters": 350, + "elev_r": 232, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 3375378, + "nirrcapcl": 6, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 14, + "taxorder": "Inceptisols", + "taxsubgrp": "Typic Haplocryepts", + "which": "b" + }, + { + "closest_pt_x": -156.44540467158845, + "closest_pt_y": 63.530575647863735, + "cokey": 26837436, + "compkind": "Taxon above family", + "compname": "e30-boreal taiga/tussock-silty frozen slopes", + "comppct_r": 12, + "dist_meters": 350, + "elev_r": 232, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 3375378, + "nirrcapcl": 6, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 2, + "taxorder": "Gelisols", + "taxsubgrp": "Typic Histoturbels", + "which": "b" + }, + { + "closest_pt_x": -156.44540467158845, + "closest_pt_y": 63.530575647863735, + "cokey": 26837432, + "compkind": "Taxon above family", + "compname": "e30-boreal scrub-silty frozen drainageways", + "comppct_r": 11, + "dist_meters": 350, + "elev_r": 232, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "Yes", + "mukey": 3375378, + "nirrcapcl": 6, + "nirrcapscl": "s", + "nirrcapunit": null, + "slope_r": 1, + "taxorder": "Gelisols", + "taxsubgrp": "Fluvaquentic Historthels", + "which": "b" + }, + { + "closest_pt_x": -156.44540467158845, + "closest_pt_y": 63.530575647863735, + "cokey": 26837437, + "compkind": "Taxon above family", + "compname": "e30-boreal taiga-organic frozen peat plateaus", + "comppct_r": 9, + "dist_meters": 350, + "elev_r": 232, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 3375378, + "nirrcapcl": 7, + "nirrcapscl": "s", + "nirrcapunit": null, + "slope_r": 0, + "taxorder": "Gelisols", + "taxsubgrp": "Glacic Folistels", + "which": "b" + }, + { + "closest_pt_x": -156.44540467158845, + "closest_pt_y": 63.530575647863735, + "cokey": 26837433, + "compkind": "Taxon above family", + "compname": "e30-boreal subalpine scrub-loamy colluvial slopes", + "comppct_r": 1, + "dist_meters": 350, + "elev_r": 232, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 3375378, + "nirrcapcl": 7, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 25, + "taxorder": "Inceptisols", + "taxsubgrp": "Typic Dystrocryepts", + "which": "b" + }, + { + "closest_pt_x": -156.44540467158845, + "closest_pt_y": 63.530575647863735, + "cokey": 26837435, + "compkind": "Taxon above family", + "compname": "e30-boreal subalpine woodland-gravelly colluvial slopes", + "comppct_r": 1, + "dist_meters": 350, + "elev_r": 232, + "irrcapcl": null, + "irrcapscl": null, + "irrcapunit": null, + "localphase": null, + "majcompflag": "No ", + "mukey": 3375378, + "nirrcapcl": 7, + "nirrcapscl": "e", + "nirrcapunit": null, + "slope_r": 18, + "taxorder": "Inceptisols", + "taxsubgrp": "Typic Dystrocryepts", + "which": "b" + } + ] + } +} diff --git a/soil_id/tests/us/__snapshots__/test_us/test_soil_location[33.81246789,-101.9733687].json b/soil_id/tests/us/__snapshots__/test_us/test_soil_location[33.81246789,-101.9733687].json index 9eb9fbc..8b1a6bf 100644 --- a/soil_id/tests/us/__snapshots__/test_us/test_soil_location[33.81246789,-101.9733687].json +++ b/soil_id/tests/us/__snapshots__/test_us/test_soil_location[33.81246789,-101.9733687].json @@ -64,7 +64,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25623332", + "componentID": "27108933", "componentKind": "Series", "componentPct": 80, "dataSource": "SSURGO", @@ -97,13 +97,13 @@ "esd": { "ESD": { "ecoclassid": [ - "R077CY036TX" + "R077CY022TX" ], "ecoclassname": [ - "Sandy Loam 16-21 Pz" + "Deep Hardland 16-21 Pz" ], "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/077C/R077CY036TX" + "https://edit.sc.egov.usda.gov/catalogs/esd/077C/R077CY022TX" ] } }, @@ -120,7 +120,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25623211", + "componentID": "27108889", "componentKind": "Series", "componentPct": 85, "dataSource": "SSURGO", @@ -176,7 +176,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25623299", + "componentID": "27108854", "componentKind": "Series", "componentPct": 85, "dataSource": "SSURGO", @@ -232,7 +232,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25623333", + "componentID": "27108934", "componentKind": "Series", "componentPct": 10, "dataSource": "SSURGO", @@ -265,13 +265,13 @@ "esd": { "ESD": { "ecoclassid": [ - "R077CY022TX" + "R077CY036TX" ], "ecoclassname": [ - "Deep Hardland 16-21 Pz" + "Sandy Loam 16-21 Pz" ], "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/077C/R077CY022TX" + "https://edit.sc.egov.usda.gov/catalogs/esd/077C/R077CY036TX" ] } }, @@ -288,7 +288,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25623334", + "componentID": "27108935", "componentKind": "Series", "componentPct": 5, "dataSource": "SSURGO", @@ -344,7 +344,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25623213", + "componentID": "27108891", "componentKind": "Series", "componentPct": 6, "dataSource": "SSURGO", @@ -400,7 +400,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25623214", + "componentID": "27108892", "componentKind": "Series", "componentPct": 5, "dataSource": "SSURGO", @@ -456,7 +456,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25623212", + "componentID": "27108890", "componentKind": "Series", "componentPct": 4, "dataSource": "SSURGO", @@ -512,7 +512,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25623298", + "componentID": "27108856", "componentKind": "Series", "componentPct": 7, "dataSource": "SSURGO", @@ -568,7 +568,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25623297", + "componentID": "27108855", "componentKind": "Series", "componentPct": 5, "dataSource": "SSURGO", @@ -624,7 +624,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25623296", + "componentID": "27108857", "componentKind": "Series", "componentPct": 3, "dataSource": "SSURGO", @@ -660,68 +660,68 @@ { "component": "Randall", "componentData": "Missing Data", - "componentID": 25623332, + "componentID": 27108933, "name": "Randall", "not_displayed": false, - "rank_data": "8", - "rank_data_group": "8", + "rank_data": "5", + "rank_data_group": "5", "rank_data_loc": "1", "rank_data_loc_group": "1", "rank_loc": "1", "rank_loc_group": "1", - "score_data": 0.427, - "score_data_group": 0.427, - "score_data_loc": 0.451, - "score_data_loc_group": 0.451, + "score_data": 0.533, + "score_data_group": 0.533, + "score_data_loc": 0.504, + "score_data_loc_group": 0.504, "score_loc": 0.474, "score_loc_group": 0.474 }, { "component": "Acuff", "componentData": "Data Complete", - "componentID": 25623297, + "componentID": 27108855, "name": "Acuff2", "not_displayed": false, - "rank_data": "1", - "rank_data_group": "1", + "rank_data": "6", + "rank_data_group": "6", "rank_data_loc": "2", "rank_data_loc_group": "2", "rank_loc": "Not Displayed", "rank_loc_group": "2", - "score_data": 0.593, - "score_data_group": 0.593, - "score_data_loc": 0.423, - "score_data_loc_group": 0.423, + "score_data": 0.504, + "score_data_group": 0.504, + "score_data_loc": 0.379, + "score_data_loc_group": 0.379, "score_loc": 0.253, "score_loc_group": 0.253 }, { "component": "Olton", "componentData": "Data Complete", - "componentID": 25623299, + "componentID": 27108854, "name": "Olton", "not_displayed": false, - "rank_data": "7", - "rank_data_group": "7", + "rank_data": "4", + "rank_data_group": "4", "rank_data_loc": "3", "rank_data_loc_group": "3", "rank_loc": "3", "rank_loc_group": "3", - "score_data": 0.46, - "score_data_group": 0.46, - "score_data_loc": 0.293, - "score_data_loc_group": 0.293, + "score_data": 0.546, + "score_data_group": 0.546, + "score_data_loc": 0.336, + "score_data_loc_group": 0.336, "score_loc": 0.126, "score_loc_group": 0.126 }, { "component": "Friona", "componentData": "Data Complete", - "componentID": 25623214, + "componentID": 27108892, "name": "Friona", "not_displayed": false, - "rank_data": "2", - "rank_data_group": "2", + "rank_data": "1", + "rank_data_group": "1", "rank_data_loc": "4", "rank_data_loc_group": "4", "rank_loc": "7", @@ -734,15 +734,34 @@ "score_loc_group": 0.014 }, { - "component": "Amarillo", + "component": "Estacado", "componentData": "Data Complete", - "componentID": 25623212, - "name": "Amarillo", + "componentID": 27108891, + "name": "Estacado", "not_displayed": false, "rank_data": "3", "rank_data_group": "3", "rank_data_loc": "5", "rank_data_loc_group": "5", + "rank_loc": "6", + "rank_loc_group": "6", + "score_data": 0.548, + "score_data_group": 0.548, + "score_data_loc": 0.285, + "score_data_loc_group": 0.285, + "score_loc": 0.021, + "score_loc_group": 0.021 + }, + { + "component": "Amarillo", + "componentData": "Data Complete", + "componentID": 27108890, + "name": "Amarillo", + "not_displayed": false, + "rank_data": "2", + "rank_data_group": "2", + "rank_data_loc": "6", + "rank_data_loc_group": "6", "rank_loc": "8", "rank_loc_group": "8", "score_data": 0.553, @@ -752,117 +771,98 @@ "score_loc": 0.011, "score_loc_group": 0.011 }, + { + "component": "Mclean", + "componentData": "Missing Data", + "componentID": 27108934, + "name": "Mclean", + "not_displayed": false, + "rank_data": "7", + "rank_data_group": "7", + "rank_data_loc": "7", + "rank_data_loc_group": "7", + "rank_loc": "4", + "rank_loc_group": "4", + "score_data": 0.5, + "score_data_group": 0.5, + "score_data_loc": 0.28, + "score_data_loc_group": 0.28, + "score_loc": 0.059, + "score_loc_group": 0.059 + }, { "component": "Lockney", "componentData": "Missing Data", - "componentID": 25623334, + "componentID": 27108935, "name": "Lockney", "not_displayed": false, - "rank_data": "5", - "rank_data_group": "5", - "rank_data_loc": "6", - "rank_data_loc_group": "6", + "rank_data": "9", + "rank_data_group": "9", + "rank_data_loc": "8", + "rank_data_loc_group": "8", "rank_loc": "5", "rank_loc_group": "5", - "score_data": 0.533, - "score_data_group": 0.533, - "score_data_loc": 0.281, - "score_data_loc_group": 0.281, + "score_data": 0.447, + "score_data_group": 0.447, + "score_data_loc": 0.239, + "score_data_loc_group": 0.239, "score_loc": 0.03, "score_loc_group": 0.03 }, { "component": "Pullman", "componentData": "Data Complete", - "componentID": 25623298, + "componentID": 27108856, "name": "Pullman", "not_displayed": false, - "rank_data": "4", - "rank_data_group": "4", - "rank_data_loc": "7", - "rank_data_loc_group": "7", + "rank_data": "8", + "rank_data_group": "8", + "rank_data_loc": "9", + "rank_data_loc_group": "9", "rank_loc": "9", "rank_loc_group": "9", - "score_data": 0.539, - "score_data_group": 0.539, - "score_data_loc": 0.275, - "score_data_loc_group": 0.275, + "score_data": 0.462, + "score_data_group": 0.462, + "score_data_loc": 0.237, + "score_data_loc_group": 0.237, "score_loc": 0.011, "score_loc_group": 0.011 }, - { - "component": "Estacado", - "componentData": "Data Complete", - "componentID": 25623213, - "name": "Estacado", - "not_displayed": false, - "rank_data": "6", - "rank_data_group": "6", - "rank_data_loc": "8", - "rank_data_loc_group": "8", - "rank_loc": "6", - "rank_loc_group": "6", - "score_data": 0.492, - "score_data_group": 0.492, - "score_data_loc": 0.257, - "score_data_loc_group": 0.257, - "score_loc": 0.021, - "score_loc_group": 0.021 - }, - { - "component": "Mclean", - "componentData": "Missing Data", - "componentID": 25623333, - "name": "Mclean", - "not_displayed": false, - "rank_data": "9", - "rank_data_group": "9", - "rank_data_loc": "9", - "rank_data_loc_group": "9", - "rank_loc": "4", - "rank_loc_group": "4", - "score_data": 0.411, - "score_data_group": 0.411, - "score_data_loc": 0.235, - "score_data_loc_group": 0.235, - "score_loc": 0.059, - "score_loc_group": 0.059 - }, { "component": "Acuff", "componentData": "Data Complete", - "componentID": 25623211, + "componentID": 27108889, "name": "Acuff", "not_displayed": true, "rank_data": "Not Displayed", - "rank_data_group": "1", + "rank_data_group": "6", "rank_data_loc": "Not Displayed", "rank_data_loc_group": "2", "rank_loc": "2", "rank_loc_group": "2", - "score_data": 0.576, - "score_data_group": 0.593, - "score_data_loc": 0.414, - "score_data_loc_group": 0.423, + "score_data": 0.49, + "score_data_group": 0.504, + "score_data_loc": 0.372, + "score_data_loc_group": 0.379, "score_loc": 0.253, "score_loc_group": 0.253 }, { "component": "Estacado", "componentData": "Data Complete", - "componentID": 25623296, + "componentID": 27108857, "name": "Estacado2", "not_displayed": true, "rank_data": "Not Displayed", - "rank_data_group": "6", + "rank_data_group": "3", "rank_data_loc": "Not Displayed", - "rank_data_loc_group": "8", + "rank_data_loc_group": "5", "rank_loc": "Not Displayed", "rank_loc_group": "6", "score_data": 0.441, - "score_data_group": 0.492, + "score_data_group": 0.548, "score_data_loc": 0.231, - "score_data_loc_group": 0.257, + "score_data_loc_group": 0.285, "score_loc": 0.021, "score_loc_group": 0.021 } diff --git a/soil_id/tests/us/__snapshots__/test_us/test_soil_location[34.92816,-114.80764].json b/soil_id/tests/us/__snapshots__/test_us/test_soil_location[34.92816,-114.80764].json index 1b917d7..787dc2c 100644 --- a/soil_id/tests/us/__snapshots__/test_us/test_soil_location[34.92816,-114.80764].json +++ b/soil_id/tests/us/__snapshots__/test_us/test_soil_location[34.92816,-114.80764].json @@ -1,22 +1,22 @@ { "list": { - "AWS_PIW90": 12.66, + "AWS_PIW90": 9.72, "Soil Data Value": [ [ "rfv_class_30", - 0.5074815208577954 - ], - [ - "texture_30", - 0.38007948871089425 + 1.7725548033578953 ], [ "rfv_class_0", - 0.3160432490369194 + 1.368995593589281 ], [ "texture_0", 0.0 + ], + [ + "texture_30", + 0.0 ] ], "metadata": { @@ -46,10 +46,10 @@ } }, "id": { - "component": "Carrizo", - "name": "Carrizo", + "component": "Torriorthents", + "name": "Torriorthents", "rank_loc": "1", - "score_loc": 0.269 + "score_loc": 0.45 }, "lab": {}, "munsell": {}, @@ -58,15 +58,15 @@ "sand": {}, "site": { "siteData": { - "componentID": "14185637", - "componentKind": "Series", - "componentPct": 6, - "dataSource": "STATSGO", + "componentID": "27420738", + "componentKind": "Taxon above family", + "componentPct": 45, + "dataSource": "SSURGO", "distance": 0.0, - "irrcapcl": "None", + "irrcapcl": "nan", "irrcapscl": "None", "irrcapunit": "None", - "mapunitID": "660587", + "mapunitID": "3457453", "minCompDistance": 0.0, "nirrcapcl": "7", "nirrcapscl": "s", @@ -74,8 +74,8 @@ "rfvInfill": "No", "sdeURL": "", "seeURL": "", - "slope": 1.0, - "taxsubgrp": "Typic Torriorthents", + "slope": 3.0, + "taxsubgrp": "None", "textureInfill": "No" }, "siteDescription": "" @@ -96,10 +96,10 @@ } }, "id": { - "component": "Gunsight", - "name": "Gunsight", + "component": "Torripsamments", + "name": "Torripsamments", "rank_loc": "2", - "score_loc": 0.18 + "score_loc": 0.3 }, "lab": {}, "munsell": {}, @@ -108,24 +108,24 @@ "sand": {}, "site": { "siteData": { - "componentID": "14185636", - "componentKind": "Series", - "componentPct": 27, - "dataSource": "STATSGO", + "componentID": "27420739", + "componentKind": "Taxon above family", + "componentPct": 30, + "dataSource": "SSURGO", "distance": 0.0, - "irrcapcl": "None", - "irrcapscl": "None", + "irrcapcl": "3", + "irrcapscl": "e", "irrcapunit": "None", - "mapunitID": "660587", + "mapunitID": "3457453", "minCompDistance": 0.0, "nirrcapcl": "7", - "nirrcapscl": "s", + "nirrcapscl": "c", "nirrcapunit": "None", "rfvInfill": "No", "sdeURL": "", "seeURL": "", - "slope": 21.0, - "taxsubgrp": "Typic Haplocalcids", + "slope": 2.0, + "taxsubgrp": "None", "textureInfill": "No" }, "siteDescription": "" @@ -146,10 +146,10 @@ } }, "id": { - "component": "Chuckawalla", - "name": "Chuckawalla", + "component": "Haplargids", + "name": "Haplargids", "rank_loc": "3", - "score_loc": 0.051 + "score_loc": 0.15 }, "lab": {}, "munsell": {}, @@ -158,524 +158,24 @@ "sand": {}, "site": { "siteData": { - "componentID": "14185642", - "componentKind": "Series", - "componentPct": 8, - "dataSource": "STATSGO", + "componentID": "27420740", + "componentKind": "Taxon above family", + "componentPct": 15, + "dataSource": "SSURGO", "distance": 0.0, - "irrcapcl": "None", - "irrcapscl": "None", - "irrcapunit": "None", - "mapunitID": "660587", - "minCompDistance": 0.0, - "nirrcapcl": "7", - "nirrcapscl": "s", - "nirrcapunit": "None", - "rfvInfill": "No", - "sdeURL": "", - "seeURL": "", - "slope": 15.0, - "taxsubgrp": "Typic Calciargids", - "textureInfill": "No" - }, - "siteDescription": "" - }, - "texture": {}, - "top_depth": {} - }, - { - "bottom_depth": {}, - "cec": {}, - "clay": {}, - "ec": {}, - "esd": { - "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" - } - }, - "id": { - "component": "Beeline", - "name": "Beeline", - "rank_loc": "4", - "score_loc": 0.026 - }, - "lab": {}, - "munsell": {}, - "ph": {}, - "rock_fragments": {}, - "sand": {}, - "site": { - "siteData": { - "componentID": "14185640", - "componentKind": "Series", - "componentPct": 5, - "dataSource": "STATSGO", - "distance": 0.0, - "irrcapcl": "None", - "irrcapscl": "None", - "irrcapunit": "None", - "mapunitID": "660587", - "minCompDistance": 0.0, - "nirrcapcl": "7", - "nirrcapscl": "s", - "nirrcapunit": "None", - "rfvInfill": "No", - "sdeURL": "", - "seeURL": "", - "slope": 24.0, - "taxsubgrp": "Typic Torriorthents", - "textureInfill": "No" - }, - "siteDescription": "" - }, - "texture": {}, - "top_depth": {} - }, - { - "bottom_depth": {}, - "cec": {}, - "clay": {}, - "ec": {}, - "esd": { - "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" - } - }, - "id": { - "component": "Cipriano", - "name": "Cipriano", - "rank_loc": "5", - "score_loc": 0.026 - }, - "lab": {}, - "munsell": {}, - "ph": {}, - "rock_fragments": {}, - "sand": {}, - "site": { - "siteData": { - "componentID": "14185643", - "componentKind": "Series", - "componentPct": 5, - "dataSource": "STATSGO", - "distance": 0.0, - "irrcapcl": "None", - "irrcapscl": "None", - "irrcapunit": "None", - "mapunitID": "660587", - "minCompDistance": 0.0, - "nirrcapcl": "7", - "nirrcapscl": "s", - "nirrcapunit": "None", - "rfvInfill": "No", - "sdeURL": "", - "seeURL": "", - "slope": 18.0, - "taxsubgrp": "Typic Haplodurids", - "textureInfill": "No" - }, - "siteDescription": "" - }, - "texture": {}, - "top_depth": {} - }, - { - "bottom_depth": {}, - "cec": {}, - "clay": {}, - "ec": {}, - "esd": { - "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" - } - }, - "id": { - "component": "Denure", - "name": "Denure", - "rank_loc": "6", - "score_loc": 0.026 - }, - "lab": {}, - "munsell": {}, - "ph": {}, - "rock_fragments": {}, - "sand": {}, - "site": { - "siteData": { - "componentID": "14185639", - "componentKind": "Series", - "componentPct": 5, - "dataSource": "STATSGO", - "distance": 0.0, - "irrcapcl": "None", - "irrcapscl": "None", - "irrcapunit": "None", - "mapunitID": "660587", - "minCompDistance": 0.0, - "nirrcapcl": "7", - "nirrcapscl": "s", - "nirrcapunit": "None", - "rfvInfill": "No", - "sdeURL": "", - "seeURL": "", - "slope": 4.0, - "taxsubgrp": "Typic Haplocambids", - "textureInfill": "No" - }, - "siteDescription": "" - }, - "texture": {}, - "top_depth": {} - }, - { - "bottom_depth": {}, - "cec": {}, - "clay": {}, - "ec": {}, - "esd": { - "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" - } - }, - "id": { - "component": "Gilman", - "name": "Gilman", - "rank_loc": "7", - "score_loc": 0.026 - }, - "lab": {}, - "munsell": {}, - "ph": {}, - "rock_fragments": {}, - "sand": {}, - "site": { - "siteData": { - "componentID": "14185646", - "componentKind": "Series", - "componentPct": 5, - "dataSource": "STATSGO", - "distance": 0.0, - "irrcapcl": "2", - "irrcapscl": "w", - "irrcapunit": "None", - "mapunitID": "660587", - "minCompDistance": 0.0, - "nirrcapcl": "7", - "nirrcapscl": "w", - "nirrcapunit": "None", - "rfvInfill": "No", - "sdeURL": "", - "seeURL": "", - "slope": 3.0, - "taxsubgrp": "Typic Torrifluvents", - "textureInfill": "No" - }, - "siteDescription": "" - }, - "texture": {}, - "top_depth": {} - }, - { - "bottom_depth": {}, - "cec": {}, - "clay": {}, - "ec": {}, - "esd": { - "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" - } - }, - "id": { - "component": "Mohall", - "name": "Mohall", - "rank_loc": "8", - "score_loc": 0.026 - }, - "lab": {}, - "munsell": {}, - "ph": {}, - "rock_fragments": {}, - "sand": {}, - "site": { - "siteData": { - "componentID": "14185644", - "componentKind": "Series", - "componentPct": 5, - "dataSource": "STATSGO", - "distance": 0.0, - "irrcapcl": "None", - "irrcapscl": "None", - "irrcapunit": "None", - "mapunitID": "660587", - "minCompDistance": 0.0, - "nirrcapcl": "7", - "nirrcapscl": "s", - "nirrcapunit": "None", - "rfvInfill": "No", - "sdeURL": "", - "seeURL": "", - "slope": 4.0, - "taxsubgrp": "Typic Calciargids", - "textureInfill": "No" - }, - "siteDescription": "" - }, - "texture": {}, - "top_depth": {} - }, - { - "bottom_depth": {}, - "cec": {}, - "clay": {}, - "ec": {}, - "esd": { - "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" - } - }, - "id": { - "component": "Antho", - "name": "Antho", - "rank_loc": "9", - "score_loc": 0.009 - }, - "lab": {}, - "munsell": {}, - "ph": {}, - "rock_fragments": {}, - "sand": {}, - "site": { - "siteData": { - "componentID": "14185610", - "componentKind": "Series", - "componentPct": 2, - "dataSource": "STATSGO", - "distance": 353.554689070506, - "irrcapcl": "2", - "irrcapscl": "e", - "irrcapunit": "None", - "mapunitID": "660584", - "minCompDistance": 353.554689070506, - "nirrcapcl": "7", - "nirrcapscl": "w", - "nirrcapunit": "None", - "rfvInfill": "No", - "sdeURL": "", - "seeURL": "", - "slope": 3.0, - "taxsubgrp": "Typic Torrifluvents", - "textureInfill": "No" - }, - "siteDescription": "" - }, - "texture": {}, - "top_depth": {} - }, - { - "bottom_depth": {}, - "cec": {}, - "clay": {}, - "ec": {}, - "esd": { - "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" - } - }, - "id": { - "component": "Aco", - "name": "Aco", - "rank_loc": "10", - "score_loc": 0.005 - }, - "lab": {}, - "munsell": {}, - "ph": {}, - "rock_fragments": {}, - "sand": {}, - "site": { - "siteData": { - "componentID": "14185609", - "componentKind": "Series", - "componentPct": 1, - "dataSource": "STATSGO", - "distance": 353.554689070506, - "irrcapcl": "2", - "irrcapscl": "e", - "irrcapunit": "None", - "mapunitID": "660584", - "minCompDistance": 353.554689070506, - "nirrcapcl": "7", - "nirrcapscl": "e", - "nirrcapunit": "None", - "rfvInfill": "No", - "sdeURL": "", - "seeURL": "", - "slope": 4.0, - "taxsubgrp": "Typic Haplocalcids", - "textureInfill": "No" - }, - "siteDescription": "" - }, - "texture": {}, - "top_depth": {} - }, - { - "bottom_depth": {}, - "cec": {}, - "clay": {}, - "ec": {}, - "esd": { - "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" - } - }, - "id": { - "component": "Indio", - "name": "Indio", - "rank_loc": "11", - "score_loc": 0.005 - }, - "lab": {}, - "munsell": {}, - "ph": {}, - "rock_fragments": {}, - "sand": {}, - "site": { - "siteData": { - "componentID": "14185607", - "componentKind": "Series", - "componentPct": 1, - "dataSource": "STATSGO", - "distance": 353.554689070506, - "irrcapcl": "2", - "irrcapscl": "e", - "irrcapunit": "None", - "mapunitID": "660584", - "minCompDistance": 353.554689070506, - "nirrcapcl": "7", - "nirrcapscl": "e", - "nirrcapunit": "None", - "rfvInfill": "No", - "sdeURL": "", - "seeURL": "", - "slope": 3.0, - "taxsubgrp": "Typic Torrifluvents", - "textureInfill": "No" - }, - "siteDescription": "" - }, - "texture": {}, - "top_depth": {} - }, - { - "bottom_depth": {}, - "cec": {}, - "clay": {}, - "ec": {}, - "esd": { - "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" - } - }, - "id": { - "component": "Lethent", - "name": "Lethent", - "rank_loc": "12", - "score_loc": 0.005 - }, - "lab": {}, - "munsell": {}, - "ph": {}, - "rock_fragments": {}, - "sand": {}, - "site": { - "siteData": { - "componentID": "14185608", - "componentKind": "Series", - "componentPct": 1, - "dataSource": "STATSGO", - "distance": 353.554689070506, "irrcapcl": "3", "irrcapscl": "s", "irrcapunit": "None", - "mapunitID": "660584", - "minCompDistance": 353.554689070506, - "nirrcapcl": "7", - "nirrcapscl": "s", - "nirrcapunit": "None", - "rfvInfill": "No", - "sdeURL": "", - "seeURL": "", - "slope": 1.0, - "taxsubgrp": "Typic Natrargids", - "textureInfill": "No" - }, - "siteDescription": "" - }, - "texture": {}, - "top_depth": {} - }, - { - "bottom_depth": {}, - "cec": {}, - "clay": {}, - "ec": {}, - "esd": { - "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" - } - }, - "id": { - "component": "Carrizo", - "name": "Carrizo2", - "rank_loc": "Not Displayed", - "score_loc": 0.269 - }, - "lab": {}, - "munsell": {}, - "ph": {}, - "rock_fragments": {}, - "sand": {}, - "site": { - "siteData": { - "componentID": "14185597", - "componentKind": "Series", - "componentPct": 10, - "dataSource": "STATSGO", - "distance": 353.554689070506, - "irrcapcl": "6", - "irrcapscl": "w", - "irrcapunit": "None", - "mapunitID": "660584", + "mapunitID": "3457453", "minCompDistance": 0.0, "nirrcapcl": "7", - "nirrcapscl": "w", + "nirrcapscl": "c", "nirrcapunit": "None", "rfvInfill": "No", "sdeURL": "", "seeURL": "", "slope": 1.0, - "taxsubgrp": "Typic Torriorthents", + "taxsubgrp": "None", "textureInfill": "No" }, "siteDescription": "" @@ -696,10 +196,10 @@ } }, "id": { - "component": "Carrizo", - "name": "Carrizo3", - "rank_loc": "Not Displayed", - "score_loc": 0.269 + "component": "Haplocalcids", + "name": "Haplocalcids", + "rank_loc": "4", + "score_loc": 0.1 }, "lab": {}, "munsell": {}, @@ -708,74 +208,24 @@ "sand": {}, "site": { "siteData": { - "componentID": "14185605", - "componentKind": "Series", - "componentPct": 40, - "dataSource": "STATSGO", - "distance": 353.554689070506, - "irrcapcl": "None", - "irrcapscl": "None", + "componentID": "27420741", + "componentKind": "Taxon above family", + "componentPct": 10, + "dataSource": "SSURGO", + "distance": 0.0, + "irrcapcl": "4", + "irrcapscl": "s", "irrcapunit": "None", - "mapunitID": "660584", + "mapunitID": "3457453", "minCompDistance": 0.0, "nirrcapcl": "7", - "nirrcapscl": "s", + "nirrcapscl": "c", "nirrcapunit": "None", "rfvInfill": "No", "sdeURL": "", "seeURL": "", - "slope": 4.0, - "taxsubgrp": "Typic Torriorthents", - "textureInfill": "No" - }, - "siteDescription": "" - }, - "texture": {}, - "top_depth": {} - }, - { - "bottom_depth": {}, - "cec": {}, - "clay": {}, - "ec": {}, - "esd": { - "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" - } - }, - "id": { - "component": "Gunsight", - "name": "Gunsight2", - "rank_loc": "Not Displayed", - "score_loc": 0.18 - }, - "lab": {}, - "munsell": {}, - "ph": {}, - "rock_fragments": {}, - "sand": {}, - "site": { - "siteData": { - "componentID": "14185602", - "componentKind": "Series", - "componentPct": 8, - "dataSource": "STATSGO", - "distance": 353.554689070506, - "irrcapcl": "None", - "irrcapscl": "None", - "irrcapunit": "None", - "mapunitID": "660584", - "minCompDistance": 0.0, - "nirrcapcl": "7", - "nirrcapscl": "s", - "nirrcapunit": "None", - "rfvInfill": "Yes", - "sdeURL": "", - "seeURL": "", - "slope": 5.0, - "taxsubgrp": "Typic Haplocalcids", + "slope": 3.0, + "taxsubgrp": "None", "textureInfill": "No" }, "siteDescription": "" @@ -792,289 +242,80 @@ }, "soilRank": [ { - "component": "Carrizo", + "component": "Torriorthents", "componentData": "Missing Data", - "componentID": 14185605, - "name": "Carrizo3", + "componentID": 27420738, + "name": "Torriorthents", "not_displayed": false, - "rank_data": "3", - "rank_data_group": "3", + "rank_data": "1", + "rank_data_group": "1", "rank_data_loc": "1", "rank_data_loc_group": "1", - "rank_loc": "Not Displayed", - "rank_loc_group": "1", - "score_data": 0.752, - "score_data_group": 0.752, - "score_data_loc": 0.511, - "score_data_loc_group": 0.511, - "score_loc": 0.269, - "score_loc_group": 0.269 + "rank_loc": 1, + "rank_loc_group": 1, + "score_data": 0.365, + "score_data_group": 0.365, + "score_data_loc": 0.408, + "score_data_loc_group": 0.408, + "score_loc": 0.45, + "score_loc_group": 0.45 }, { - "component": "Gunsight", + "component": "Haplocalcids", "componentData": "Missing Data", - "componentID": 14185636, - "name": "Gunsight", + "componentID": 27420741, + "name": "Haplocalcids", "not_displayed": false, "rank_data": "2", "rank_data_group": "2", "rank_data_loc": "2", "rank_data_loc_group": "2", - "rank_loc": "2", - "rank_loc_group": "2", - "score_data": 0.793, - "score_data_group": 0.793, - "score_data_loc": 0.487, - "score_data_loc_group": 0.487, - "score_loc": 0.18, - "score_loc_group": 0.18 + "rank_loc": 4, + "rank_loc_group": 4, + "score_data": 0.281, + "score_data_group": 0.281, + "score_data_loc": 0.19, + "score_data_loc_group": 0.19, + "score_loc": 0.1, + "score_loc_group": 0.1 }, { - "component": "Chuckawalla", + "component": "Torripsamments", "componentData": "Missing Data", - "componentID": 14185642, - "name": "Chuckawalla", + "componentID": 27420739, + "name": "Torripsamments", "not_displayed": false, - "rank_data": "1", - "rank_data_group": "1", + "rank_data": "3", + "rank_data_group": "3", "rank_data_loc": "3", "rank_data_loc_group": "3", - "rank_loc": "3", - "rank_loc_group": "3", - "score_data": 0.804, - "score_data_group": 0.804, - "score_data_loc": 0.427, - "score_data_loc_group": 0.427, - "score_loc": 0.051, - "score_loc_group": 0.051 + "rank_loc": 2, + "rank_loc_group": 2, + "score_data": 0.058, + "score_data_group": 0.058, + "score_data_loc": 0.179, + "score_data_loc_group": 0.179, + "score_loc": 0.3, + "score_loc_group": 0.3 }, { - "component": "Gilman", + "component": "Haplargids", "componentData": "Missing Data", - "componentID": 14185646, - "name": "Gilman", + "componentID": 27420740, + "name": "Haplargids", "not_displayed": false, "rank_data": "4", "rank_data_group": "4", "rank_data_loc": "4", "rank_data_loc_group": "4", - "rank_loc": "7", - "rank_loc_group": "7", - "score_data": 0.746, - "score_data_group": 0.746, - "score_data_loc": 0.386, - "score_data_loc_group": 0.386, - "score_loc": 0.026, - "score_loc_group": 0.026 - }, - { - "component": "Cipriano", - "componentData": "Missing Data", - "componentID": 14185643, - "name": "Cipriano", - "not_displayed": false, - "rank_data": "6", - "rank_data_group": "6", - "rank_data_loc": "5", - "rank_data_loc_group": "5", - "rank_loc": "5", - "rank_loc_group": "5", - "score_data": 0.733, - "score_data_group": 0.733, - "score_data_loc": 0.38, - "score_data_loc_group": 0.38, - "score_loc": 0.026, - "score_loc_group": 0.026 - }, - { - "component": "Antho", - "componentData": "Missing Data", - "componentID": 14185610, - "name": "Antho", - "not_displayed": false, - "rank_data": "5", - "rank_data_group": "5", - "rank_data_loc": "6", - "rank_data_loc_group": "6", - "rank_loc": "9", - "rank_loc_group": "9", - "score_data": 0.746, - "score_data_group": 0.746, - "score_data_loc": 0.378, - "score_data_loc_group": 0.378, - "score_loc": 0.009, - "score_loc_group": 0.009 - }, - { - "component": "Mohall", - "componentData": "Missing Data", - "componentID": 14185644, - "name": "Mohall", - "not_displayed": false, - "rank_data": "7", - "rank_data_group": "7", - "rank_data_loc": "7", - "rank_data_loc_group": "7", - "rank_loc": "8", - "rank_loc_group": "8", - "score_data": 0.726, - "score_data_group": 0.726, - "score_data_loc": 0.376, - "score_data_loc_group": 0.376, - "score_loc": 0.026, - "score_loc_group": 0.026 - }, - { - "component": "Indio", - "componentData": "Missing Data", - "componentID": 14185607, - "name": "Indio", - "not_displayed": false, - "rank_data": "8", - "rank_data_group": "8", - "rank_data_loc": "8", - "rank_data_loc_group": "8", - "rank_loc": "11", - "rank_loc_group": "11", - "score_data": 0.723, - "score_data_group": 0.723, - "score_data_loc": 0.364, - "score_data_loc_group": 0.364, - "score_loc": 0.005, - "score_loc_group": 0.005 - }, - { - "component": "Lethent", - "componentData": "Missing Data", - "componentID": 14185608, - "name": "Lethent", - "not_displayed": false, - "rank_data": "9", - "rank_data_group": "9", - "rank_data_loc": "9", - "rank_data_loc_group": "9", - "rank_loc": "12", - "rank_loc_group": "12", - "score_data": 0.722, - "score_data_group": 0.722, - "score_data_loc": 0.364, - "score_data_loc_group": 0.364, - "score_loc": 0.005, - "score_loc_group": 0.005 - }, - { - "component": "Beeline", - "componentData": "Missing Data", - "componentID": 14185640, - "name": "Beeline", - "not_displayed": false, - "rank_data": "11", - "rank_data_group": "11", - "rank_data_loc": "10", - "rank_data_loc_group": "10", - "rank_loc": "4", - "rank_loc_group": "4", - "score_data": 0.695, - "score_data_group": 0.695, - "score_data_loc": 0.36, - "score_data_loc_group": 0.36, - "score_loc": 0.026, - "score_loc_group": 0.026 - }, - { - "component": "Aco", - "componentData": "Missing Data", - "componentID": 14185609, - "name": "Aco", - "not_displayed": false, - "rank_data": "10", - "rank_data_group": "10", - "rank_data_loc": "11", - "rank_data_loc_group": "11", - "rank_loc": "10", - "rank_loc_group": "10", - "score_data": 0.715, - "score_data_group": 0.715, - "score_data_loc": 0.36, - "score_data_loc_group": 0.36, - "score_loc": 0.005, - "score_loc_group": 0.005 - }, - { - "component": "Denure", - "componentData": "Missing Data", - "componentID": 14185639, - "name": "Denure", - "not_displayed": false, - "rank_data": "12", - "rank_data_group": "12", - "rank_data_loc": "12", - "rank_data_loc_group": "12", - "rank_loc": "6", - "rank_loc_group": "6", - "score_data": 0.687, - "score_data_group": 0.687, - "score_data_loc": 0.356, - "score_data_loc_group": 0.356, - "score_loc": 0.026, - "score_loc_group": 0.026 - }, - { - "component": "Carrizo", - "componentData": "Missing Data", - "componentID": 14185637, - "name": "Carrizo", - "not_displayed": true, - "rank_data": "Not Displayed", - "rank_data_group": "3", - "rank_data_loc": "Not Displayed", - "rank_data_loc_group": "1", - "rank_loc": "1", - "rank_loc_group": "1", - "score_data": 0.723, - "score_data_group": 0.752, - "score_data_loc": 0.496, - "score_data_loc_group": 0.511, - "score_loc": 0.269, - "score_loc_group": 0.269 - }, - { - "component": "Carrizo", - "componentData": "Missing Data", - "componentID": 14185597, - "name": "Carrizo2", - "not_displayed": true, - "rank_data": "Not Displayed", - "rank_data_group": "3", - "rank_data_loc": "Not Displayed", - "rank_data_loc_group": "1", - "rank_loc": "Not Displayed", - "rank_loc_group": "1", - "score_data": 0.681, - "score_data_group": 0.752, - "score_data_loc": 0.475, - "score_data_loc_group": 0.511, - "score_loc": 0.269, - "score_loc_group": 0.269 - }, - { - "component": "Gunsight", - "componentData": "Missing Data", - "componentID": 14185602, - "name": "Gunsight2", - "not_displayed": true, - "rank_data": "Not Displayed", - "rank_data_group": "2", - "rank_data_loc": "Not Displayed", - "rank_data_loc_group": "2", - "rank_loc": "Not Displayed", - "rank_loc_group": "2", - "score_data": 0.768, - "score_data_group": 0.793, - "score_data_loc": 0.474, - "score_data_loc_group": 0.487, - "score_loc": 0.18, - "score_loc_group": 0.18 + "rank_loc": 3, + "rank_loc_group": 3, + "score_data": 0.001, + "score_data_group": 0.001, + "score_data_loc": 0.075, + "score_data_loc_group": 0.075, + "score_loc": 0.15, + "score_loc_group": 0.15 } ] } diff --git a/soil_id/tests/us/__snapshots__/test_us/test_soil_location[35.59918,-120.491439].json b/soil_id/tests/us/__snapshots__/test_us/test_soil_location[35.59918,-120.491439].json index bc3b64e..8583b38 100644 --- a/soil_id/tests/us/__snapshots__/test_us/test_soil_location[35.59918,-120.491439].json +++ b/soil_id/tests/us/__snapshots__/test_us/test_soil_location[35.59918,-120.491439].json @@ -64,7 +64,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "26027166", + "componentID": "26734862", "componentKind": "Series", "componentPct": 45, "dataSource": "SSURGO", @@ -82,7 +82,7 @@ "seeURL": "https://casoilresource.lawr.ucdavis.edu/see/#balcom", "slope": 40.0, "taxsubgrp": "Calcixerollic Xerochrepts", - "textureInfill": "No" + "textureInfill": "Yes" }, "siteDescription": "The Balcom series consists of moderately deep, well drained soils that formed in material that weathered from soft, calcareous shale and sandstone. Balcom soils are on hills and have slopes of 5 to 75 percent. The mean annual precipitation is about 18 inches and the mean annual air temperature is about 61 degrees F." }, @@ -120,7 +120,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "26027683", + "componentID": "26735232", "componentKind": "Series", "componentPct": 20, "dataSource": "SSURGO", @@ -176,7 +176,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "26027125", + "componentID": "26734851", "componentKind": "Series", "componentPct": 45, "dataSource": "SSURGO", @@ -232,7 +232,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "26027715", + "componentID": "26735225", "componentKind": "Series", "componentPct": 20, "dataSource": "SSURGO", @@ -268,76 +268,76 @@ { "component": "Balcom", "componentData": "Data Complete", - "componentID": 26027125, + "componentID": 26734851, "name": "Balcom3", "not_displayed": false, - "rank_data": "1", - "rank_data_group": "1", + "rank_data": "2", + "rank_data_group": "2", "rank_data_loc": "1", "rank_data_loc_group": "1", "rank_loc": "Not Displayed", "rank_loc_group": "1", - "score_data": 0.552, - "score_data_group": 0.552, - "score_data_loc": 0.402, - "score_data_loc_group": 0.402, + "score_data": 0.541, + "score_data_group": 0.541, + "score_data_loc": 0.396, + "score_data_loc_group": 0.396, "score_loc": 0.252, "score_loc_group": 0.252 }, { "component": "Los osos", "componentData": NaN, - "componentID": 26027715, + "componentID": 26735225, "name": "Los osos2", "not_displayed": false, - "rank_data": "2", - "rank_data_group": "2", + "rank_data": "1", + "rank_data_group": "1", "rank_data_loc": "2", "rank_data_loc_group": "2", "rank_loc": "Not Displayed", "rank_loc_group": "2", - "score_data": 0.535, - "score_data_group": 0.535, - "score_data_loc": 0.33, - "score_data_loc_group": 0.33, + "score_data": 0.558, + "score_data_group": 0.558, + "score_data_loc": 0.341, + "score_data_loc_group": 0.341, "score_loc": 0.125, "score_loc_group": 0.125 }, { "component": "Balcom", - "componentData": "Data Complete", - "componentID": 26027166, + "componentData": NaN, + "componentID": 26734862, "name": "Balcom2", "not_displayed": true, "rank_data": "Not Displayed", - "rank_data_group": "1", + "rank_data_group": "2", "rank_data_loc": "Not Displayed", "rank_data_loc_group": "1", "rank_loc": "1", "rank_loc_group": "1", - "score_data": 0.345, - "score_data_group": 0.552, - "score_data_loc": 0.299, - "score_data_loc_group": 0.402, + "score_data": 0.37, + "score_data_group": 0.541, + "score_data_loc": 0.311, + "score_data_loc_group": 0.396, "score_loc": 0.252, "score_loc_group": 0.252 }, { "component": "Los osos", "componentData": NaN, - "componentID": 26027683, + "componentID": 26735232, "name": "Los osos", "not_displayed": true, "rank_data": "Not Displayed", - "rank_data_group": "2", + "rank_data_group": "1", "rank_data_loc": "Not Displayed", "rank_data_loc_group": "2", "rank_loc": "2", "rank_loc_group": "2", - "score_data": 0.37, - "score_data_group": 0.535, - "score_data_loc": 0.248, - "score_data_loc_group": 0.33, + "score_data": 0.363, + "score_data_group": 0.558, + "score_data_loc": 0.244, + "score_data_loc_group": 0.341, "score_loc": 0.125, "score_loc_group": 0.125 } diff --git a/soil_id/tests/us/__snapshots__/test_us/test_soil_location[37.422,-122.084].json b/soil_id/tests/us/__snapshots__/test_us/test_soil_location[37.422,-122.084].json index 5445f66..48f4cb3 100644 --- a/soil_id/tests/us/__snapshots__/test_us/test_soil_location[37.422,-122.084].json +++ b/soil_id/tests/us/__snapshots__/test_us/test_soil_location[37.422,-122.084].json @@ -41,13 +41,13 @@ "esd": { "ESD": { "ecoclassid": [ - "R014XG903CA" + "R014XG904CA" ], "ecoclassname": [ - "Salt Marsh" + "Dry Clayey Bottom" ], "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/014X/R014XG903CA" + "https://edit.sc.egov.usda.gov/catalogs/esd/014X/R014XG904CA" ] } }, @@ -64,7 +64,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "26038467", + "componentID": "26701950", "componentKind": "Series", "componentPct": 25, "dataSource": "SSURGO", @@ -97,13 +97,13 @@ "esd": { "ESD": { "ecoclassid": [ - "R014XG903CA" + "" ], "ecoclassname": [ - "Salt Marsh" + "" ], "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/014X/R014XG903CA" + "" ] } }, @@ -120,7 +120,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "26038503", + "componentID": "26701975", "componentKind": "Taxon above family", "componentPct": 100, "dataSource": "SSURGO", @@ -176,7 +176,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "26038456", + "componentID": "26701978", "componentKind": "Family", "componentPct": 95, "dataSource": "SSURGO", @@ -209,13 +209,13 @@ "esd": { "ESD": { "ecoclassid": [ - "R014XG904CA" + "R014XG903CA" ], "ecoclassname": [ - "Dry Clayey Bottom" + "Salt Marsh" ], "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/014X/R014XG904CA" + "https://edit.sc.egov.usda.gov/catalogs/esd/014X/R014XG903CA" ] } }, @@ -232,7 +232,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "26038466", + "componentID": "26701951", "componentKind": "Series", "componentPct": 2, "dataSource": "SSURGO", @@ -265,13 +265,13 @@ "esd": { "ESD": { "ecoclassid": [ - "" + "R014XG903CA" ], "ecoclassname": [ - "" + "Salt Marsh" ], "edit_url": [ - "" + "https://edit.sc.egov.usda.gov/catalogs/esd/014X/R014XG903CA" ] } }, @@ -288,7 +288,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "26038468", + "componentID": "26701953", "componentKind": "Taxadjunct", "componentPct": 2, "dataSource": "SSURGO", @@ -344,7 +344,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "26038464", + "componentID": "26701952", "componentKind": "Series", "componentPct": 1, "dataSource": "SSURGO", @@ -400,7 +400,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "26038454", + "componentID": "26701976", "componentKind": "Taxon above family", "componentPct": 100, "dataSource": "SSURGO", @@ -436,7 +436,7 @@ { "component": "Xerorthents", "componentData": "Data Complete", - "componentID": 26038503, + "componentID": 26701975, "name": "Xerorthents", "not_displayed": false, "rank_data": "1", @@ -445,17 +445,17 @@ "rank_data_loc_group": "1", "rank_loc": "2", "rank_loc_group": "2", - "score_data": 0.76, - "score_data_group": 0.76, - "score_data_loc": 0.573, - "score_data_loc_group": 0.573, + "score_data": 0.75, + "score_data_group": 0.75, + "score_data_loc": 0.568, + "score_data_loc_group": 0.568, "score_loc": 0.386, "score_loc_group": 0.386 }, { "component": "Hangerone", "componentData": "Data Complete", - "componentID": 26038467, + "componentID": 26701950, "name": "Hangerone", "not_displayed": false, "rank_data": "6", @@ -464,17 +464,17 @@ "rank_data_loc_group": "2", "rank_loc": "1", "rank_loc_group": "1", - "score_data": 0.554, - "score_data_group": 0.554, - "score_data_loc": 0.472, - "score_data_loc_group": 0.472, + "score_data": 0.534, + "score_data_group": 0.534, + "score_data_loc": 0.462, + "score_data_loc_group": 0.462, "score_loc": 0.39, "score_loc_group": 0.39 }, { "component": "Aquic xerorthents", - "componentData": "Missing Data", - "componentID": 26038456, + "componentData": "Data Complete", + "componentID": 26701978, "name": "Aquic xerorthents", "not_displayed": false, "rank_data": "3", @@ -491,32 +491,32 @@ "score_loc_group": 0.165 }, { - "component": "Embarcadero", + "component": "Bayshore", "componentData": "Missing Data", - "componentID": 26038464, - "name": "Embarcadero", + "componentID": 26701953, + "name": "Bayshore", "not_displayed": false, "rank_data": "2", "rank_data_group": "2", "rank_data_loc": "4", "rank_data_loc_group": "4", - "rank_loc": "6", - "rank_loc_group": "6", - "score_data": 0.712, - "score_data_group": 0.712, - "score_data_loc": 0.362, - "score_data_loc_group": 0.362, - "score_loc": 0.012, - "score_loc_group": 0.012 + "rank_loc": "5", + "rank_loc_group": "5", + "score_data": 0.709, + "score_data_group": 0.709, + "score_data_loc": 0.364, + "score_data_loc_group": 0.364, + "score_loc": 0.019, + "score_loc_group": 0.019 }, { "component": "Clear lake", "componentData": "Missing Data", - "componentID": 26038466, + "componentID": 26701951, "name": "Clear lake", "not_displayed": false, - "rank_data": "4", - "rank_data_group": "4", + "rank_data": "5", + "rank_data_group": "5", "rank_data_loc": "5", "rank_data_loc_group": "5", "rank_loc": "4", @@ -529,28 +529,28 @@ "score_loc_group": 0.029 }, { - "component": "Bayshore", - "componentData": "Data Complete", - "componentID": 26038468, - "name": "Bayshore", + "component": "Embarcadero", + "componentData": "Missing Data", + "componentID": 26701952, + "name": "Embarcadero", "not_displayed": false, - "rank_data": "5", - "rank_data_group": "5", + "rank_data": "4", + "rank_data_group": "4", "rank_data_loc": "6", "rank_data_loc_group": "6", - "rank_loc": "5", - "rank_loc_group": "5", - "score_data": 0.607, - "score_data_group": 0.607, - "score_data_loc": 0.313, - "score_data_loc_group": 0.313, - "score_loc": 0.019, - "score_loc_group": 0.019 + "rank_loc": "6", + "rank_loc_group": "6", + "score_data": 0.62, + "score_data_group": 0.62, + "score_data_loc": 0.316, + "score_data_loc_group": 0.316, + "score_loc": 0.012, + "score_loc_group": 0.012 }, { "component": "Xerorthents", "componentData": "Data Complete", - "componentID": 26038454, + "componentID": 26701976, "name": "Xerorthents2", "not_displayed": true, "rank_data": "Not Displayed", @@ -559,10 +559,10 @@ "rank_data_loc_group": "1", "rank_loc": "Not Displayed", "rank_loc_group": "2", - "score_data": 0.652, - "score_data_group": 0.76, - "score_data_loc": 0.519, - "score_data_loc_group": 0.573, + "score_data": 0.672, + "score_data_group": 0.75, + "score_data_loc": 0.529, + "score_data_loc_group": 0.568, "score_loc": 0.386, "score_loc_group": 0.386 } diff --git a/soil_id/tests/us/__snapshots__/test_us/test_soil_location[37.48216451,-99.55016693].json b/soil_id/tests/us/__snapshots__/test_us/test_soil_location[37.48216451,-99.55016693].json index 979dea8..f28d357 100644 --- a/soil_id/tests/us/__snapshots__/test_us/test_soil_location[37.48216451,-99.55016693].json +++ b/soil_id/tests/us/__snapshots__/test_us/test_soil_location[37.48216451,-99.55016693].json @@ -64,7 +64,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25865345", + "componentID": "26356233", "componentKind": "Series", "componentPct": 90, "dataSource": "SSURGO", @@ -120,7 +120,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25865346", + "componentID": "26356234", "componentKind": "Series", "componentPct": 5, "dataSource": "SSURGO", @@ -153,13 +153,13 @@ "esd": { "ESD": { "ecoclassid": [ - "R073XY108KS" + "R073XY101KS" ], "ecoclassname": [ - "Loamy Floodplain" + "Limy Slopes" ], "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/073X/R073XY108KS" + "https://edit.sc.egov.usda.gov/catalogs/esd/073X/R073XY101KS" ] } }, @@ -176,7 +176,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25865492", + "componentID": "26356379", "componentKind": "Series", "componentPct": 40, "dataSource": "SSURGO", @@ -232,7 +232,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25865493", + "componentID": "26356377", "componentKind": "Taxadjunct", "componentPct": 45, "dataSource": "SSURGO", @@ -288,7 +288,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25865519", + "componentID": "26356404", "componentKind": "Series", "componentPct": 30, "dataSource": "SSURGO", @@ -321,13 +321,13 @@ "esd": { "ESD": { "ecoclassid": [ - "R073XY100KS" + "R073XY101KS" ], "ecoclassname": [ - "Loamy Plains" + "Limy Slopes" ], "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/073X/R073XY100KS" + "https://edit.sc.egov.usda.gov/catalogs/esd/073X/R073XY101KS" ] } }, @@ -344,7 +344,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25865495", + "componentID": "26356380", "componentKind": "Series", "componentPct": 10, "dataSource": "SSURGO", @@ -400,7 +400,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25865344", + "componentID": "26356232", "componentKind": "Series", "componentPct": 5, "dataSource": "SSURGO", @@ -433,13 +433,13 @@ "esd": { "ESD": { "ecoclassid": [ - "R073XY101KS" + "R073XY100KS" ], "ecoclassname": [ - "Limy Slopes" + "Loamy Plains" ], "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/073X/R073XY101KS" + "https://edit.sc.egov.usda.gov/catalogs/esd/073X/R073XY100KS" ] } }, @@ -456,7 +456,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25865494", + "componentID": "26356378", "componentKind": "Series", "componentPct": 5, "dataSource": "SSURGO", @@ -489,13 +489,13 @@ "esd": { "ESD": { "ecoclassid": [ - "R073XY100KS" + "R073XY101KS" ], "ecoclassname": [ - "Loamy Plains" + "Limy Slopes" ], "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/073X/R073XY100KS" + "https://edit.sc.egov.usda.gov/catalogs/esd/073X/R073XY101KS" ] } }, @@ -512,7 +512,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25865551", + "componentID": "26356435", "componentKind": "Series", "componentPct": 4, "dataSource": "SSURGO", @@ -545,13 +545,13 @@ "esd": { "ESD": { "ecoclassid": [ - "R073XY101KS" + "R073XY100KS" ], "ecoclassname": [ - "Limy Slopes" + "Loamy Plains" ], "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/073X/R073XY101KS" + "https://edit.sc.egov.usda.gov/catalogs/esd/073X/R073XY100KS" ] } }, @@ -568,7 +568,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25865552", + "componentID": "26356437", "componentKind": "Taxon above family", "componentPct": 1, "dataSource": "SSURGO", @@ -624,7 +624,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25865520", + "componentID": "26356405", "componentKind": "Series", "componentPct": 1, "dataSource": "SSURGO", @@ -680,7 +680,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25865522", + "componentID": "26356407", "componentKind": "Series", "componentPct": 2, "dataSource": "SSURGO", @@ -713,13 +713,13 @@ "esd": { "ESD": { "ecoclassid": [ - "R073XY101KS" + "R073XY100KS" ], "ecoclassname": [ - "Limy Slopes" + "Loamy Plains" ], "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/073X/R073XY101KS" + "https://edit.sc.egov.usda.gov/catalogs/esd/073X/R073XY100KS" ] } }, @@ -736,7 +736,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25865550", + "componentID": "26356436", "componentKind": "Series", "componentPct": 95, "dataSource": "SSURGO", @@ -769,13 +769,13 @@ "esd": { "ESD": { "ecoclassid": [ - "R073XY100KS" + "R073XY108KS" ], "ecoclassname": [ - "Loamy Plains" + "Loamy Floodplain" ], "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/073X/R073XY100KS" + "https://edit.sc.egov.usda.gov/catalogs/esd/073X/R073XY108KS" ] } }, @@ -792,7 +792,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25865521", + "componentID": "26356408", "componentKind": "Series", "componentPct": 2, "dataSource": "SSURGO", @@ -848,7 +848,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25865523", + "componentID": "26356406", "componentKind": "Series", "componentPct": 65, "dataSource": "SSURGO", @@ -884,7 +884,7 @@ { "component": "Harney", "componentData": "Data Complete", - "componentID": 25865346, + "componentID": 26356234, "name": "Harney", "not_displayed": false, "rank_data": "4", @@ -893,40 +893,40 @@ "rank_data_loc_group": "1", "rank_loc": "2", "rank_loc_group": "2", - "score_data": 0.649, - "score_data_group": 0.649, - "score_data_loc": 0.456, - "score_data_loc_group": 0.456, + "score_data": 0.65, + "score_data_group": 0.65, + "score_data_loc": 0.457, + "score_data_loc_group": 0.457, "score_loc": 0.263, "score_loc_group": 0.263 }, { "component": "Coly", "componentData": "Data Complete", - "componentID": 25865523, + "componentID": 26356406, "name": "Coly2", "not_displayed": false, - "rank_data": "1", - "rank_data_group": "1", + "rank_data": "2", + "rank_data_group": "2", "rank_data_loc": "2", "rank_data_loc_group": "2", "rank_loc": "Not Displayed", "rank_loc_group": "3", - "score_data": 0.677, - "score_data_group": 0.677, - "score_data_loc": 0.446, - "score_data_loc_group": 0.446, + "score_data": 0.662, + "score_data_group": 0.662, + "score_data_loc": 0.439, + "score_data_loc_group": 0.439, "score_loc": 0.215, "score_loc_group": 0.215 }, { "component": "Uly", "componentData": "Data Complete", - "componentID": 25865522, + "componentID": 26356407, "name": "Uly2", "not_displayed": false, - "rank_data": "8", - "rank_data_group": "8", + "rank_data": "7", + "rank_data_group": "7", "rank_data_loc": "3", "rank_data_loc_group": "3", "rank_loc": "Not Displayed", @@ -941,11 +941,11 @@ { "component": "Penden", "componentData": "Data Complete", - "componentID": 25865344, + "componentID": 26356232, "name": "Penden", "not_displayed": false, - "rank_data": "2", - "rank_data_group": "2", + "rank_data": "1", + "rank_data_group": "1", "rank_data_loc": "4", "rank_data_loc_group": "4", "rank_loc": "7", @@ -960,7 +960,7 @@ { "component": "Canlon", "componentData": "Data Complete", - "componentID": 25865520, + "componentID": 26356405, "name": "Canlon", "not_displayed": false, "rank_data": "3", @@ -977,32 +977,32 @@ "score_loc_group": 0.002 }, { - "component": "Case", + "component": "Wakeen", "componentData": "Data Complete", - "componentID": 25865495, - "name": "Case", + "componentID": 26356435, + "name": "Wakeen", "not_displayed": false, - "rank_data": "7", - "rank_data_group": "7", + "rank_data": "5", + "rank_data_group": "5", "rank_data_loc": "6", "rank_data_loc_group": "6", - "rank_loc": "6", - "rank_loc_group": "6", - "score_data": 0.58, - "score_data_group": 0.58, - "score_data_loc": 0.302, - "score_data_loc_group": 0.302, - "score_loc": 0.023, - "score_loc_group": 0.023 + "rank_loc": "9", + "rank_loc_group": "9", + "score_data": 0.612, + "score_data_group": 0.612, + "score_data_loc": 0.311, + "score_data_loc_group": 0.311, + "score_loc": 0.01, + "score_loc_group": 0.01 }, { "component": "Aquolls", "componentData": "Data Complete", - "componentID": 25865552, + "componentID": 26356437, "name": "Aquolls", "not_displayed": false, - "rank_data": "5", - "rank_data_group": "5", + "rank_data": "6", + "rank_data_group": "6", "rank_data_loc": "7", "rank_data_loc_group": "7", "rank_loc": "10", @@ -1014,67 +1014,67 @@ "score_loc": 0.003, "score_loc_group": 0.003 }, - { - "component": "Wakeen", - "componentData": "Missing Data", - "componentID": 25865551, - "name": "Wakeen", - "not_displayed": false, - "rank_data": "6", - "rank_data_group": "6", - "rank_data_loc": "8", - "rank_data_loc_group": "8", - "rank_loc": "9", - "rank_loc_group": "9", - "score_data": 0.585, - "score_data_group": 0.585, - "score_data_loc": 0.298, - "score_data_loc_group": 0.298, - "score_loc": 0.01, - "score_loc_group": 0.01 - }, { "component": "Tobin", "componentData": "Data Complete", - "componentID": 25865519, + "componentID": 26356404, "name": "Tobin", "not_displayed": false, "rank_data": "10", "rank_data_group": "10", - "rank_data_loc": "9", - "rank_data_loc_group": "9", + "rank_data_loc": "8", + "rank_data_loc_group": "8", "rank_loc": "5", "rank_loc_group": "5", "score_data": 0.538, "score_data_group": 0.538, - "score_data_loc": 0.298, - "score_data_loc_group": 0.298, + "score_data_loc": 0.297, + "score_data_loc_group": 0.297, "score_loc": 0.057, "score_loc_group": 0.057 }, { "component": "Bridgeport", "componentData": "Data Complete", - "componentID": 25865494, + "componentID": 26356378, "name": "Bridgeport", "not_displayed": false, - "rank_data": "9", - "rank_data_group": "9", - "rank_data_loc": "10", - "rank_data_loc_group": "10", + "rank_data": "8", + "rank_data_group": "8", + "rank_data_loc": "9", + "rank_data_loc_group": "9", "rank_loc": "8", "rank_loc_group": "8", - "score_data": 0.551, - "score_data_group": 0.551, - "score_data_loc": 0.282, - "score_data_loc_group": 0.282, + "score_data": 0.566, + "score_data_group": 0.566, + "score_data_loc": 0.289, + "score_data_loc_group": 0.289, "score_loc": 0.012, "score_loc_group": 0.012 }, + { + "component": "Case", + "componentData": "Data Complete", + "componentID": 26356380, + "name": "Case", + "not_displayed": false, + "rank_data": "9", + "rank_data_group": "9", + "rank_data_loc": "10", + "rank_data_loc_group": "10", + "rank_loc": "6", + "rank_loc_group": "6", + "score_data": 0.553, + "score_data_group": 0.553, + "score_data_loc": 0.288, + "score_data_loc_group": 0.288, + "score_loc": 0.023, + "score_loc_group": 0.023 + }, { "component": "Holdrege", "componentData": "Data Complete", - "componentID": 25865493, + "componentID": 26356377, "name": "Holdrege", "not_displayed": false, "rank_data": "11", @@ -1093,7 +1093,7 @@ { "component": "Harney", "componentData": "Data Complete", - "componentID": 25865521, + "componentID": 26356408, "name": "Harney3", "not_displayed": true, "rank_data": "Not Displayed", @@ -1103,20 +1103,20 @@ "rank_loc": "Not Displayed", "rank_loc_group": "2", "score_data": 0.585, - "score_data_group": 0.649, + "score_data_group": 0.65, "score_data_loc": 0.424, - "score_data_loc_group": 0.456, + "score_data_loc_group": 0.457, "score_loc": 0.263, "score_loc_group": 0.263 }, { "component": "Uly", "componentData": "Data Complete", - "componentID": 25865345, + "componentID": 26356233, "name": "Uly", "not_displayed": true, "rank_data": "Not Displayed", - "rank_data_group": "8", + "rank_data_group": "7", "rank_data_loc": "Not Displayed", "rank_data_loc_group": "3", "rank_loc": "1", @@ -1130,8 +1130,8 @@ }, { "component": "Harney", - "componentData": "Data Complete", - "componentID": 25865550, + "componentData": "Missing Data", + "componentID": 26356436, "name": "Harney2", "not_displayed": true, "rank_data": "Not Displayed", @@ -1141,28 +1141,28 @@ "rank_loc": "Not Displayed", "rank_loc_group": "2", "score_data": 0.55, - "score_data_group": 0.649, + "score_data_group": 0.65, "score_data_loc": 0.407, - "score_data_loc_group": 0.456, + "score_data_loc_group": 0.457, "score_loc": 0.263, "score_loc_group": 0.263 }, { "component": "Coly", "componentData": "Data Complete", - "componentID": 25865492, + "componentID": 26356379, "name": "Coly", "not_displayed": true, "rank_data": "Not Displayed", - "rank_data_group": "1", + "rank_data_group": "2", "rank_data_loc": "Not Displayed", "rank_data_loc_group": "2", "rank_loc": "3", "rank_loc_group": "3", "score_data": 0.597, - "score_data_group": 0.677, + "score_data_group": 0.662, "score_data_loc": 0.406, - "score_data_loc_group": 0.446, + "score_data_loc_group": 0.439, "score_loc": 0.215, "score_loc_group": 0.215 } diff --git a/soil_id/tests/us/__snapshots__/test_us/test_soil_location[39.26009312,-85.50621214].json b/soil_id/tests/us/__snapshots__/test_us/test_soil_location[39.26009312,-85.50621214].json index c70dc9a..025084d 100644 --- a/soil_id/tests/us/__snapshots__/test_us/test_soil_location[39.26009312,-85.50621214].json +++ b/soil_id/tests/us/__snapshots__/test_us/test_soil_location[39.26009312,-85.50621214].json @@ -64,7 +64,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25325347", + "componentID": "26772442", "componentKind": "Series", "componentPct": 5, "dataSource": "SSURGO", @@ -120,7 +120,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25325308", + "componentID": "26772402", "componentKind": "Series", "componentPct": 85, "dataSource": "SSURGO", @@ -176,7 +176,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25325331", + "componentID": "26772425", "componentKind": "Series", "componentPct": 87, "dataSource": "SSURGO", @@ -232,7 +232,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25325341", + "componentID": "26772436", "componentKind": "Series", "componentPct": 9, "dataSource": "SSURGO", @@ -288,7 +288,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25325348", + "componentID": "26772441", "componentKind": "Series", "componentPct": 3, "dataSource": "SSURGO", @@ -321,13 +321,13 @@ "esd": { "ESD": { "ecoclassid": [ - "F111XA007IN" + "F111XA008IN" ], "ecoclassname": [ - "Till Depression Flatwood" + "Wet Till Ridge" ], "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/111X/F111XA007IN" + "https://edit.sc.egov.usda.gov/catalogs/esd/111X/F111XA008IN" ] } }, @@ -344,7 +344,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25325342", + "componentID": "26772434", "componentKind": "Series", "componentPct": 4, "dataSource": "SSURGO", @@ -377,13 +377,13 @@ "esd": { "ESD": { "ecoclassid": [ - "F111XA009IN" + "F111XA007IN" ], "ecoclassname": [ - "Till Ridge" + "Till Depression Flatwood" ], "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/111X/F111XA009IN" + "https://edit.sc.egov.usda.gov/catalogs/esd/111X/F111XA007IN" ] } }, @@ -400,7 +400,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25325406", + "componentID": "26772498", "componentKind": "Series", "componentPct": 5, "dataSource": "SSURGO", @@ -433,13 +433,13 @@ "esd": { "ESD": { "ecoclassid": [ - "F111XA007IN" + "F111XA009IN" ], "ecoclassname": [ - "Till Depression Flatwood" + "Till Ridge" ], "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/111X/F111XA007IN" + "https://edit.sc.egov.usda.gov/catalogs/esd/111X/F111XA009IN" ] } }, @@ -456,7 +456,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25325333", + "componentID": "26772424", "componentKind": "Series", "componentPct": 4, "dataSource": "SSURGO", @@ -512,7 +512,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25325330", + "componentID": "26772426", "componentKind": "Series", "componentPct": 3, "dataSource": "SSURGO", @@ -568,7 +568,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25325332", + "componentID": "26772423", "componentKind": "Series", "componentPct": 2, "dataSource": "SSURGO", @@ -624,7 +624,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25325329", + "componentID": "26772427", "componentKind": "Series", "componentPct": 2, "dataSource": "SSURGO", @@ -680,7 +680,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25325334", + "componentID": "26772428", "componentKind": "Series", "componentPct": 2, "dataSource": "SSURGO", @@ -736,7 +736,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25325325", + "componentID": "26772420", "componentKind": "Series", "componentPct": 90, "dataSource": "SSURGO", @@ -792,7 +792,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25325355", + "componentID": "26772448", "componentKind": "Series", "componentPct": 2, "dataSource": "SSURGO", @@ -848,7 +848,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25325351", + "componentID": "26772444", "componentKind": "Series", "componentPct": 4, "dataSource": "SSURGO", @@ -904,7 +904,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25325353", + "componentID": "26772446", "componentKind": "Series", "componentPct": 7, "dataSource": "SSURGO", @@ -937,13 +937,13 @@ "esd": { "ESD": { "ecoclassid": [ - "F111XA008IN" + "F111XA007IN" ], "ecoclassname": [ - "Wet Till Ridge" + "Till Depression Flatwood" ], "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/111X/F111XA008IN" + "https://edit.sc.egov.usda.gov/catalogs/esd/111X/F111XA007IN" ] } }, @@ -960,7 +960,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25325310", + "componentID": "26772403", "componentKind": "Series", "componentPct": 10, "dataSource": "SSURGO", @@ -996,26 +996,26 @@ { "component": "Fincastle", "componentData": "Data Complete", - "componentID": 25325308, + "componentID": 26772402, "name": "Fincastle", "not_displayed": false, - "rank_data": "1", - "rank_data_group": "1", + "rank_data": "2", + "rank_data_group": "2", "rank_data_loc": "1", "rank_data_loc_group": "1", "rank_loc": "2", "rank_loc_group": "2", - "score_data": 0.671, - "score_data_group": 0.671, - "score_data_loc": 0.363, - "score_data_loc_group": 0.363, + "score_data": 0.653, + "score_data_group": 0.653, + "score_data_loc": 0.353, + "score_data_loc_group": 0.353, "score_loc": 0.054, "score_loc_group": 0.054 }, { "component": "Crosby", "componentData": "Data Complete", - "componentID": 25325341, + "componentID": 26772436, "name": "Crosby", "not_displayed": false, "rank_data": "3", @@ -1024,21 +1024,21 @@ "rank_data_loc_group": "2", "rank_loc": "4", "rank_loc_group": "4", - "score_data": 0.662, - "score_data_group": 0.662, - "score_data_loc": 0.355, - "score_data_loc_group": 0.355, + "score_data": 0.651, + "score_data_group": 0.651, + "score_data_loc": 0.349, + "score_data_loc_group": 0.349, "score_loc": 0.048, "score_loc_group": 0.048 }, { "component": "Bonnell", "componentData": "Data Complete", - "componentID": 25325330, + "componentID": 26772426, "name": "Bonnell", "not_displayed": false, - "rank_data": "2", - "rank_data_group": "2", + "rank_data": "1", + "rank_data_group": "1", "rank_data_loc": "3", "rank_data_loc_group": "3", "rank_loc": "9", @@ -1051,104 +1051,104 @@ "score_loc_group": 0.002 }, { - "component": "Holton", + "component": "Grayford", "componentData": "Data Complete", - "componentID": 25325333, - "name": "Holton", + "componentID": 26772427, + "name": "Grayford", "not_displayed": false, "rank_data": "4", "rank_data_group": "4", "rank_data_loc": "4", "rank_data_loc_group": "4", - "rank_loc": "8", - "rank_loc_group": "8", - "score_data": 0.643, - "score_data_group": 0.643, - "score_data_loc": 0.323, - "score_data_loc_group": 0.323, - "score_loc": 0.002, - "score_loc_group": 0.002 + "rank_loc": "11", + "rank_loc_group": "11", + "score_data": 0.648, + "score_data_group": 0.648, + "score_data_loc": 0.325, + "score_data_loc_group": 0.325, + "score_loc": 0.001, + "score_loc_group": 0.001 }, { - "component": "Grayford", + "component": "Hennepin", "componentData": "Data Complete", - "componentID": 25325329, - "name": "Grayford", + "componentID": 26772442, + "name": "Hennepin", "not_displayed": false, - "rank_data": "5", - "rank_data_group": "5", + "rank_data": "9", + "rank_data_group": "9", "rank_data_loc": "5", "rank_data_loc_group": "5", - "rank_loc": "11", - "rank_loc_group": "11", - "score_data": 0.637, - "score_data_group": 0.637, - "score_data_loc": 0.319, - "score_data_loc_group": 0.319, - "score_loc": 0.001, - "score_loc_group": 0.001 + "rank_loc": "1", + "rank_loc_group": "1", + "score_data": 0.582, + "score_data_group": 0.582, + "score_data_loc": 0.322, + "score_data_loc_group": 0.322, + "score_loc": 0.061, + "score_loc_group": 0.061 }, { - "component": "Brookston", + "component": "Holton", "componentData": "Data Complete", - "componentID": 25325342, - "name": "Brookston", + "componentID": 26772424, + "name": "Holton", "not_displayed": false, - "rank_data": "6", - "rank_data_group": "6", + "rank_data": "5", + "rank_data_group": "5", "rank_data_loc": "6", "rank_data_loc_group": "6", - "rank_loc": "6", - "rank_loc_group": "6", - "score_data": 0.61, - "score_data_group": 0.61, - "score_data_loc": 0.31, - "score_data_loc_group": 0.31, - "score_loc": 0.009, - "score_loc_group": 0.009 + "rank_loc": "8", + "rank_loc_group": "8", + "score_data": 0.634, + "score_data_group": 0.634, + "score_data_loc": 0.318, + "score_data_loc_group": 0.318, + "score_loc": 0.002, + "score_loc_group": 0.002 }, { "component": "Cyclone", "componentData": "Data Complete", - "componentID": 25325348, + "componentID": 26772441, "name": "Cyclone", "not_displayed": false, - "rank_data": "7", - "rank_data_group": "7", + "rank_data": "6", + "rank_data_group": "6", "rank_data_loc": "7", "rank_data_loc_group": "7", "rank_loc": "5", "rank_loc_group": "5", - "score_data": 0.596, - "score_data_group": 0.596, - "score_data_loc": 0.303, - "score_data_loc_group": 0.303, + "score_data": 0.614, + "score_data_group": 0.614, + "score_data_loc": 0.312, + "score_data_loc_group": 0.312, "score_loc": 0.011, "score_loc_group": 0.011 }, { - "component": "Hennepin", + "component": "Brookston", "componentData": "Data Complete", - "componentID": 25325355, - "name": "Hennepin3", + "componentID": 26772434, + "name": "Brookston", "not_displayed": false, - "rank_data": "10", - "rank_data_group": "10", + "rank_data": "7", + "rank_data_group": "7", "rank_data_loc": "8", "rank_data_loc_group": "8", - "rank_loc": "Not Displayed", - "rank_loc_group": "1", - "score_data": 0.54, - "score_data_group": 0.54, - "score_data_loc": 0.301, - "score_data_loc_group": 0.301, - "score_loc": 0.061, - "score_loc_group": 0.061 + "rank_loc": "6", + "rank_loc_group": "6", + "score_data": 0.61, + "score_data_group": 0.61, + "score_data_loc": 0.31, + "score_data_loc_group": 0.31, + "score_loc": 0.009, + "score_loc_group": 0.009 }, { "component": "Cincinnati", "componentData": "Data Complete", - "componentID": 25325332, + "componentID": 26772423, "name": "Cincinnati", "not_displayed": false, "rank_data": "8", @@ -1167,11 +1167,11 @@ { "component": "Celina", "componentData": "Data Complete", - "componentID": 25325406, + "componentID": 26772498, "name": "Celina", "not_displayed": false, - "rank_data": "9", - "rank_data_group": "9", + "rank_data": "10", + "rank_data_group": "10", "rank_data_loc": "10", "rank_data_loc_group": "10", "rank_loc": "7", @@ -1186,7 +1186,7 @@ { "component": "Hickory", "componentData": "Data Complete", - "componentID": 25325331, + "componentID": 26772425, "name": "Hickory", "not_displayed": false, "rank_data": "12", @@ -1205,7 +1205,7 @@ { "component": "Jessietown", "componentData": "Data Complete", - "componentID": 25325334, + "componentID": 26772428, "name": "Jessietown", "not_displayed": false, "rank_data": "11", @@ -1214,18 +1214,18 @@ "rank_data_loc_group": "12", "rank_loc": "12", "rank_loc_group": "12", - "score_data": 0.522, - "score_data_group": 0.522, - "score_data_loc": 0.262, - "score_data_loc_group": 0.262, + "score_data": 0.531, + "score_data_group": 0.531, + "score_data_loc": 0.266, + "score_data_loc_group": 0.266, "score_loc": 0.001, "score_loc_group": 0.001 }, { "component": "Crosby", "componentData": "Data Complete", - "componentID": 25325353, - "name": "Crosby3", + "componentID": 26772444, + "name": "Crosby2", "not_displayed": true, "rank_data": "Not Displayed", "rank_data_group": "3", @@ -1233,18 +1233,18 @@ "rank_data_loc_group": "2", "rank_loc": "Not Displayed", "rank_loc_group": "4", - "score_data": 0.654, - "score_data_group": 0.662, - "score_data_loc": 0.351, - "score_data_loc_group": 0.355, + "score_data": 0.609, + "score_data_group": 0.651, + "score_data_loc": 0.328, + "score_data_loc_group": 0.349, "score_loc": 0.048, "score_loc_group": 0.048 }, { "component": "Crosby", "componentData": "Data Complete", - "componentID": 25325351, - "name": "Crosby2", + "componentID": 26772446, + "name": "Crosby3", "not_displayed": true, "rank_data": "Not Displayed", "rank_data_group": "3", @@ -1252,67 +1252,67 @@ "rank_data_loc_group": "2", "rank_loc": "Not Displayed", "rank_loc_group": "4", - "score_data": 0.609, - "score_data_group": 0.662, - "score_data_loc": 0.328, - "score_data_loc_group": 0.355, + "score_data": 0.597, + "score_data_group": 0.651, + "score_data_loc": 0.322, + "score_data_loc_group": 0.349, "score_loc": 0.048, "score_loc_group": 0.048 }, { "component": "Hennepin", "componentData": "Data Complete", - "componentID": 25325325, - "name": "Hennepin2", + "componentID": 26772448, + "name": "Hennepin3", "not_displayed": true, "rank_data": "Not Displayed", - "rank_data_group": "10", + "rank_data_group": "9", "rank_data_loc": "Not Displayed", - "rank_data_loc_group": "8", + "rank_data_loc_group": "5", "rank_loc": "Not Displayed", "rank_loc_group": "1", - "score_data": 0.536, - "score_data_group": 0.54, - "score_data_loc": 0.299, - "score_data_loc_group": 0.301, + "score_data": 0.54, + "score_data_group": 0.582, + "score_data_loc": 0.301, + "score_data_loc_group": 0.322, "score_loc": 0.061, "score_loc_group": 0.061 }, { "component": "Hennepin", "componentData": "Data Complete", - "componentID": 25325347, - "name": "Hennepin", + "componentID": 26772420, + "name": "Hennepin2", "not_displayed": true, "rank_data": "Not Displayed", - "rank_data_group": "10", + "rank_data_group": "9", "rank_data_loc": "Not Displayed", - "rank_data_loc_group": "8", - "rank_loc": "1", + "rank_data_loc_group": "5", + "rank_loc": "Not Displayed", "rank_loc_group": "1", - "score_data": 0.525, - "score_data_group": 0.54, - "score_data_loc": 0.293, - "score_data_loc_group": 0.301, + "score_data": 0.536, + "score_data_group": 0.582, + "score_data_loc": 0.299, + "score_data_loc_group": 0.322, "score_loc": 0.061, "score_loc_group": 0.061 }, { "component": "Cyclone", "componentData": "Data Complete", - "componentID": 25325310, + "componentID": 26772403, "name": "Cyclone2", "not_displayed": true, "rank_data": "Not Displayed", - "rank_data_group": "7", + "rank_data_group": "6", "rank_data_loc": "Not Displayed", "rank_data_loc_group": "7", "rank_loc": "Not Displayed", "rank_loc_group": "5", "score_data": 0.555, - "score_data_group": 0.596, + "score_data_group": 0.614, "score_data_loc": 0.283, - "score_data_loc_group": 0.303, + "score_data_loc_group": 0.312, "score_loc": 0.011, "score_loc_group": 0.011 } diff --git a/soil_id/tests/us/__snapshots__/test_us/test_soil_location[42.494912,-123.064531].json b/soil_id/tests/us/__snapshots__/test_us/test_soil_location[42.494912,-123.064531].json index 54bd61f..f9978fd 100644 --- a/soil_id/tests/us/__snapshots__/test_us/test_soil_location[42.494912,-123.064531].json +++ b/soil_id/tests/us/__snapshots__/test_us/test_soil_location[42.494912,-123.064531].json @@ -4,11 +4,11 @@ "Soil Data Value": [ [ "rfv_class_30", - 1.490207948287594 + 1.4893140246267844 ], [ "rfv_class_0", - 0.8817108392902311 + 0.8825277371828062 ], [ "texture_0", @@ -41,13 +41,13 @@ "esd": { "ESD": { "ecoclassid": [ - "F005XZ018CA" + "F005XZ014CA" ], "ecoclassname": [ - "Moderately Deep Gravelly Mesic Mountains 40-60Ppt" + "Mesic Mountains <40Ppt" ], "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/005X/F005XZ018CA" + "https://edit.sc.egov.usda.gov/catalogs/esd/005X/F005XZ014CA" ] } }, @@ -55,7 +55,7 @@ "component": "Ruch", "name": "Ruch", "rank_loc": "1", - "score_loc": 0.267 + "score_loc": 0.266 }, "lab": {}, "munsell": {}, @@ -64,7 +64,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25443415", + "componentID": "27529401", "componentKind": "Series", "componentPct": 80, "dataSource": "SSURGO", @@ -97,13 +97,13 @@ "esd": { "ESD": { "ecoclassid": [ - "F005XZ018CA" + "F005XZ014CA" ], "ecoclassname": [ - "Moderately Deep Gravelly Mesic Mountains 40-60Ppt" + "Mesic Mountains <40Ppt" ], "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/005X/F005XZ018CA" + "https://edit.sc.egov.usda.gov/catalogs/esd/005X/F005XZ014CA" ] } }, @@ -120,7 +120,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25443480", + "componentID": "27529336", "componentKind": "Series", "componentPct": 40, "dataSource": "SSURGO", @@ -153,13 +153,13 @@ "esd": { "ESD": { "ecoclassid": [ - "F005XZ003CA" + "F005XZ024CA" ], "ecoclassname": [ - "Terraces" + "Ridges" ], "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/005X/F005XZ003CA" + "https://edit.sc.egov.usda.gov/catalogs/esd/005X/F005XZ024CA" ] } }, @@ -176,7 +176,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25443548", + "componentID": "27529265", "componentKind": "Series", "componentPct": 83, "dataSource": "SSURGO", @@ -196,7 +196,7 @@ "taxsubgrp": "Ultic Haploxeralfs", "textureInfill": "No" }, - "siteDescription": "The Abegg series consists of very deep, well drained soils that formed in alluvium and colluvium weathered from metamorphosed sedimentary and volcanic bedrock. Abegg soils are on stream terraces and alluvial fans and have slopes of 2 to 30 percent. The mean annual precipitation is about 45 inches and the mean annual temperature is about 52 degrees F." + "siteDescription": "The Abegg series consists of very deep, well drained soils that formed in alluvium and colluvium weathered from metamorphosed sedimentary and volcanic bedrock. Abegg soils are on stream terraces and alluvial fans and have slopes of 2 to 30 percent. The mean annual precipitation is about 45 inches (1140 mm) and the mean annual temperature is about 52 degrees F (11 degrees C)." }, "texture": {}, "top_depth": {} @@ -209,13 +209,13 @@ "esd": { "ESD": { "ecoclassid": [ - "F005XZ024CA" + "R005XY016OR" ], "ecoclassname": [ - "Ridges" + "Poorly Drained Bottom" ], "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/005X/F005XZ024CA" + "https://edit.sc.egov.usda.gov/catalogs/esd/005X/R005XY016OR" ] } }, @@ -232,7 +232,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25443598", + "componentID": "27529223", "componentKind": "Series", "componentPct": 60, "dataSource": "SSURGO", @@ -288,7 +288,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25443287", + "componentID": "27529518", "componentKind": "Series", "componentPct": 55, "dataSource": "SSURGO", @@ -321,13 +321,13 @@ "esd": { "ESD": { "ecoclassid": [ - "F005XZ014CA" + "F005XZ018CA" ], "ecoclassname": [ - "Mesic Mountains <40Ppt" + "Moderately Deep Gravelly Mesic Mountains 40-60Ppt" ], "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/005X/F005XZ014CA" + "https://edit.sc.egov.usda.gov/catalogs/esd/005X/F005XZ018CA" ] } }, @@ -344,7 +344,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25443286", + "componentID": "27529517", "componentKind": "Series", "componentPct": 30, "dataSource": "SSURGO", @@ -377,13 +377,13 @@ "esd": { "ESD": { "ecoclassid": [ - "F005XZ014CA" + "F005XZ018CA" ], "ecoclassname": [ - "Mesic Mountains <40Ppt" + "Moderately Deep Gravelly Mesic Mountains 40-60Ppt" ], "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/005X/F005XZ014CA" + "https://edit.sc.egov.usda.gov/catalogs/esd/005X/F005XZ018CA" ] } }, @@ -400,7 +400,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25443850", + "componentID": "27529611", "componentKind": "Series", "componentPct": 30, "dataSource": "SSURGO", @@ -433,13 +433,13 @@ "esd": { "ESD": { "ecoclassid": [ - "F005XZ024CA" + "F005XZ009CA" ], "ecoclassname": [ - "Ridges" + "Very Deep Mesic Hills 40-60Ppt" ], "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/005X/F005XZ024CA" + "https://edit.sc.egov.usda.gov/catalogs/esd/005X/F005XZ009CA" ] } }, @@ -456,7 +456,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25443597", + "componentID": "27529224", "componentKind": "Series", "componentPct": 20, "dataSource": "SSURGO", @@ -489,13 +489,13 @@ "esd": { "ESD": { "ecoclassid": [ - "F005XZ009CA" + "F005XZ024CA" ], "ecoclassname": [ - "Very Deep Mesic Hills 40-60Ppt" + "Ridges" ], "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/005X/F005XZ009CA" + "https://edit.sc.egov.usda.gov/catalogs/esd/005X/F005XZ024CA" ] } }, @@ -512,7 +512,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25443414", + "componentID": "27529400", "componentKind": "Series", "componentPct": 2, "dataSource": "SSURGO", @@ -545,13 +545,13 @@ "esd": { "ESD": { "ecoclassid": [ - "R005XY016OR" + "F005XZ003CA" ], "ecoclassname": [ - "Poorly Drained Bottom" + "Terraces" ], "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/005X/R005XY016OR" + "https://edit.sc.egov.usda.gov/catalogs/esd/005X/F005XZ003CA" ] } }, @@ -568,7 +568,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25443848", + "componentID": "27529612", "componentKind": "Series", "componentPct": 55, "dataSource": "SSURGO", @@ -604,121 +604,121 @@ { "component": "Ruch", "componentData": "Data Complete", - "componentID": 25443415, + "componentID": 27529401, "name": "Ruch", "not_displayed": false, - "rank_data": "3", - "rank_data_group": "3", + "rank_data": "5", + "rank_data_group": "5", "rank_data_loc": "1", "rank_data_loc_group": "1", "rank_loc": "1", "rank_loc_group": "1", - "score_data": 0.671, - "score_data_group": 0.671, - "score_data_loc": 0.469, - "score_data_loc_group": 0.469, - "score_loc": 0.267, - "score_loc_group": 0.267 + "score_data": 0.539, + "score_data_group": 0.539, + "score_data_loc": 0.403, + "score_data_loc_group": 0.403, + "score_loc": 0.266, + "score_loc_group": 0.266 }, { "component": "Josephine", "componentData": NaN, - "componentID": 25443848, + "componentID": 27529612, "name": "Josephine2", "not_displayed": false, - "rank_data": "4", - "rank_data_group": "4", + "rank_data": "2", + "rank_data_group": "2", "rank_data_loc": "2", "rank_data_loc_group": "2", "rank_loc": "Not Displayed", "rank_loc_group": "2", - "score_data": 0.664, - "score_data_group": 0.664, - "score_data_loc": 0.395, - "score_data_loc_group": 0.395, + "score_data": 0.668, + "score_data_group": 0.668, + "score_data_loc": 0.397, + "score_data_loc_group": 0.397, "score_loc": 0.125, "score_loc_group": 0.125 }, { "component": "Abegg", "componentData": "Data Complete", - "componentID": 25443548, + "componentID": 27529265, "name": "Abegg", "not_displayed": false, - "rank_data": "2", - "rank_data_group": "2", + "rank_data": "1", + "rank_data_group": "1", "rank_data_loc": "3", "rank_data_loc_group": "3", "rank_loc": "3", "rank_loc_group": "3", - "score_data": 0.709, - "score_data_group": 0.709, - "score_data_loc": 0.389, - "score_data_loc_group": 0.389, + "score_data": 0.719, + "score_data_group": 0.719, + "score_data_loc": 0.394, + "score_data_loc_group": 0.394, "score_loc": 0.069, "score_loc_group": 0.069 }, - { - "component": "Gregory", - "componentData": "Data Complete", - "componentID": 25443414, - "name": "Gregory", - "not_displayed": false, - "rank_data": "1", - "rank_data_group": "1", - "rank_data_loc": "4", - "rank_data_loc_group": "4", - "rank_loc": "9", - "rank_loc_group": "9", - "score_data": 0.746, - "score_data_group": 0.746, - "score_data_loc": 0.376, - "score_data_loc_group": 0.376, - "score_loc": 0.007, - "score_loc_group": 0.007 - }, { "component": "Pollard", "componentData": NaN, - "componentID": 25443850, + "componentID": 27529611, "name": "Pollard", "not_displayed": false, - "rank_data": "5", - "rank_data_group": "5", - "rank_data_loc": "5", - "rank_data_loc_group": "5", + "rank_data": "3", + "rank_data_group": "3", + "rank_data_loc": "4", + "rank_data_loc_group": "4", "rank_loc": "7", "rank_loc_group": "7", - "score_data": 0.626, - "score_data_group": 0.626, - "score_data_loc": 0.326, - "score_data_loc_group": 0.326, + "score_data": 0.665, + "score_data_group": 0.665, + "score_data_loc": 0.345, + "score_data_loc_group": 0.345, "score_loc": 0.025, "score_loc_group": 0.025 }, { - "component": "Offenbacher", + "component": "Gregory", "componentData": "Data Complete", - "componentID": 25443597, - "name": "Offenbacher", + "componentID": 27529400, + "name": "Gregory", + "not_displayed": false, + "rank_data": "4", + "rank_data_group": "4", + "rank_data_loc": "5", + "rank_data_loc_group": "5", + "rank_loc": "9", + "rank_loc_group": "9", + "score_data": 0.614, + "score_data_group": 0.614, + "score_data_loc": 0.311, + "score_data_loc_group": 0.311, + "score_loc": 0.007, + "score_loc_group": 0.007 + }, + { + "component": "Colestine", + "componentData": "Data Complete", + "componentID": 27529517, + "name": "Colestine", "not_displayed": false, "rank_data": "6", "rank_data_group": "6", "rank_data_loc": "6", "rank_data_loc_group": "6", - "rank_loc": "8", - "rank_loc_group": "8", - "score_data": 0.473, - "score_data_group": 0.473, - "score_data_loc": 0.245, - "score_data_loc_group": 0.245, - "score_loc": 0.017, - "score_loc_group": 0.017 + "rank_loc": "6", + "rank_loc_group": "6", + "score_data": 0.526, + "score_data_group": 0.526, + "score_data_loc": 0.276, + "score_data_loc_group": 0.276, + "score_loc": 0.025, + "score_loc_group": 0.025 }, { "component": "Caris", - "componentData": NaN, - "componentID": 25443598, + "componentData": "Data Complete", + "componentID": 27529223, "name": "Caris", "not_displayed": false, "rank_data": "7", @@ -727,67 +727,67 @@ "rank_data_loc_group": "7", "rank_loc": "4", "rank_loc_group": "4", - "score_data": 0.406, - "score_data_group": 0.406, - "score_data_loc": 0.228, - "score_data_loc_group": 0.228, + "score_data": 0.476, + "score_data_group": 0.476, + "score_data_loc": 0.263, + "score_data_loc_group": 0.263, "score_loc": 0.05, "score_loc_group": 0.05 }, { - "component": "Beekman", + "component": "Offenbacher", "componentData": "Data Complete", - "componentID": 25443287, - "name": "Beekman", + "componentID": 27529224, + "name": "Offenbacher", "not_displayed": false, - "rank_data": "9", - "rank_data_group": "9", + "rank_data": "8", + "rank_data_group": "8", "rank_data_loc": "8", "rank_data_loc_group": "8", - "rank_loc": "5", - "rank_loc_group": "5", - "score_data": 0.388, - "score_data_group": 0.388, - "score_data_loc": 0.217, - "score_data_loc_group": 0.217, - "score_loc": 0.046, - "score_loc_group": 0.046 + "rank_loc": "8", + "rank_loc_group": "8", + "score_data": 0.472, + "score_data_group": 0.472, + "score_data_loc": 0.245, + "score_data_loc_group": 0.245, + "score_loc": 0.017, + "score_loc_group": 0.017 }, { - "component": "Colestine", - "componentData": "Data Complete", - "componentID": 25443286, - "name": "Colestine", + "component": "Beekman", + "componentData": NaN, + "componentID": 27529518, + "name": "Beekman", "not_displayed": false, - "rank_data": "8", - "rank_data_group": "8", + "rank_data": "9", + "rank_data_group": "9", "rank_data_loc": "9", "rank_data_loc_group": "9", - "rank_loc": "6", - "rank_loc_group": "6", - "score_data": 0.392, - "score_data_group": 0.392, - "score_data_loc": 0.209, - "score_data_loc_group": 0.209, - "score_loc": 0.025, - "score_loc_group": 0.025 + "rank_loc": "5", + "rank_loc_group": "5", + "score_data": 0.365, + "score_data_group": 0.365, + "score_data_loc": 0.206, + "score_data_loc_group": 0.206, + "score_loc": 0.046, + "score_loc_group": 0.046 }, { "component": "Josephine", "componentData": "Data Complete", - "componentID": 25443480, + "componentID": 27529336, "name": "Josephine", "not_displayed": true, "rank_data": "Not Displayed", - "rank_data_group": "4", + "rank_data_group": "2", "rank_data_loc": "Not Displayed", "rank_data_loc_group": "2", "rank_loc": "2", "rank_loc_group": "2", - "score_data": 0.531, - "score_data_group": 0.664, - "score_data_loc": 0.328, - "score_data_loc_group": 0.395, + "score_data": 0.542, + "score_data_group": 0.668, + "score_data_loc": 0.334, + "score_data_loc_group": 0.397, "score_loc": 0.125, "score_loc_group": 0.125 } diff --git a/soil_id/tests/us/__snapshots__/test_us/test_soil_location[42.63413723,-94.31005777].json b/soil_id/tests/us/__snapshots__/test_us/test_soil_location[42.63413723,-94.31005777].json index 2259fa6..b650423 100644 --- a/soil_id/tests/us/__snapshots__/test_us/test_soil_location[42.63413723,-94.31005777].json +++ b/soil_id/tests/us/__snapshots__/test_us/test_soil_location[42.63413723,-94.31005777].json @@ -64,7 +64,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25584956", + "componentID": "27398757", "componentKind": "Series", "componentPct": 85, "dataSource": "SSURGO", @@ -120,7 +120,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25584954", + "componentID": "27398758", "componentKind": "Series", "componentPct": 5, "dataSource": "SSURGO", @@ -153,13 +153,13 @@ "esd": { "ESD": { "ecoclassid": [ - "R103XY015MN" + "R103XY001MN" ], "ecoclassname": [ - "Depressional Marsh" + "Loamy Wet Prairies" ], "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/103X/R103XY015MN" + "https://edit.sc.egov.usda.gov/catalogs/esd/103X/R103XY001MN" ] } }, @@ -176,7 +176,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25584950", + "componentID": "27398759", "componentKind": "Taxadjunct", "componentPct": 5, "dataSource": "SSURGO", @@ -209,13 +209,13 @@ "esd": { "ESD": { "ecoclassid": [ - "R103XY001MN" + "R103XY004MN" ], "ecoclassname": [ - "Loamy Wet Prairies" + "Loamy Upland Prairies" ], "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/103X/R103XY001MN" + "https://edit.sc.egov.usda.gov/catalogs/esd/103X/R103XY004MN" ] } }, @@ -232,7 +232,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25584952", + "componentID": "27398760", "componentKind": "Series", "componentPct": 5, "dataSource": "SSURGO", @@ -265,13 +265,13 @@ "esd": { "ESD": { "ecoclassid": [ - "R103XY004MN" + "R103XY015MN" ], "ecoclassname": [ - "Loamy Upland Prairies" + "Depressional Marsh" ], "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/103X/R103XY004MN" + "https://edit.sc.egov.usda.gov/catalogs/esd/103X/R103XY015MN" ] } }, @@ -288,7 +288,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25584960", + "componentID": "27398765", "componentKind": "Series", "componentPct": 3, "dataSource": "SSURGO", @@ -321,13 +321,13 @@ "esd": { "ESD": { "ecoclassid": [ - "R103XY015MN" + "R103XY001MN" ], "ecoclassname": [ - "Depressional Marsh" + "Loamy Wet Prairies" ], "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/103X/R103XY015MN" + "https://edit.sc.egov.usda.gov/catalogs/esd/103X/R103XY001MN" ] } }, @@ -344,7 +344,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25584602", + "componentID": "27398742", "componentKind": "Series", "componentPct": 5, "dataSource": "SSURGO", @@ -377,13 +377,13 @@ "esd": { "ESD": { "ecoclassid": [ - "R103XY001MN" + "R103XY015MN" ], "ecoclassname": [ - "Loamy Wet Prairies" + "Depressional Marsh" ], "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/103X/R103XY001MN" + "https://edit.sc.egov.usda.gov/catalogs/esd/103X/R103XY015MN" ] } }, @@ -400,7 +400,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25584962", + "componentID": "27398763", "componentKind": "Series", "componentPct": 2, "dataSource": "SSURGO", @@ -433,92 +433,73 @@ "model": "v2" }, "soilRank": [ - { - "component": "Clarion", - "componentData": "Data Complete", - "componentID": 25584950, - "name": "Clarion", - "not_displayed": false, - "rank_data": "1", - "rank_data_group": "1", - "rank_data_loc": "1", - "rank_data_loc_group": "1", - "rank_loc": 3, - "rank_loc_group": 3, - "score_data": 0.517, - "score_data_group": 0.517, - "score_data_loc": 0.358, - "score_data_loc_group": 0.358, - "score_loc": 0.2, - "score_loc_group": 0.2 - }, { "component": "Nicollet", "componentData": "Data Complete", - "componentID": 25584956, + "componentID": 27398757, "name": "Nicollet", "not_displayed": false, - "rank_data": "7", - "rank_data_group": "7", - "rank_data_loc": "2", - "rank_data_loc_group": "2", + "rank_data": "3", + "rank_data_group": "3", + "rank_data_loc": "1", + "rank_data_loc_group": "1", "rank_loc": 1, "rank_loc_group": 1, - "score_data": 0.22, - "score_data_group": 0.22, - "score_data_loc": 0.311, - "score_data_loc_group": 0.311, + "score_data": 0.369, + "score_data_group": 0.369, + "score_data_loc": 0.385, + "score_data_loc_group": 0.385, "score_loc": 0.402, "score_loc_group": 0.402 }, { "component": "Webster", "componentData": "Data Complete", - "componentID": 25584954, + "componentID": 27398758, "name": "Webster", "not_displayed": false, "rank_data": "6", "rank_data_group": "6", - "rank_data_loc": "3", - "rank_data_loc_group": "3", + "rank_data_loc": "2", + "rank_data_loc_group": "2", "rank_loc": 2, "rank_loc_group": 2, - "score_data": 0.268, - "score_data_group": 0.268, - "score_data_loc": 0.299, - "score_data_loc_group": 0.299, + "score_data": 0.287, + "score_data_group": 0.287, + "score_data_loc": 0.309, + "score_data_loc_group": 0.309, "score_loc": 0.331, "score_loc_group": 0.331 }, { - "component": "Glencoe", + "component": "Clarion", "componentData": "Data Complete", - "componentID": 25584960, - "name": "Glencoe", + "componentID": 27398759, + "name": "Clarion", "not_displayed": false, - "rank_data": "2", - "rank_data_group": "2", - "rank_data_loc": "4", - "rank_data_loc_group": "4", - "rank_loc": 5, - "rank_loc_group": 5, - "score_data": 0.451, - "score_data_group": 0.451, - "score_data_loc": 0.231, - "score_data_loc_group": 0.231, - "score_loc": 0.011, - "score_loc_group": 0.011 + "rank_data": "4", + "rank_data_group": "4", + "rank_data_loc": "3", + "rank_data_loc_group": "3", + "rank_loc": 3, + "rank_loc_group": 3, + "score_data": 0.367, + "score_data_group": 0.367, + "score_data_loc": 0.283, + "score_data_loc_group": 0.283, + "score_loc": 0.2, + "score_loc_group": 0.2 }, { "component": "Storden", "componentData": "Data Complete", - "componentID": 25584602, + "componentID": 27398742, "name": "Storden", "not_displayed": false, - "rank_data": "3", - "rank_data_group": "3", - "rank_data_loc": "5", - "rank_data_loc_group": "5", + "rank_data": "1", + "rank_data_group": "1", + "rank_data_loc": "4", + "rank_data_loc_group": "4", "rank_loc": 6, "rank_loc_group": 6, "score_data": 0.433, @@ -529,42 +510,61 @@ "score_loc_group": 0.011 }, { - "component": "Okoboji", - "componentData": "Missing Data", - "componentID": 25584952, - "name": "Okoboji", + "component": "Glencoe", + "componentData": "Data Complete", + "componentID": 27398765, + "name": "Glencoe", "not_displayed": false, - "rank_data": "4", - "rank_data_group": "4", - "rank_data_loc": "6", - "rank_data_loc_group": "6", - "rank_loc": 4, - "rank_loc_group": 4, - "score_data": 0.303, - "score_data_group": 0.303, - "score_data_loc": 0.171, - "score_data_loc_group": 0.171, - "score_loc": 0.04, - "score_loc_group": 0.04 + "rank_data": "2", + "rank_data_group": "2", + "rank_data_loc": "5", + "rank_data_loc_group": "5", + "rank_loc": 5, + "rank_loc_group": 5, + "score_data": 0.433, + "score_data_group": 0.433, + "score_data_loc": 0.222, + "score_data_loc_group": 0.222, + "score_loc": 0.011, + "score_loc_group": 0.011 }, { "component": "Canisteo", "componentData": "Data Complete", - "componentID": 25584962, + "componentID": 27398763, "name": "Canisteo", "not_displayed": false, "rank_data": "5", "rank_data_group": "5", - "rank_data_loc": "7", - "rank_data_loc_group": "7", + "rank_data_loc": "6", + "rank_data_loc_group": "6", "rank_loc": 7, "rank_loc_group": 7, - "score_data": 0.287, - "score_data_group": 0.287, - "score_data_loc": 0.147, - "score_data_loc_group": 0.147, + "score_data": 0.336, + "score_data_group": 0.336, + "score_data_loc": 0.171, + "score_data_loc_group": 0.171, "score_loc": 0.007, "score_loc_group": 0.007 + }, + { + "component": "Okoboji", + "componentData": "Missing Data", + "componentID": 27398760, + "name": "Okoboji", + "not_displayed": false, + "rank_data": "7", + "rank_data_group": "7", + "rank_data_loc": "7", + "rank_data_loc_group": "7", + "rank_loc": 4, + "rank_loc_group": 4, + "score_data": 0.253, + "score_data_group": 0.253, + "score_data_loc": 0.146, + "score_data_loc_group": 0.146, + "score_loc": 0.04, + "score_loc_group": 0.04 } ] } diff --git a/soil_id/tests/us/__snapshots__/test_us/test_soil_location[43.06450312,-119.4596489].json b/soil_id/tests/us/__snapshots__/test_us/test_soil_location[43.06450312,-119.4596489].json index 99acf53..2417112 100644 --- a/soil_id/tests/us/__snapshots__/test_us/test_soil_location[43.06450312,-119.4596489].json +++ b/soil_id/tests/us/__snapshots__/test_us/test_soil_location[43.06450312,-119.4596489].json @@ -64,7 +64,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25442849", + "componentID": "27631144", "componentKind": "Series", "componentPct": 50, "dataSource": "SSURGO", @@ -120,7 +120,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25442848", + "componentID": "27631143", "componentKind": "Series", "componentPct": 35, "dataSource": "SSURGO", @@ -176,7 +176,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25443068", + "componentID": "27631363", "componentKind": "Series", "componentPct": 85, "dataSource": "SSURGO", @@ -232,7 +232,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25442630", + "componentID": "27630925", "componentKind": "Series", "componentPct": 85, "dataSource": "SSURGO", @@ -288,7 +288,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25442616", + "componentID": "27630911", "componentKind": "Series", "componentPct": 85, "dataSource": "SSURGO", @@ -344,7 +344,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25443055", + "componentID": "27631350", "componentKind": "Series", "componentPct": 65, "dataSource": "SSURGO", @@ -400,7 +400,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25442636", + "componentID": "27630931", "componentKind": "Series", "componentPct": 50, "dataSource": "SSURGO", @@ -456,7 +456,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25442637", + "componentID": "27630932", "componentKind": "Series", "componentPct": 35, "dataSource": "SSURGO", @@ -512,7 +512,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25442629", + "componentID": "27630924", "componentKind": "Series", "componentPct": 4, "dataSource": "SSURGO", @@ -548,7 +548,7 @@ { "component": "Lonely", "componentData": "Data Complete", - "componentID": 25442849, + "componentID": 27631144, "name": "Lonely", "not_displayed": false, "rank_data": "6", @@ -557,8 +557,8 @@ "rank_data_loc_group": "1", "rank_loc": 1, "rank_loc_group": 1, - "score_data": 0.611, - "score_data_group": 0.611, + "score_data": 0.61, + "score_data_group": 0.61, "score_data_loc": 0.439, "score_data_loc_group": 0.439, "score_loc": 0.267, @@ -567,7 +567,7 @@ { "component": "Robson", "componentData": "Data Complete", - "componentID": 25442848, + "componentID": 27631143, "name": "Robson", "not_displayed": false, "rank_data": "2", @@ -578,15 +578,15 @@ "rank_loc_group": 2, "score_data": 0.69, "score_data_group": 0.69, - "score_data_loc": 0.439, - "score_data_loc_group": 0.439, + "score_data_loc": 0.438, + "score_data_loc_group": 0.438, "score_loc": 0.187, "score_loc_group": 0.187 }, { "component": "Actem", "componentData": "Data Complete", - "componentID": 25443068, + "componentID": 27631363, "name": "Actem", "not_displayed": false, "rank_data": "1", @@ -595,8 +595,8 @@ "rank_data_loc_group": "3", "rank_loc": 5, "rank_loc_group": 5, - "score_data": 0.695, - "score_data_group": 0.695, + "score_data": 0.694, + "score_data_group": 0.694, "score_data_loc": 0.404, "score_data_loc_group": 0.404, "score_loc": 0.113, @@ -605,7 +605,7 @@ { "component": "Rinconflat", "componentData": "Data Complete", - "componentID": 25442616, + "componentID": 27630911, "name": "Rinconflat", "not_displayed": false, "rank_data": "5", @@ -624,7 +624,7 @@ { "component": "Brace", "componentData": "Data Complete", - "componentID": 25442637, + "componentID": 27630932, "name": "Brace", "not_displayed": false, "rank_data": "3", @@ -633,8 +633,8 @@ "rank_data_loc_group": "5", "rank_loc": 8, "rank_loc_group": 8, - "score_data": 0.656, - "score_data_group": 0.656, + "score_data": 0.655, + "score_data_group": 0.655, "score_data_loc": 0.351, "score_data_loc_group": 0.351, "score_loc": 0.046, @@ -643,7 +643,7 @@ { "component": "Raz", "componentData": "Data Complete", - "componentID": 25442636, + "componentID": 27630931, "name": "Raz", "not_displayed": false, "rank_data": "4", @@ -662,7 +662,7 @@ { "component": "Reallis", "componentData": "Data Complete", - "componentID": 25442630, + "componentID": 27630925, "name": "Reallis", "not_displayed": false, "rank_data": "8", @@ -681,7 +681,7 @@ { "component": "Ausmus", "componentData": "Data Complete", - "componentID": 25442629, + "componentID": 27630924, "name": "Ausmus", "not_displayed": false, "rank_data": "7", @@ -692,15 +692,15 @@ "rank_loc_group": 9, "score_data": 0.602, "score_data_group": 0.602, - "score_data_loc": 0.304, - "score_data_loc_group": 0.304, + "score_data_loc": 0.303, + "score_data_loc_group": 0.303, "score_loc": 0.005, "score_loc_group": 0.005 }, { "component": "Lonegrave", "componentData": "Data Complete", - "componentID": 25443055, + "componentID": 27631350, "name": "Lonegrave", "not_displayed": false, "rank_data": "9", diff --git a/soil_id/tests/us/__snapshots__/test_us/test_soil_location[45.6508331,-121.5111084].json b/soil_id/tests/us/__snapshots__/test_us/test_soil_location[45.6508331,-121.5111084].json index 37653eb..8fc2ae6 100644 --- a/soil_id/tests/us/__snapshots__/test_us/test_soil_location[45.6508331,-121.5111084].json +++ b/soil_id/tests/us/__snapshots__/test_us/test_soil_location[45.6508331,-121.5111084].json @@ -47,7 +47,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25279329", + "componentID": "27032519", "componentKind": "Series", "componentPct": 85, "dataSource": "SSURGO", @@ -103,7 +103,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25279333", + "componentID": "27032515", "componentKind": "Series", "componentPct": 85, "dataSource": "SSURGO", @@ -159,7 +159,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25279330", + "componentID": "27032518", "componentKind": "Series", "componentPct": 85, "dataSource": "SSURGO", @@ -195,7 +195,7 @@ { "component": "Hood", "componentData": "Data Complete", - "componentID": 25279330, + "componentID": 27032518, "name": "Hood3", "not_displayed": false, "rank_data": "1", @@ -214,7 +214,7 @@ { "component": "Hood", "componentData": "Data Complete", - "componentID": 25279329, + "componentID": 27032519, "name": "Hood", "not_displayed": true, "rank_data": "Not Displayed", @@ -233,7 +233,7 @@ { "component": "Hood", "componentData": "Data Complete", - "componentID": 25279333, + "componentID": 27032515, "name": "Hood2", "not_displayed": true, "rank_data": "Not Displayed", diff --git a/soil_id/tests/us/__snapshots__/test_us/test_soil_location[45.88932423,-121.0347381].json b/soil_id/tests/us/__snapshots__/test_us/test_soil_location[45.88932423,-121.0347381].json index 0e395df..995ee95 100644 --- a/soil_id/tests/us/__snapshots__/test_us/test_soil_location[45.88932423,-121.0347381].json +++ b/soil_id/tests/us/__snapshots__/test_us/test_soil_location[45.88932423,-121.0347381].json @@ -47,7 +47,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25483307", + "componentID": "26581758", "componentKind": "Series", "componentPct": 95, "dataSource": "SSURGO", @@ -65,7 +65,7 @@ "seeURL": "https://casoilresource.lawr.ucdavis.edu/see/#gunn", "slope": 5.0, "taxsubgrp": "Ultic Haploxeralfs", - "textureInfill": "No" + "textureInfill": "Yes" }, "siteDescription": "Landscape--plateaus, hills\nLandform--structural benches, hillslopes, ridgetops\nSlope--0 to 65 percent\nParent material--loess mixed with colluvium and residuum derived from basalt\nMean annual precipitation--about 530 mm\nMean annual air temperature--about 9 degrees C\nDepth class--deep, very deep\nDrainage class--well drained\nSoil moisture regime--xeric\nSoil temperature regime--mesic\nSoil moisture subclass--typic" }, @@ -103,7 +103,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25483316", + "componentID": "26581766", "componentKind": "Series", "componentPct": 90, "dataSource": "SSURGO", @@ -139,7 +139,7 @@ { "component": "Gunn", "componentData": NaN, - "componentID": 25483316, + "componentID": 26581766, "name": "Gunn2", "not_displayed": false, "rank_data": "1", @@ -157,8 +157,8 @@ }, { "component": "Gunn", - "componentData": "Data Complete", - "componentID": 25483307, + "componentData": NaN, + "componentID": 26581758, "name": "Gunn", "not_displayed": true, "rank_data": "Not Displayed", diff --git a/soil_id/tests/us/__snapshots__/test_us/test_soil_location[47.213922,-69.28246582].json b/soil_id/tests/us/__snapshots__/test_us/test_soil_location[47.213922,-69.28246582].json index 29539b8..be13f50 100644 --- a/soil_id/tests/us/__snapshots__/test_us/test_soil_location[47.213922,-69.28246582].json +++ b/soil_id/tests/us/__snapshots__/test_us/test_soil_location[47.213922,-69.28246582].json @@ -1,18 +1,18 @@ { "list": { - "AWS_PIW90": 10.31, + "AWS_PIW90": 4.73, "Soil Data Value": [ [ - "rfv_class_30", - 1.3229420838347168 + "rfv_class_0", + 1.561554765729544 ], [ - "rfv_class_0", - 1.1105001941281816 + "rfv_class_30", + 1.543062149933733 ], [ "texture_30", - 0.9931611211632956 + 0.9908959471041263 ], [ "texture_0", @@ -41,13 +41,13 @@ "esd": { "ESD": { "ecoclassid": [ - "" + "F143XY704ME" ], "ecoclassname": [ - "" + "Shallow Organic Rock Pocket" ], "edit_url": [ - "" + "https://edit.sc.egov.usda.gov/catalogs/esd/143X/F143XY704ME" ] } }, @@ -55,7 +55,7 @@ "component": "Knob lock", "name": "Knob lock", "rank_loc": "1", - "score_loc": 0.325 + "score_loc": 0.372 }, "lab": {}, "munsell": {}, @@ -64,7 +64,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25208412", + "componentID": "26560861", "componentKind": "Series", "componentPct": 46, "dataSource": "SSURGO", @@ -97,13 +97,13 @@ "esd": { "ESD": { "ecoclassid": [ - "" + "F143XY501ME" ], "ecoclassname": [ - "" + "Loamy Slope" ], "edit_url": [ - "" + "https://edit.sc.egov.usda.gov/catalogs/esd/143X/F143XY501ME" ] } }, @@ -111,7 +111,7 @@ "component": "Chesuncook", "name": "Chesuncook", "rank_loc": "2", - "score_loc": 0.277 + "score_loc": 0.306 }, "lab": {}, "munsell": {}, @@ -120,9 +120,9 @@ "sand": {}, "site": { "siteData": { - "componentID": "25209552", + "componentID": "26560912", "componentKind": "Series", - "componentPct": 3, + "componentPct": 50, "dataSource": "SSURGO", "distance": 19.0, "irrcapcl": "None", @@ -136,7 +136,7 @@ "rfvInfill": "No", "sdeURL": "https://casoilresource.lawr.ucdavis.edu/sde/?series=chesuncook", "seeURL": "https://casoilresource.lawr.ucdavis.edu/see/#chesuncook", - "slope": 12.0, + "slope": 20.0, "taxsubgrp": "Aquic Haplorthods", "textureInfill": "No" }, @@ -153,13 +153,13 @@ "esd": { "ESD": { "ecoclassid": [ - "" + "F143XY704ME" ], "ecoclassname": [ - "" + "Shallow Organic Rock Pocket" ], "edit_url": [ - "" + "https://edit.sc.egov.usda.gov/catalogs/esd/143X/F143XY704ME" ] } }, @@ -167,7 +167,7 @@ "component": "Elliottsville", "name": "Elliottsville", "rank_loc": "3", - "score_loc": 0.211 + "score_loc": 0.25 }, "lab": {}, "munsell": {}, @@ -176,7 +176,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25209557", + "componentID": "26560911", "componentKind": "Series", "componentPct": 35, "dataSource": "SSURGO", @@ -209,13 +209,13 @@ "esd": { "ESD": { "ecoclassid": [ - "" + "F143XY702ME" ], "ecoclassname": [ - "" + "Shallow And Moderately Deep Till" ], "edit_url": [ - "" + "https://edit.sc.egov.usda.gov/catalogs/esd/143X/F143XY702ME" ] } }, @@ -223,7 +223,7 @@ "component": "Monson", "name": "Monson", "rank_loc": "4", - "score_loc": 0.092 + "score_loc": 0.071 }, "lab": {}, "munsell": {}, @@ -232,23 +232,23 @@ "sand": {}, "site": { "siteData": { - "componentID": "25209554", + "componentID": "26560914", "componentKind": "Series", - "componentPct": 6, + "componentPct": 40, "dataSource": "SSURGO", - "distance": 19.0, + "distance": 192.0, "irrcapcl": "None", "irrcapscl": "None", "irrcapunit": "None", - "mapunitID": "2549860", - "minCompDistance": 19.0, + "mapunitID": "2549867", + "minCompDistance": 192.0, "nirrcapcl": "6", "nirrcapscl": "s", "nirrcapunit": "None", "rfvInfill": "No", "sdeURL": "https://casoilresource.lawr.ucdavis.edu/sde/?series=monson", "seeURL": "https://casoilresource.lawr.ucdavis.edu/see/#monson", - "slope": 25.0, + "slope": 40.0, "taxsubgrp": "Lithic Haplorthods", "textureInfill": "No" }, @@ -265,181 +265,13 @@ "esd": { "ESD": { "ecoclassid": [ - "" - ], - "ecoclassname": [ - "" - ], - "edit_url": [ - "" - ] - } - }, - "id": { - "component": "Abram", - "name": "Abram", - "rank_loc": "5", - "score_loc": 0.036 - }, - "lab": {}, - "munsell": {}, - "ph": {}, - "rock_fragments": {}, - "sand": {}, - "site": { - "siteData": { - "componentID": "25209553", - "componentKind": "Series", - "componentPct": 4, - "dataSource": "SSURGO", - "distance": 19.0, - "irrcapcl": "None", - "irrcapscl": "None", - "irrcapunit": "None", - "mapunitID": "2549860", - "minCompDistance": 19.0, - "nirrcapcl": "7", - "nirrcapscl": "s", - "nirrcapunit": "None", - "rfvInfill": "No", - "sdeURL": "https://casoilresource.lawr.ucdavis.edu/sde/?series=abram", - "seeURL": "https://casoilresource.lawr.ucdavis.edu/see/#abram", - "slope": 30.0, - "taxsubgrp": "Lithic Haplorthods", - "textureInfill": "No" - }, - "siteDescription": "The Abram series consists of very shallow, excessively drained soils formed in a thin mantle of glacial till on ridges and mountains. Permeability is moderately rapid. Slope ranges from 0 to 80 percent. Mean annual temperature is about 7 degrees C, and mean annual precipitation is about 1118 mm at the type location." - }, - "texture": {}, - "top_depth": {} - }, - { - "bottom_depth": {}, - "cec": {}, - "clay": {}, - "ec": {}, - "esd": { - "ESD": { - "ecoclassid": [ - "F143XY702ME" - ], - "ecoclassname": [ - "Shallow And Moderately Deep Till" - ], - "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/143X/F143XY702ME" - ] - } - }, - "id": { - "component": "Hogback", - "name": "Hogback", - "rank_loc": "6", - "score_loc": 0.03 - }, - "lab": {}, - "munsell": {}, - "ph": {}, - "rock_fragments": {}, - "sand": {}, - "site": { - "siteData": { - "componentID": "25208410", - "componentKind": "Series", - "componentPct": 5, - "dataSource": "SSURGO", - "distance": 0.0, - "irrcapcl": "None", - "irrcapscl": "None", - "irrcapunit": "None", - "mapunitID": "2549870", - "minCompDistance": 0.0, - "nirrcapcl": "6", - "nirrcapscl": "s", - "nirrcapunit": "None", - "rfvInfill": "No", - "sdeURL": "https://casoilresource.lawr.ucdavis.edu/sde/?series=hogback", - "seeURL": "https://casoilresource.lawr.ucdavis.edu/see/#hogback", - "slope": 50.0, - "taxsubgrp": "Lithic Haplohumods", - "textureInfill": "No" - }, - "siteDescription": "The Hogback series consists of shallow, well drained soils on glaciated uplands. They formed in loamy till. Estimated saturated hydraulic conductivity is moderately high to high throughout the mineral soil. Slope ranges from 3 to 70 percent. Mean annual precipitation is about 50 inches, and mean annual temperature is about 43 degrees F." - }, - "texture": {}, - "top_depth": {} - }, - { - "bottom_depth": {}, - "cec": {}, - "clay": {}, - "ec": {}, - "esd": { - "ESD": { - "ecoclassid": [ - "F143XY702ME" - ], - "ecoclassname": [ - "Shallow And Moderately Deep Till" - ], - "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/143X/F143XY702ME" - ] - } - }, - "id": { - "component": "Rawsonville", - "name": "Rawsonville", - "rank_loc": "7", - "score_loc": 0.03 - }, - "lab": {}, - "munsell": {}, - "ph": {}, - "rock_fragments": {}, - "sand": {}, - "site": { - "siteData": { - "componentID": "25208409", - "componentKind": "Series", - "componentPct": 5, - "dataSource": "SSURGO", - "distance": 0.0, - "irrcapcl": "None", - "irrcapscl": "None", - "irrcapunit": "None", - "mapunitID": "2549870", - "minCompDistance": 0.0, - "nirrcapcl": "4", - "nirrcapscl": "s", - "nirrcapunit": "None", - "rfvInfill": "No", - "sdeURL": "https://casoilresource.lawr.ucdavis.edu/sde/?series=rawsonville", - "seeURL": "https://casoilresource.lawr.ucdavis.edu/see/#rawsonville", - "slope": 20.0, - "taxsubgrp": "Typic Haplohumods", - "textureInfill": "No" - }, - "siteDescription": "The Rawsonville series consists of moderately deep, well drained soils on glaciated uplands. They formed in loamy till. Estimated saturated hydraulic conductivity is moderately high or high in the mineral soil. Slope ranges from 3 to 70 percent. Mean annual precipitation is about 1,270 mm, and mean annual temperature is about 6 degrees C." - }, - "texture": {}, - "top_depth": {} - }, - { - "bottom_depth": {}, - "cec": {}, - "clay": {}, - "ec": {}, - "esd": { - "ESD": { - "ecoclassid": [ - "" + "F143XY501ME" ], "ecoclassname": [ - "" + "Loamy Slope" ], "edit_url": [ - "" + "https://edit.sc.egov.usda.gov/catalogs/esd/143X/F143XY501ME" ] } }, @@ -447,7 +279,7 @@ "component": "Knob lock", "name": "Knob lock2", "rank_loc": "Not Displayed", - "score_loc": 0.325 + "score_loc": 0.372 }, "lab": {}, "munsell": {}, @@ -456,63 +288,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25209556", - "componentKind": "Series", - "componentPct": 2, - "dataSource": "SSURGO", - "distance": 19.0, - "irrcapcl": "None", - "irrcapscl": "None", - "irrcapunit": "None", - "mapunitID": "2549860", - "minCompDistance": 0.0, - "nirrcapcl": "7", - "nirrcapscl": "s", - "nirrcapunit": "None", - "rfvInfill": "No", - "sdeURL": "https://casoilresource.lawr.ucdavis.edu/sde/?series=knob_lock", - "seeURL": "https://casoilresource.lawr.ucdavis.edu/see/#knob_lock", - "slope": 30.0, - "taxsubgrp": "Lithic Udifolists", - "textureInfill": "No" - }, - "siteDescription": "The Knob Lock series consists of very shallow and shallow, well drained through excessively drained organic soils on mountains and hills. They formed in thin organic deposits underlain in most places by a very thin mineral horizon over bedrock. Saturated hydraulic conductivity is moderately high through very high throughout the soil. Slope ranges from 3 through 80 percent. Mean annual precipitation is about 1092 mm and mean annual temperature is about 5 degrees C." - }, - "texture": {}, - "top_depth": {} - }, - { - "bottom_depth": {}, - "cec": {}, - "clay": {}, - "ec": {}, - "esd": { - "ESD": { - "ecoclassid": [ - "F143XY704ME" - ], - "ecoclassname": [ - "Shallow Organic Rock Pocket" - ], - "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/143X/F143XY704ME" - ] - } - }, - "id": { - "component": "Knob lock", - "name": "Knob lock3", - "rank_loc": "Not Displayed", - "score_loc": 0.325 - }, - "lab": {}, - "munsell": {}, - "ph": {}, - "rock_fragments": {}, - "sand": {}, - "site": { - "siteData": { - "componentID": "25209692", + "componentID": "26560913", "componentKind": "Series", "componentPct": 25, "dataSource": "SSURGO", @@ -545,69 +321,13 @@ "esd": { "ESD": { "ecoclassid": [ - "" - ], - "ecoclassname": [ - "" - ], - "edit_url": [ - "" - ] - } - }, - "id": { - "component": "Chesuncook", - "name": "Chesuncook2", - "rank_loc": "Not Displayed", - "score_loc": 0.277 - }, - "lab": {}, - "munsell": {}, - "ph": {}, - "rock_fragments": {}, - "sand": {}, - "site": { - "siteData": { - "componentID": "25209555", - "componentKind": "Series", - "componentPct": 50, - "dataSource": "SSURGO", - "distance": 19.0, - "irrcapcl": "None", - "irrcapscl": "None", - "irrcapunit": "None", - "mapunitID": "2549860", - "minCompDistance": 19.0, - "nirrcapcl": "6", - "nirrcapscl": "s", - "nirrcapunit": "None", - "rfvInfill": "No", - "sdeURL": "https://casoilresource.lawr.ucdavis.edu/sde/?series=chesuncook", - "seeURL": "https://casoilresource.lawr.ucdavis.edu/see/#chesuncook", - "slope": 20.0, - "taxsubgrp": "Aquic Haplorthods", - "textureInfill": "No" - }, - "siteDescription": "The Chesuncook series consists of very deep, moderately well drained soils on till plains, hills, ridges, and mountains. These soils formed in dense glacial till. Saturated hydraulic conductivity is moderately high or high in the solum, and low to moderately high in the dense substratum. Slope ranges from 3 to 45 percent. Mean annual temperature is about 4 degrees C, and mean annual precipitation is about 1092 mm at the type location." - }, - "texture": {}, - "top_depth": {} - }, - { - "bottom_depth": {}, - "cec": {}, - "clay": {}, - "ec": {}, - "esd": { - "ESD": { - "ecoclassid": [ - "F143XY501ME" + "F143XY702ME" ], "ecoclassname": [ - "Loamy Slope" + "Shallow And Moderately Deep Till" ], "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/143X/F143XY501ME" + "https://edit.sc.egov.usda.gov/catalogs/esd/143X/F143XY702ME" ] } }, @@ -615,7 +335,7 @@ "component": "Elliottsville", "name": "Elliottsville2", "rank_loc": "Not Displayed", - "score_loc": 0.211 + "score_loc": 0.25 }, "lab": {}, "munsell": {}, @@ -624,7 +344,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "25209694", + "componentID": "26560915", "componentKind": "Series", "componentPct": 20, "dataSource": "SSURGO", @@ -648,118 +368,6 @@ }, "texture": {}, "top_depth": {} - }, - { - "bottom_depth": {}, - "cec": {}, - "clay": {}, - "ec": {}, - "esd": { - "ESD": { - "ecoclassid": [ - "F143XY501ME" - ], - "ecoclassname": [ - "Loamy Slope" - ], - "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/143X/F143XY501ME" - ] - } - }, - "id": { - "component": "Monson", - "name": "Monson2", - "rank_loc": "Not Displayed", - "score_loc": 0.092 - }, - "lab": {}, - "munsell": {}, - "ph": {}, - "rock_fragments": {}, - "sand": {}, - "site": { - "siteData": { - "componentID": "25209693", - "componentKind": "Series", - "componentPct": 40, - "dataSource": "SSURGO", - "distance": 192.0, - "irrcapcl": "None", - "irrcapscl": "None", - "irrcapunit": "None", - "mapunitID": "2549867", - "minCompDistance": 19.0, - "nirrcapcl": "6", - "nirrcapscl": "s", - "nirrcapunit": "None", - "rfvInfill": "No", - "sdeURL": "https://casoilresource.lawr.ucdavis.edu/sde/?series=monson", - "seeURL": "https://casoilresource.lawr.ucdavis.edu/see/#monson", - "slope": 40.0, - "taxsubgrp": "Lithic Haplorthods", - "textureInfill": "No" - }, - "siteDescription": "The Monson series consists of shallow, somewhat excessively drained soils formed in glacial till on knolls of till plains, and on hills, ridges and mountains. Estimated saturated hydraulic conductivity is moderate or high. Slope ranges from 3 to 60 percent. Mean annual temperature is about 3 degrees C, and mean annual precipitation is about 965 mm at the type location." - }, - "texture": {}, - "top_depth": {} - }, - { - "bottom_depth": {}, - "cec": {}, - "clay": {}, - "ec": {}, - "esd": { - "ESD": { - "ecoclassid": [ - "F143XY704ME" - ], - "ecoclassname": [ - "Shallow Organic Rock Pocket" - ], - "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/143X/F143XY704ME" - ] - } - }, - "id": { - "component": "Abram", - "name": "Abram2", - "rank_loc": "Not Displayed", - "score_loc": 0.036 - }, - "lab": {}, - "munsell": {}, - "ph": {}, - "rock_fragments": {}, - "sand": {}, - "site": { - "siteData": { - "componentID": "25209690", - "componentKind": "Series", - "componentPct": 10, - "dataSource": "SSURGO", - "distance": 192.0, - "irrcapcl": "None", - "irrcapscl": "None", - "irrcapunit": "None", - "mapunitID": "2549867", - "minCompDistance": 19.0, - "nirrcapcl": "7", - "nirrcapscl": "s", - "nirrcapunit": "None", - "rfvInfill": "No", - "sdeURL": "https://casoilresource.lawr.ucdavis.edu/sde/?series=abram", - "seeURL": "https://casoilresource.lawr.ucdavis.edu/see/#abram", - "slope": 45.0, - "taxsubgrp": "Lithic Haplorthods", - "textureInfill": "No" - }, - "siteDescription": "The Abram series consists of very shallow, excessively drained soils formed in a thin mantle of glacial till on ridges and mountains. Permeability is moderately rapid. Slope ranges from 0 to 80 percent. Mean annual temperature is about 7 degrees C, and mean annual precipitation is about 1118 mm at the type location." - }, - "texture": {}, - "top_depth": {} } ] }, @@ -772,7 +380,7 @@ { "component": "Chesuncook", "componentData": "Data Complete", - "componentID": 25209552, + "componentID": 26560912, "name": "Chesuncook", "not_displayed": false, "rank_data": "1", @@ -781,240 +389,107 @@ "rank_data_loc_group": "1", "rank_loc": "2", "rank_loc_group": "2", - "score_data": 0.729, - "score_data_group": 0.729, - "score_data_loc": 0.503, - "score_data_loc_group": 0.503, - "score_loc": 0.277, - "score_loc_group": 0.277 + "score_data": 0.737, + "score_data_group": 0.737, + "score_data_loc": 0.521, + "score_data_loc_group": 0.521, + "score_loc": 0.306, + "score_loc_group": 0.306 }, { - "component": "Knob lock", + "component": "Elliottsville", "componentData": "Data Complete", - "componentID": 25209556, - "name": "Knob lock2", + "componentID": 26560911, + "name": "Elliottsville", "not_displayed": false, - "rank_data": "3", - "rank_data_group": "3", + "rank_data": "2", + "rank_data_group": "2", "rank_data_loc": "2", "rank_data_loc_group": "2", - "rank_loc": "Not Displayed", - "rank_loc_group": "1", - "score_data": 0.667, - "score_data_group": 0.667, - "score_data_loc": 0.496, - "score_data_loc_group": 0.496, - "score_loc": 0.325, - "score_loc_group": 0.325 + "rank_loc": "3", + "rank_loc_group": "3", + "score_data": 0.697, + "score_data_group": 0.697, + "score_data_loc": 0.474, + "score_data_loc_group": 0.474, + "score_loc": 0.25, + "score_loc_group": 0.25 }, { - "component": "Elliottsville", + "component": "Knob lock", "componentData": "Data Complete", - "componentID": 25209557, - "name": "Elliottsville", + "componentID": 26560913, + "name": "Knob lock2", "not_displayed": false, "rank_data": "4", "rank_data_group": "4", "rank_data_loc": "3", "rank_data_loc_group": "3", - "rank_loc": "3", - "rank_loc_group": "3", - "score_data": 0.648, - "score_data_group": 0.648, - "score_data_loc": 0.43, - "score_data_loc_group": 0.43, - "score_loc": 0.211, - "score_loc_group": 0.211 + "rank_loc": "Not Displayed", + "rank_loc_group": "1", + "score_data": 0.475, + "score_data_group": 0.475, + "score_data_loc": 0.424, + "score_data_loc_group": 0.424, + "score_loc": 0.372, + "score_loc_group": 0.372 }, { "component": "Monson", "componentData": "Data Complete", - "componentID": 25209554, + "componentID": 26560914, "name": "Monson", "not_displayed": false, - "rank_data": "5", - "rank_data_group": "5", + "rank_data": "3", + "rank_data_group": "3", "rank_data_loc": "4", "rank_data_loc_group": "4", "rank_loc": "4", "rank_loc_group": "4", - "score_data": 0.616, - "score_data_group": 0.616, - "score_data_loc": 0.354, - "score_data_loc_group": 0.354, - "score_loc": 0.092, - "score_loc_group": 0.092 - }, - { - "component": "Abram", - "componentData": "Data Complete", - "componentID": 25209553, - "name": "Abram", - "not_displayed": false, - "rank_data": "2", - "rank_data_group": "2", - "rank_data_loc": "5", - "rank_data_loc_group": "5", - "rank_loc": "5", - "rank_loc_group": "5", - "score_data": 0.671, - "score_data_group": 0.671, - "score_data_loc": 0.353, - "score_data_loc_group": 0.353, - "score_loc": 0.036, - "score_loc_group": 0.036 + "score_data": 0.608, + "score_data_group": 0.608, + "score_data_loc": 0.34, + "score_data_loc_group": 0.34, + "score_loc": 0.071, + "score_loc_group": 0.071 }, { - "component": "Rawsonville", - "componentData": "Data Complete", - "componentID": 25208409, - "name": "Rawsonville", - "not_displayed": false, - "rank_data": "6", - "rank_data_group": "6", - "rank_data_loc": "6", - "rank_data_loc_group": "6", - "rank_loc": "7", - "rank_loc_group": "7", - "score_data": 0.615, - "score_data_group": 0.615, - "score_data_loc": 0.322, - "score_data_loc_group": 0.322, - "score_loc": 0.03, - "score_loc_group": 0.03 - }, - { - "component": "Hogback", - "componentData": "Data Complete", - "componentID": 25208410, - "name": "Hogback", - "not_displayed": false, - "rank_data": "7", - "rank_data_group": "7", - "rank_data_loc": "7", - "rank_data_loc_group": "7", - "rank_loc": "6", - "rank_loc_group": "6", - "score_data": 0.484, - "score_data_group": 0.484, - "score_data_loc": 0.257, - "score_data_loc_group": 0.257, - "score_loc": 0.03, - "score_loc_group": 0.03 - }, - { - "component": "Chesuncook", + "component": "Elliottsville", "componentData": "Data Complete", - "componentID": 25209555, - "name": "Chesuncook2", + "componentID": 26560915, + "name": "Elliottsville2", "not_displayed": true, "rank_data": "Not Displayed", - "rank_data_group": "1", + "rank_data_group": "2", "rank_data_loc": "Not Displayed", - "rank_data_loc_group": "1", + "rank_data_loc_group": "2", "rank_loc": "Not Displayed", - "rank_loc_group": "2", - "score_data": 0.715, - "score_data_group": 0.729, - "score_data_loc": 0.496, - "score_data_loc_group": 0.503, - "score_loc": 0.277, - "score_loc_group": 0.277 + "rank_loc_group": "3", + "score_data": 0.536, + "score_data_group": 0.697, + "score_data_loc": 0.393, + "score_data_loc_group": 0.474, + "score_loc": 0.25, + "score_loc_group": 0.25 }, { "component": "Knob lock", "componentData": "Data Complete", - "componentID": 25208412, + "componentID": 26560861, "name": "Knob lock", "not_displayed": true, "rank_data": "Not Displayed", - "rank_data_group": "3", - "rank_data_loc": "Not Displayed", - "rank_data_loc_group": "2", - "rank_loc": "1", - "rank_loc_group": "1", - "score_data": 0.558, - "score_data_group": 0.667, - "score_data_loc": 0.441, - "score_data_loc_group": 0.496, - "score_loc": 0.325, - "score_loc_group": 0.325 - }, - { - "component": "Knob lock", - "componentData": "Data Complete", - "componentID": 25209692, - "name": "Knob lock3", - "not_displayed": true, - "rank_data": "Not Displayed", - "rank_data_group": "3", - "rank_data_loc": "Not Displayed", - "rank_data_loc_group": "2", - "rank_loc": "Not Displayed", - "rank_loc_group": "1", - "score_data": 0.539, - "score_data_group": 0.667, - "score_data_loc": 0.432, - "score_data_loc_group": 0.496, - "score_loc": 0.325, - "score_loc_group": 0.325 - }, - { - "component": "Elliottsville", - "componentData": "Data Complete", - "componentID": 25209694, - "name": "Elliottsville2", - "not_displayed": true, - "rank_data": "Not Displayed", "rank_data_group": "4", "rank_data_loc": "Not Displayed", "rank_data_loc_group": "3", - "rank_loc": "Not Displayed", - "rank_loc_group": "3", - "score_data": 0.546, - "score_data_group": 0.648, - "score_data_loc": 0.379, - "score_data_loc_group": 0.43, - "score_loc": 0.211, - "score_loc_group": 0.211 - }, - { - "component": "Monson", - "componentData": "Data Complete", - "componentID": 25209693, - "name": "Monson2", - "not_displayed": true, - "rank_data": "Not Displayed", - "rank_data_group": "5", - "rank_data_loc": "Not Displayed", - "rank_data_loc_group": "4", - "rank_loc": "Not Displayed", - "rank_loc_group": "4", - "score_data": 0.598, - "score_data_group": 0.616, - "score_data_loc": 0.345, - "score_data_loc_group": 0.354, - "score_loc": 0.092, - "score_loc_group": 0.092 - }, - { - "component": "Abram", - "componentData": "Data Complete", - "componentID": 25209690, - "name": "Abram2", - "not_displayed": true, - "rank_data": "Not Displayed", - "rank_data_group": "2", - "rank_data_loc": "Not Displayed", - "rank_data_loc_group": "5", - "rank_loc": "Not Displayed", - "rank_loc_group": "5", - "score_data": 0.469, - "score_data_group": 0.671, - "score_data_loc": 0.252, - "score_data_loc_group": 0.353, - "score_loc": 0.036, - "score_loc_group": 0.036 + "rank_loc": "1", + "rank_loc_group": "1", + "score_data": 0.406, + "score_data_group": 0.475, + "score_data_loc": 0.389, + "score_data_loc_group": 0.424, + "score_loc": 0.372, + "score_loc_group": 0.372 } ] } diff --git a/soil_id/tests/us/__snapshots__/test_us/test_soil_location[48.6956,-121.8166].json b/soil_id/tests/us/__snapshots__/test_us/test_soil_location[48.6956,-121.8166].json index a40863b..5cb63cf 100644 --- a/soil_id/tests/us/__snapshots__/test_us/test_soil_location[48.6956,-121.8166].json +++ b/soil_id/tests/us/__snapshots__/test_us/test_soil_location[48.6956,-121.8166].json @@ -1,22 +1,22 @@ { "list": { - "AWS_PIW90": 14.78, + "AWS_PIW90": 17.67, "Soil Data Value": [ - [ - "rfv_class_30", - 1.1951984103352893 - ], [ "rfv_class_0", - 0.9036969260198578 + 0.6201391749943385 ], [ - "texture_30", - 0.7502956564979291 + "rfv_class_30", + 0.6201391749943385 ], [ "texture_0", 0.0 + ], + [ + "texture_30", + 0.0 ] ], "metadata": { @@ -40,16 +40,22 @@ "ec": {}, "esd": { "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" + "ecoclassid": [ + "F003XN924WA" + ], + "ecoclassname": [ + "Low Cryic/Udic West Coniferous " + ], + "edit_url": [ + "https://edit.sc.egov.usda.gov/catalogs/esd/003X/F003XN924WA" + ] } }, "id": { - "component": "Nimue", - "name": "Nimue", + "component": "Typic vitricryands", + "name": "Typic vitricryands", "rank_loc": "1", - "score_loc": 0.131 + "score_loc": 0.486 }, "lab": {}, "munsell": {}, @@ -58,15 +64,15 @@ "sand": {}, "site": { "siteData": { - "componentID": "14268930", - "componentKind": "Series", - "componentPct": 7, - "dataSource": "STATSGO", + "componentID": "26612815", + "componentKind": "Taxon above family", + "componentPct": 80, + "dataSource": "SSURGO", "distance": 0.0, "irrcapcl": "None", "irrcapscl": "None", "irrcapunit": "None", - "mapunitID": "675975", + "mapunitID": "3418436", "minCompDistance": 0.0, "nirrcapcl": "7", "nirrcapscl": "e", @@ -74,8 +80,8 @@ "rfvInfill": "No", "sdeURL": "", "seeURL": "", - "slope": 45.0, - "taxsubgrp": "Andic Haplocryods", + "slope": 35.0, + "taxsubgrp": "Typic Vitricryands", "textureInfill": "No" }, "siteDescription": "" @@ -90,16 +96,22 @@ "ec": {}, "esd": { "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" + "ecoclassid": [ + "R003XN613WA" + ], + "ecoclassname": [ + "Low Mountain Unforested Wetlands" + ], + "edit_url": [ + "https://edit.sc.egov.usda.gov/catalogs/esd/003X/R003XN613WA" + ] } }, "id": { - "component": "Andic cryumbrepts", - "name": "Andic cryumbrepts", + "component": "Vitrandic dystrocryepts", + "name": "Vitrandic dystrocryepts", "rank_loc": "2", - "score_loc": 0.086 + "score_loc": 0.36 }, "lab": {}, "munsell": {}, @@ -108,24 +120,24 @@ "sand": {}, "site": { "siteData": { - "componentID": "14269504", + "componentID": "26612824", "componentKind": "Taxon above family", - "componentPct": 20, - "dataSource": "STATSGO", - "distance": 994.2109898924772, + "componentPct": 70, + "dataSource": "SSURGO", + "distance": 21.0, "irrcapcl": "None", "irrcapscl": "None", "irrcapunit": "None", - "mapunitID": "676031", - "minCompDistance": 994.2109898924772, - "nirrcapcl": "7", - "nirrcapscl": "s", + "mapunitID": "3418433", + "minCompDistance": 21.0, + "nirrcapcl": "6", + "nirrcapscl": "c", "nirrcapunit": "None", "rfvInfill": "No", "sdeURL": "", "seeURL": "", - "slope": 53.0, - "taxsubgrp": "None", + "slope": 8.0, + "taxsubgrp": "Vitrandic Dystrocryepts", "textureInfill": "No" }, "siteDescription": "" @@ -140,16 +152,22 @@ "ec": {}, "esd": { "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" + "ecoclassid": [ + "F003XA305WA" + ], + "ecoclassname": [ + "Low Glacial Trough Valleys Moist Forest Western Hemlock" + ], + "edit_url": [ + "https://edit.sc.egov.usda.gov/catalogs/esd/003X/F003XA305WA" + ] } }, "id": { - "component": "Cryorthods", - "name": "Cryorthods", + "component": "Histic cryaquepts", + "name": "Histic cryaquepts", "rank_loc": "3", - "score_loc": 0.065 + "score_loc": 0.154 }, "lab": {}, "munsell": {}, @@ -158,624 +176,24 @@ "sand": {}, "site": { "siteData": { - "componentID": "14269505", + "componentID": "26612823", "componentKind": "Taxon above family", - "componentPct": 15, - "dataSource": "STATSGO", - "distance": 994.2109898924772, - "irrcapcl": "None", - "irrcapscl": "None", - "irrcapunit": "None", - "mapunitID": "676031", - "minCompDistance": 994.2109898924772, - "nirrcapcl": "7", - "nirrcapscl": "e", - "nirrcapunit": "None", - "rfvInfill": "No", - "sdeURL": "", - "seeURL": "", - "slope": 60.0, - "taxsubgrp": "None", - "textureInfill": "No" - }, - "siteDescription": "" - }, - "texture": {}, - "top_depth": {} - }, - { - "bottom_depth": {}, - "cec": {}, - "clay": {}, - "ec": {}, - "esd": { - "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" - } - }, - "id": { - "component": "Getchell", - "name": "Getchell", - "rank_loc": "4", - "score_loc": 0.062 - }, - "lab": {}, - "munsell": {}, - "ph": {}, - "rock_fragments": {}, - "sand": {}, - "site": { - "siteData": { - "componentID": "14268944", - "componentKind": "Series", - "componentPct": 5, - "dataSource": "STATSGO", - "distance": 0.0, + "componentPct": 30, + "dataSource": "SSURGO", + "distance": 21.0, "irrcapcl": "None", "irrcapscl": "None", "irrcapunit": "None", - "mapunitID": "675975", - "minCompDistance": 0.0, + "mapunitID": "3418433", + "minCompDistance": 21.0, "nirrcapcl": "6", - "nirrcapscl": "e", - "nirrcapunit": "None", - "rfvInfill": "No", - "sdeURL": "", - "seeURL": "", - "slope": 17.0, - "taxsubgrp": "Aquic Haplocryands", - "textureInfill": "Yes" - }, - "siteDescription": "" - }, - "texture": {}, - "top_depth": {} - }, - { - "bottom_depth": {}, - "cec": {}, - "clay": {}, - "ec": {}, - "esd": { - "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" - } - }, - "id": { - "component": "Cryumbrepts", - "name": "Cryumbrepts", - "rank_loc": "5", - "score_loc": 0.043 - }, - "lab": {}, - "munsell": {}, - "ph": {}, - "rock_fragments": {}, - "sand": {}, - "site": { - "siteData": { - "componentID": "14269506", - "componentKind": "Taxon above family", - "componentPct": 10, - "dataSource": "STATSGO", - "distance": 994.2109898924772, - "irrcapcl": "None", - "irrcapscl": "None", - "irrcapunit": "None", - "mapunitID": "676031", - "minCompDistance": 994.2109898924772, - "nirrcapcl": "7", - "nirrcapscl": "s", - "nirrcapunit": "None", - "rfvInfill": "No", - "sdeURL": "", - "seeURL": "", - "slope": 60.0, - "taxsubgrp": "None", - "textureInfill": "Yes" - }, - "siteDescription": "" - }, - "texture": {}, - "top_depth": {} - }, - { - "bottom_depth": {}, - "cec": {}, - "clay": {}, - "ec": {}, - "esd": { - "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" - } - }, - "id": { - "component": "Diobsud", - "name": "Diobsud", - "rank_loc": "6", - "score_loc": 0.023 - }, - "lab": {}, - "munsell": {}, - "ph": {}, - "rock_fragments": {}, - "sand": {}, - "site": { - "siteData": { - "componentID": "14268932", - "componentKind": "Series", - "componentPct": 4, - "dataSource": "STATSGO", - "distance": 0.0, - "irrcapcl": "None", - "irrcapscl": "None", - "irrcapunit": "None", - "mapunitID": "675975", - "minCompDistance": 0.0, - "nirrcapcl": "6", - "nirrcapscl": "e", - "nirrcapunit": "None", - "rfvInfill": "No", - "sdeURL": "", - "seeURL": "", - "slope": 48.0, - "taxsubgrp": "Andic Humicryods", - "textureInfill": "No" - }, - "siteDescription": "" - }, - "texture": {}, - "top_depth": {} - }, - { - "bottom_depth": {}, - "cec": {}, - "clay": {}, - "ec": {}, - "esd": { - "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" - } - }, - "id": { - "component": "Cryaquepts", - "name": "Cryaquepts", - "rank_loc": "7", - "score_loc": 0.022 - }, - "lab": {}, - "munsell": {}, - "ph": {}, - "rock_fragments": {}, - "sand": {}, - "site": { - "siteData": { - "componentID": "14269507", - "componentKind": "Taxon above family", - "componentPct": 5, - "dataSource": "STATSGO", - "distance": 994.2109898924772, - "irrcapcl": "None", - "irrcapscl": "None", - "irrcapunit": "None", - "mapunitID": "676031", - "minCompDistance": 994.2109898924772, - "nirrcapcl": "7", "nirrcapscl": "w", "nirrcapunit": "None", "rfvInfill": "No", "sdeURL": "", "seeURL": "", - "slope": 2.0, - "taxsubgrp": "None", - "textureInfill": "No" - }, - "siteDescription": "" - }, - "texture": {}, - "top_depth": {} - }, - { - "bottom_depth": {}, - "cec": {}, - "clay": {}, - "ec": {}, - "esd": { - "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" - } - }, - "id": { - "component": "Cryohumods", - "name": "Cryohumods", - "rank_loc": "8", - "score_loc": 0.022 - }, - "lab": {}, - "munsell": {}, - "ph": {}, - "rock_fragments": {}, - "sand": {}, - "site": { - "siteData": { - "componentID": "14269509", - "componentKind": "Taxon above family", - "componentPct": 5, - "dataSource": "STATSGO", - "distance": 994.2109898924772, - "irrcapcl": "None", - "irrcapscl": "None", - "irrcapunit": "None", - "mapunitID": "676031", - "minCompDistance": 994.2109898924772, - "nirrcapcl": "7", - "nirrcapscl": "s", - "nirrcapunit": "None", - "rfvInfill": "No", - "sdeURL": "", - "seeURL": "", - "slope": 60.0, - "taxsubgrp": "None", - "textureInfill": "No" - }, - "siteDescription": "" - }, - "texture": {}, - "top_depth": {} - }, - { - "bottom_depth": {}, - "cec": {}, - "clay": {}, - "ec": {}, - "esd": { - "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" - } - }, - "id": { - "component": "Haplocryods", - "name": "Haplocryods", - "rank_loc": "9", - "score_loc": 0.022 - }, - "lab": {}, - "munsell": {}, - "ph": {}, - "rock_fragments": {}, - "sand": {}, - "site": { - "siteData": { - "componentID": "14269511", - "componentKind": "Taxon above family", - "componentPct": 5, - "dataSource": "STATSGO", - "distance": 994.2109898924772, - "irrcapcl": "None", - "irrcapscl": "None", - "irrcapunit": "None", - "mapunitID": "676031", - "minCompDistance": 994.2109898924772, - "nirrcapcl": "7", - "nirrcapscl": "e", - "nirrcapunit": "None", - "rfvInfill": "No", - "sdeURL": "", - "seeURL": "", - "slope": 53.0, - "taxsubgrp": "None", - "textureInfill": "No" - }, - "siteDescription": "" - }, - "texture": {}, - "top_depth": {} - }, - { - "bottom_depth": {}, - "cec": {}, - "clay": {}, - "ec": {}, - "esd": { - "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" - } - }, - "id": { - "component": "Kindy", - "name": "Kindy", - "rank_loc": "10", - "score_loc": 0.017 - }, - "lab": {}, - "munsell": {}, - "ph": {}, - "rock_fragments": {}, - "sand": {}, - "site": { - "siteData": { - "componentID": "14268935", - "componentKind": "Series", - "componentPct": 3, - "dataSource": "STATSGO", - "distance": 0.0, - "irrcapcl": "None", - "irrcapscl": "None", - "irrcapunit": "None", - "mapunitID": "675975", - "minCompDistance": 0.0, - "nirrcapcl": "6", - "nirrcapscl": "e", - "nirrcapunit": "None", - "rfvInfill": "No", - "sdeURL": "", - "seeURL": "", - "slope": 17.0, - "taxsubgrp": "Andic Haplocryods", - "textureInfill": "No" - }, - "siteDescription": "" - }, - "texture": {}, - "top_depth": {} - }, - { - "bottom_depth": {}, - "cec": {}, - "clay": {}, - "ec": {}, - "esd": { - "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" - } - }, - "id": { - "component": "Nagrom", - "name": "Nagrom", - "rank_loc": "11", - "score_loc": 0.017 - }, - "lab": {}, - "munsell": {}, - "ph": {}, - "rock_fragments": {}, - "sand": {}, - "site": { - "siteData": { - "componentID": "14268945", - "componentKind": "Series", - "componentPct": 3, - "dataSource": "STATSGO", - "distance": 0.0, - "irrcapcl": "None", - "irrcapscl": "None", - "irrcapunit": "None", - "mapunitID": "675975", - "minCompDistance": 0.0, - "nirrcapcl": "7", - "nirrcapscl": "e", - "nirrcapunit": "None", - "rfvInfill": "No", - "sdeURL": "", - "seeURL": "", - "slope": 48.0, - "taxsubgrp": "Andic Haplocryods", - "textureInfill": "No" - }, - "siteDescription": "" - }, - "texture": {}, - "top_depth": {} - }, - { - "bottom_depth": {}, - "cec": {}, - "clay": {}, - "ec": {}, - "esd": { - "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" - } - }, - "id": { - "component": "Andic xerochrepts", - "name": "Andic xerochrepts", - "rank_loc": "12", - "score_loc": 0.011 - }, - "lab": {}, - "munsell": {}, - "ph": {}, - "rock_fragments": {}, - "sand": {}, - "site": { - "siteData": { - "componentID": "14268948", - "componentKind": "Taxon above family", - "componentPct": 2, - "dataSource": "STATSGO", - "distance": 0.0, - "irrcapcl": "None", - "irrcapscl": "None", - "irrcapunit": "None", - "mapunitID": "675975", - "minCompDistance": 0.0, - "nirrcapcl": "7", - "nirrcapscl": "e", - "nirrcapunit": "None", - "rfvInfill": "No", - "sdeURL": "", - "seeURL": "", - "slope": 75.0, - "taxsubgrp": "None", - "textureInfill": "No" - }, - "siteDescription": "" - }, - "texture": {}, - "top_depth": {} - }, - { - "bottom_depth": {}, - "cec": {}, - "clay": {}, - "ec": {}, - "esd": { - "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" - } - }, - "id": { - "component": "Nimue", - "name": "Nimue2", - "rank_loc": "Not Displayed", - "score_loc": 0.131 - }, - "lab": {}, - "munsell": {}, - "ph": {}, - "rock_fragments": {}, - "sand": {}, - "site": { - "siteData": { - "componentID": "14268934", - "componentKind": "Series", - "componentPct": 3, - "dataSource": "STATSGO", - "distance": 0.0, - "irrcapcl": "None", - "irrcapscl": "None", - "irrcapunit": "None", - "mapunitID": "675975", - "minCompDistance": 0.0, - "nirrcapcl": "6", - "nirrcapscl": "e", - "nirrcapunit": "None", - "rfvInfill": "No", - "sdeURL": "", - "seeURL": "", - "slope": 19.0, - "taxsubgrp": "Andic Haplocryods", - "textureInfill": "Yes" - }, - "siteDescription": "" - }, - "texture": {}, - "top_depth": {} - }, - { - "bottom_depth": {}, - "cec": {}, - "clay": {}, - "ec": {}, - "esd": { - "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" - } - }, - "id": { - "component": "Nimue", - "name": "Nimue3", - "rank_loc": "Not Displayed", - "score_loc": 0.131 - }, - "lab": {}, - "munsell": {}, - "ph": {}, - "rock_fragments": {}, - "sand": {}, - "site": { - "siteData": { - "componentID": "14268942", - "componentKind": "Series", - "componentPct": 13, - "dataSource": "STATSGO", - "distance": 0.0, - "irrcapcl": "None", - "irrcapscl": "None", - "irrcapunit": "None", - "mapunitID": "675975", - "minCompDistance": 0.0, - "nirrcapcl": "7", - "nirrcapscl": "e", - "nirrcapunit": "None", - "rfvInfill": "No", - "sdeURL": "", - "seeURL": "", - "slope": 48.0, - "taxsubgrp": "Andic Haplocryods", - "textureInfill": "No" - }, - "siteDescription": "" - }, - "texture": {}, - "top_depth": {} - }, - { - "bottom_depth": {}, - "cec": {}, - "clay": {}, - "ec": {}, - "esd": { - "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" - } - }, - "id": { - "component": "Getchell", - "name": "Getchell2", - "rank_loc": "Not Displayed", - "score_loc": 0.062 - }, - "lab": {}, - "munsell": {}, - "ph": {}, - "rock_fragments": {}, - "sand": {}, - "site": { - "siteData": { - "componentID": "14268946", - "componentKind": "Series", - "componentPct": 6, - "dataSource": "STATSGO", - "distance": 0.0, - "irrcapcl": "None", - "irrcapscl": "None", - "irrcapunit": "None", - "mapunitID": "675975", - "minCompDistance": 0.0, - "nirrcapcl": "7", - "nirrcapscl": "e", - "nirrcapunit": "None", - "rfvInfill": "No", - "sdeURL": "", - "seeURL": "", - "slope": 48.0, - "taxsubgrp": "Aquic Haplocryands", + "slope": 4.0, + "taxsubgrp": "Histic Cryaquepts", "textureInfill": "No" }, "siteDescription": "" @@ -792,289 +210,61 @@ }, "soilRank": [ { - "component": "Nagrom", + "component": "Typic vitricryands", "componentData": "Missing Data", - "componentID": 14268945, - "name": "Nagrom", + "componentID": 26612815, + "name": "Typic vitricryands", "not_displayed": false, "rank_data": "1", "rank_data_group": "1", "rank_data_loc": "1", "rank_data_loc_group": "1", - "rank_loc": "11", - "rank_loc_group": "11", - "score_data": 0.876, - "score_data_group": 0.876, - "score_data_loc": 0.447, - "score_data_loc_group": 0.447, - "score_loc": 0.017, - "score_loc_group": 0.017 + "rank_loc": 1, + "rank_loc_group": 1, + "score_data": 0.496, + "score_data_group": 0.496, + "score_data_loc": 0.491, + "score_data_loc_group": 0.491, + "score_loc": 0.486, + "score_loc_group": 0.486 }, { - "component": "Kindy", + "component": "Vitrandic dystrocryepts", "componentData": "Missing Data", - "componentID": 14268935, - "name": "Kindy", + "componentID": 26612824, + "name": "Vitrandic dystrocryepts", "not_displayed": false, - "rank_data": "2", - "rank_data_group": "2", + "rank_data": "3", + "rank_data_group": "3", "rank_data_loc": "2", "rank_data_loc_group": "2", - "rank_loc": "10", - "rank_loc_group": "10", - "score_data": 0.818, - "score_data_group": 0.818, - "score_data_loc": 0.418, - "score_data_loc_group": 0.418, - "score_loc": 0.017, - "score_loc_group": 0.017 + "rank_loc": 2, + "rank_loc_group": 2, + "score_data": 0.229, + "score_data_group": 0.229, + "score_data_loc": 0.294, + "score_data_loc_group": 0.294, + "score_loc": 0.36, + "score_loc_group": 0.36 }, { - "component": "Nimue", + "component": "Histic cryaquepts", "componentData": "Missing Data", - "componentID": 14268934, - "name": "Nimue2", + "componentID": 26612823, + "name": "Histic cryaquepts", "not_displayed": false, - "rank_data": "4", - "rank_data_group": "4", + "rank_data": "2", + "rank_data_group": "2", "rank_data_loc": "3", "rank_data_loc_group": "3", - "rank_loc": "Not Displayed", - "rank_loc_group": "1", - "score_data": 0.662, - "score_data_group": 0.662, - "score_data_loc": 0.396, - "score_data_loc_group": 0.396, - "score_loc": 0.131, - "score_loc_group": 0.131 - }, - { - "component": "Andic xerochrepts", - "componentData": "Missing Data", - "componentID": 14268948, - "name": "Andic xerochrepts", - "not_displayed": false, - "rank_data": "3", - "rank_data_group": "3", - "rank_data_loc": "4", - "rank_data_loc_group": "4", - "rank_loc": "12", - "rank_loc_group": "12", - "score_data": 0.719, - "score_data_group": 0.719, - "score_data_loc": 0.365, - "score_data_loc_group": 0.365, - "score_loc": 0.011, - "score_loc_group": 0.011 - }, - { - "component": "Cryorthods", - "componentData": "Missing Data", - "componentID": 14269505, - "name": "Cryorthods", - "not_displayed": false, - "rank_data": "6", - "rank_data_group": "6", - "rank_data_loc": "5", - "rank_data_loc_group": "5", - "rank_loc": "3", - "rank_loc_group": "3", - "score_data": 0.631, - "score_data_group": 0.631, - "score_data_loc": 0.348, - "score_data_loc_group": 0.348, - "score_loc": 0.065, - "score_loc_group": 0.065 - }, - { - "component": "Diobsud", - "componentData": "Missing Data", - "componentID": 14268932, - "name": "Diobsud", - "not_displayed": false, - "rank_data": "5", - "rank_data_group": "5", - "rank_data_loc": "6", - "rank_data_loc_group": "6", - "rank_loc": "6", - "rank_loc_group": "6", - "score_data": 0.648, - "score_data_group": 0.648, - "score_data_loc": 0.335, - "score_data_loc_group": 0.335, - "score_loc": 0.023, - "score_loc_group": 0.023 - }, - { - "component": "Getchell", - "componentData": "Missing Data", - "componentID": 14268946, - "name": "Getchell2", - "not_displayed": false, - "rank_data": "7", - "rank_data_group": "7", - "rank_data_loc": "7", - "rank_data_loc_group": "7", - "rank_loc": "Not Displayed", - "rank_loc_group": "4", - "score_data": 0.591, - "score_data_group": 0.591, - "score_data_loc": 0.327, - "score_data_loc_group": 0.327, - "score_loc": 0.062, - "score_loc_group": 0.062 - }, - { - "component": "Andic cryumbrepts", - "componentData": "Missing Data", - "componentID": 14269504, - "name": "Andic cryumbrepts", - "not_displayed": false, - "rank_data": "8", - "rank_data_group": "8", - "rank_data_loc": "8", - "rank_data_loc_group": "8", - "rank_loc": "2", - "rank_loc_group": "2", - "score_data": 0.493, - "score_data_group": 0.493, - "score_data_loc": 0.289, - "score_data_loc_group": 0.289, - "score_loc": 0.086, - "score_loc_group": 0.086 - }, - { - "component": "Cryaquepts", - "componentData": "Missing Data", - "componentID": 14269507, - "name": "Cryaquepts", - "not_displayed": false, - "rank_data": "9", - "rank_data_group": "9", - "rank_data_loc": "9", - "rank_data_loc_group": "9", - "rank_loc": "7", - "rank_loc_group": "7", - "score_data": 0.469, - "score_data_group": 0.469, - "score_data_loc": 0.245, - "score_data_loc_group": 0.245, - "score_loc": 0.022, - "score_loc_group": 0.022 - }, - { - "component": "Cryumbrepts", - "componentData": "Missing Data", - "componentID": 14269506, - "name": "Cryumbrepts", - "not_displayed": false, - "rank_data": "11", - "rank_data_group": "11", - "rank_data_loc": "10", - "rank_data_loc_group": "10", - "rank_loc": "5", - "rank_loc_group": "5", - "score_data": 0.372, - "score_data_group": 0.372, - "score_data_loc": 0.207, - "score_data_loc_group": 0.207, - "score_loc": 0.043, - "score_loc_group": 0.043 - }, - { - "component": "Cryohumods", - "componentData": "Missing Data", - "componentID": 14269509, - "name": "Cryohumods", - "not_displayed": false, - "rank_data": "10", - "rank_data_group": "10", - "rank_data_loc": "11", - "rank_data_loc_group": "11", - "rank_loc": "8", - "rank_loc_group": "8", - "score_data": 0.372, - "score_data_group": 0.372, - "score_data_loc": 0.197, - "score_data_loc_group": 0.197, - "score_loc": 0.022, - "score_loc_group": 0.022 - }, - { - "component": "Haplocryods", - "componentData": "Missing Data", - "componentID": 14269511, - "name": "Haplocryods", - "not_displayed": false, - "rank_data": "12", - "rank_data_group": "12", - "rank_data_loc": "12", - "rank_data_loc_group": "12", - "rank_loc": "9", - "rank_loc_group": "9", - "score_data": 0.362, - "score_data_group": 0.362, - "score_data_loc": 0.192, - "score_data_loc_group": 0.192, - "score_loc": 0.022, - "score_loc_group": 0.022 - }, - { - "component": "Nimue", - "componentData": "Missing Data", - "componentID": 14268942, - "name": "Nimue3", - "not_displayed": true, - "rank_data": "Not Displayed", - "rank_data_group": "4", - "rank_data_loc": "Not Displayed", - "rank_data_loc_group": "3", - "rank_loc": "Not Displayed", - "rank_loc_group": "1", - "score_data": 0.582, - "score_data_group": 0.662, - "score_data_loc": 0.356, - "score_data_loc_group": 0.396, - "score_loc": 0.131, - "score_loc_group": 0.131 - }, - { - "component": "Getchell", - "componentData": "Missing Data", - "componentID": 14268944, - "name": "Getchell", - "not_displayed": true, - "rank_data": "Not Displayed", - "rank_data_group": "7", - "rank_data_loc": "Not Displayed", - "rank_data_loc_group": "7", - "rank_loc": "4", - "rank_loc_group": "4", - "score_data": 0.503, - "score_data_group": 0.591, - "score_data_loc": 0.283, - "score_data_loc_group": 0.327, - "score_loc": 0.062, - "score_loc_group": 0.062 - }, - { - "component": "Nimue", - "componentData": "Missing Data", - "componentID": 14268930, - "name": "Nimue", - "not_displayed": true, - "rank_data": "Not Displayed", - "rank_data_group": "4", - "rank_data_loc": "Not Displayed", - "rank_data_loc_group": "3", - "rank_loc": "1", - "rank_loc_group": "1", - "score_data": 0.408, - "score_data_group": 0.662, - "score_data_loc": 0.27, - "score_data_loc_group": 0.396, - "score_loc": 0.131, - "score_loc_group": 0.131 + "rank_loc": 3, + "rank_loc_group": 3, + "score_data": 0.352, + "score_data_group": 0.352, + "score_data_loc": 0.253, + "score_data_loc_group": 0.253, + "score_loc": 0.154, + "score_loc_group": 0.154 } ] } diff --git a/soil_id/tests/us/__snapshots__/test_us/test_soil_location[60.42282639,-158.4018264].json b/soil_id/tests/us/__snapshots__/test_us/test_soil_location[60.42282639,-158.4018264].json index c8dd081..a554547 100644 --- a/soil_id/tests/us/__snapshots__/test_us/test_soil_location[60.42282639,-158.4018264].json +++ b/soil_id/tests/us/__snapshots__/test_us/test_soil_location[60.42282639,-158.4018264].json @@ -41,13 +41,13 @@ "esd": { "ESD": { "ecoclassid": [ - "R236XY109AK" + "R236XY107AK" ], "ecoclassname": [ - "Subarctic Low Scrub Peat Drainages" + "Western Alaska Maritime Scrub Gravelly Drainages" ], "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/236X/R236XY109AK" + "https://edit.sc.egov.usda.gov/catalogs/esd/236X/R236XY107AK" ] } }, @@ -64,7 +64,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "26176414", + "componentID": "26723599", "componentKind": "Taxon above family", "componentPct": 24, "dataSource": "SSURGO", @@ -97,13 +97,13 @@ "esd": { "ESD": { "ecoclassid": [ - "R236XY107AK" + "R236XY132AK" ], "ecoclassname": [ - "Western Alaska Maritime Scrub Gravelly Drainages" + "Subarctic Dwarf Scrub Dry Loamy Slopes" ], "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/236X/R236XY107AK" + "https://edit.sc.egov.usda.gov/catalogs/esd/236X/R236XY132AK" ] } }, @@ -120,7 +120,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "26176416", + "componentID": "26723596", "componentKind": "Taxon above family", "componentPct": 23, "dataSource": "SSURGO", @@ -153,13 +153,13 @@ "esd": { "ESD": { "ecoclassid": [ - "R236XY140AK" + "F236XY139AK" ], "ecoclassname": [ - "Subarctic Tussock Tundra Wet Loamy Plains" + "Boreal Woodland Loamy Rises" ], "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/236X/R236XY140AK" + "https://edit.sc.egov.usda.gov/catalogs/esd/236X/F236XY139AK" ] } }, @@ -176,7 +176,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "26176412", + "componentID": "26723600", "componentKind": "Taxon above family", "componentPct": 20, "dataSource": "SSURGO", @@ -209,13 +209,13 @@ "esd": { "ESD": { "ecoclassid": [ - "F236XY139AK" + "R236XY131AK" ], "ecoclassname": [ - "Boreal Woodland Loamy Rises" + "Subarctic Tussock-Scrub Frozen Plains" ], "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/236X/F236XY139AK" + "https://edit.sc.egov.usda.gov/catalogs/esd/236X/R236XY131AK" ] } }, @@ -232,7 +232,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "26176417", + "componentID": "26723598", "componentKind": "Taxon above family", "componentPct": 17, "dataSource": "SSURGO", @@ -265,13 +265,13 @@ "esd": { "ESD": { "ecoclassid": [ - "R236XY132AK" + "R236XY140AK" ], "ecoclassname": [ - "Subarctic Dwarf Scrub Dry Loamy Slopes" + "Subarctic Tussock Tundra Wet Loamy Plains" ], "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/236X/R236XY132AK" + "https://edit.sc.egov.usda.gov/catalogs/esd/236X/R236XY140AK" ] } }, @@ -288,7 +288,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "26176415", + "componentID": "26723597", "componentKind": "Taxon above family", "componentPct": 10, "dataSource": "SSURGO", @@ -321,13 +321,13 @@ "esd": { "ESD": { "ecoclassid": [ - "R236XY131AK" + "R236XY109AK" ], "ecoclassname": [ - "Subarctic Tussock-Scrub Frozen Plains" + "Subarctic Low Scrub Peat Drainages" ], "edit_url": [ - "https://edit.sc.egov.usda.gov/catalogs/esd/236X/R236XY131AK" + "https://edit.sc.egov.usda.gov/catalogs/esd/236X/R236XY109AK" ] } }, @@ -344,7 +344,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "26176413", + "componentID": "26723595", "componentKind": "Taxon above family", "componentPct": 1, "dataSource": "SSURGO", @@ -380,7 +380,7 @@ { "component": "D36-western maritime tussock scrub loamy eolian slopes", "componentData": "Missing Data", - "componentID": 26176414, + "componentID": 26723599, "name": "D36-western maritime tussock scrub loamy eolian slopes", "not_displayed": false, "rank_data": "1", @@ -399,7 +399,7 @@ { "component": "D36-western maritime dwarf scrub loamy glaciated slopes", "componentData": "Missing Data", - "componentID": 26176416, + "componentID": 26723596, "name": "D36-western maritime dwarf scrub loamy glaciated slopes", "not_displayed": false, "rank_data": "5", @@ -418,7 +418,7 @@ { "component": "D36-boreal forest loamy eolian slopes", "componentData": "Missing Data", - "componentID": 26176415, + "componentID": 26723597, "name": "D36-boreal forest loamy eolian slopes", "not_displayed": false, "rank_data": "2", @@ -437,7 +437,7 @@ { "component": "D36-western maritime scrub organic peat mounds", "componentData": "Missing Data", - "componentID": 26176417, + "componentID": 26723598, "name": "D36-western maritime scrub organic peat mounds", "not_displayed": false, "rank_data": "4", @@ -456,7 +456,7 @@ { "component": "D36-western maritime sedge organic depressions", "componentData": "Missing Data", - "componentID": 26176412, + "componentID": 26723600, "name": "D36-western maritime sedge organic depressions", "not_displayed": false, "rank_data": "6", @@ -475,7 +475,7 @@ { "component": "D36-western maritime scrub drainageways", "componentData": "Missing Data", - "componentID": 26176413, + "componentID": 26723595, "name": "D36-western maritime scrub drainageways", "not_displayed": false, "rank_data": "3", diff --git a/soil_id/tests/us/__snapshots__/test_us/test_soil_location[62.32776717,-157.2767099].json b/soil_id/tests/us/__snapshots__/test_us/test_soil_location[62.32776717,-157.2767099].json index e2b2d1d..a6913fb 100644 --- a/soil_id/tests/us/__snapshots__/test_us/test_soil_location[62.32776717,-157.2767099].json +++ b/soil_id/tests/us/__snapshots__/test_us/test_soil_location[62.32776717,-157.2767099].json @@ -40,9 +40,15 @@ "ec": {}, "esd": { "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" + "ecoclassid": [ + "F230XY612AK" + ], + "ecoclassname": [ + "Boreal Forest Loamy Slopes" + ], + "edit_url": [ + "https://edit.sc.egov.usda.gov/catalogs/esd/230X/F230XY612AK" + ] } }, "id": { @@ -58,7 +64,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "24913863", + "componentID": "27026711", "componentKind": "Taxon above family", "componentPct": 30, "dataSource": "SSURGO", @@ -90,9 +96,15 @@ "ec": {}, "esd": { "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" + "ecoclassid": [ + "" + ], + "ecoclassname": [ + "" + ], + "edit_url": [ + "" + ] } }, "id": { @@ -108,7 +120,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "24913856", + "componentID": "27026717", "componentKind": "Taxon above family", "componentPct": 29, "dataSource": "SSURGO", @@ -140,9 +152,15 @@ "ec": {}, "esd": { "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" + "ecoclassid": [ + "" + ], + "ecoclassname": [ + "" + ], + "edit_url": [ + "" + ] } }, "id": { @@ -158,7 +176,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "24913864", + "componentID": "27026716", "componentKind": "Taxon above family", "componentPct": 13, "dataSource": "SSURGO", @@ -190,9 +208,15 @@ "ec": {}, "esd": { "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" + "ecoclassid": [ + "" + ], + "ecoclassname": [ + "" + ], + "edit_url": [ + "" + ] } }, "id": { @@ -208,7 +232,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "24913862", + "componentID": "27026714", "componentKind": "Taxon above family", "componentPct": 7, "dataSource": "SSURGO", @@ -240,9 +264,15 @@ "ec": {}, "esd": { "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" + "ecoclassid": [ + "" + ], + "ecoclassname": [ + "" + ], + "edit_url": [ + "" + ] } }, "id": { @@ -258,7 +288,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "24913861", + "componentID": "27026715", "componentKind": "Taxon above family", "componentPct": 6, "dataSource": "SSURGO", @@ -290,9 +320,15 @@ "ec": {}, "esd": { "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" + "ecoclassid": [ + "F230XY611AK" + ], + "ecoclassname": [ + "Boreal Forest Loamy Frozen Slopes" + ], + "edit_url": [ + "https://edit.sc.egov.usda.gov/catalogs/esd/230X/F230XY611AK" + ] } }, "id": { @@ -308,7 +344,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "24913860", + "componentID": "27026713", "componentKind": "Taxon above family", "componentPct": 5, "dataSource": "SSURGO", @@ -340,9 +376,15 @@ "ec": {}, "esd": { "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" + "ecoclassid": [ + "R230XY630AK" + ], + "ecoclassname": [ + "Alpine Dwarf Scrub Gravelly Slopes" + ], + "edit_url": [ + "https://edit.sc.egov.usda.gov/catalogs/esd/230X/R230XY630AK" + ] } }, "id": { @@ -358,7 +400,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "24913859", + "componentID": "27026712", "componentKind": "Taxon above family", "componentPct": 4, "dataSource": "SSURGO", @@ -390,9 +432,15 @@ "ec": {}, "esd": { "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" + "ecoclassid": [ + "" + ], + "ecoclassname": [ + "" + ], + "edit_url": [ + "" + ] } }, "id": { @@ -408,7 +456,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "24913857", + "componentID": "27026718", "componentKind": "Taxon above family", "componentPct": 3, "dataSource": "SSURGO", @@ -440,9 +488,15 @@ "ec": {}, "esd": { "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" + "ecoclassid": [ + "" + ], + "ecoclassname": [ + "" + ], + "edit_url": [ + "" + ] } }, "id": { @@ -458,7 +512,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "24913858", + "componentID": "27026719", "componentKind": "Taxon above family", "componentPct": 3, "dataSource": "SSURGO", @@ -494,7 +548,7 @@ { "component": "E30-boreal forest-silty slopes", "componentData": "Missing Data", - "componentID": 24913863, + "componentID": 27026711, "name": "E30-boreal forest-silty slopes", "not_displayed": false, "rank_data": "1", @@ -513,7 +567,7 @@ { "component": "E30-boreal alpine scrub-gravelly colluvial slopes", "componentData": "Missing Data", - "componentID": 24913856, + "componentID": 27026717, "name": "E30-boreal alpine scrub-gravelly colluvial slopes", "not_displayed": false, "rank_data": "4", @@ -532,7 +586,7 @@ { "component": "E30-boreal taiga-loamy frozen colluvial slopes", "componentData": "Missing Data", - "componentID": 24913864, + "componentID": 27026716, "name": "E30-boreal taiga-loamy frozen colluvial slopes", "not_displayed": false, "rank_data": "2", @@ -551,7 +605,7 @@ { "component": "E30-boreal taiga-silty slopes", "componentData": "Missing Data", - "componentID": 24913862, + "componentID": 27026714, "name": "E30-boreal taiga-silty slopes", "not_displayed": false, "rank_data": "3", @@ -570,7 +624,7 @@ { "component": "E30-boreal taiga/tussock-silty frozen slopes", "componentData": "Missing Data", - "componentID": 24913861, + "componentID": 27026715, "name": "E30-boreal taiga/tussock-silty frozen slopes", "not_displayed": false, "rank_data": "6", @@ -589,7 +643,7 @@ { "component": "E30-boreal scrub-silty frozen drainageways", "componentData": "Missing Data", - "componentID": 24913859, + "componentID": 27026712, "name": "E30-boreal scrub-silty frozen drainageways", "not_displayed": false, "rank_data": "5", @@ -608,7 +662,7 @@ { "component": "E30-boreal subalpine woodland-gravelly colluvial slopes", "componentData": "Missing Data", - "componentID": 24913858, + "componentID": 27026719, "name": "E30-boreal subalpine woodland-gravelly colluvial slopes", "not_displayed": false, "rank_data": "7", @@ -627,7 +681,7 @@ { "component": "E30-boreal alpine dwarf scrub-gravelly colluvial slopes", "componentData": "Missing Data", - "componentID": 24913857, + "componentID": 27026718, "name": "E30-boreal alpine dwarf scrub-gravelly colluvial slopes", "not_displayed": false, "rank_data": "8", @@ -646,7 +700,7 @@ { "component": "E30-boreal subalpine scrub-loamy colluvial slopes", "componentData": "Missing Data", - "componentID": 24913860, + "componentID": 27026713, "name": "E30-boreal subalpine scrub-loamy colluvial slopes", "not_displayed": false, "rank_data": "9", diff --git a/soil_id/tests/us/__snapshots__/test_us/test_soil_location[63.52666854,-156.4422738].json b/soil_id/tests/us/__snapshots__/test_us/test_soil_location[63.52666854,-156.4422738].json index a2a8118..18e6aea 100644 --- a/soil_id/tests/us/__snapshots__/test_us/test_soil_location[63.52666854,-156.4422738].json +++ b/soil_id/tests/us/__snapshots__/test_us/test_soil_location[63.52666854,-156.4422738].json @@ -40,9 +40,15 @@ "ec": {}, "esd": { "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" + "ecoclassid": [ + "F230XY612AK" + ], + "ecoclassname": [ + "Boreal Forest Loamy Slopes" + ], + "edit_url": [ + "https://edit.sc.egov.usda.gov/catalogs/esd/230X/F230XY612AK" + ] } }, "id": { @@ -58,7 +64,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "24914406", + "componentID": "26837483", "componentKind": "Taxon above family", "componentPct": 34, "dataSource": "SSURGO", @@ -90,9 +96,15 @@ "ec": {}, "esd": { "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" + "ecoclassid": [ + "R230XY610AK" + ], + "ecoclassname": [ + "Boreal Scrub Silty Frozen Drainages" + ], + "edit_url": [ + "https://edit.sc.egov.usda.gov/catalogs/esd/230X/R230XY610AK" + ] } }, "id": { @@ -108,7 +120,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "24914408", + "componentID": "26837485", "componentKind": "Taxon above family", "componentPct": 19, "dataSource": "SSURGO", @@ -140,9 +152,15 @@ "ec": {}, "esd": { "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" + "ecoclassid": [ + "" + ], + "ecoclassname": [ + "" + ], + "edit_url": [ + "" + ] } }, "id": { @@ -158,7 +176,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "24914411", + "componentID": "26837488", "componentKind": "Taxon above family", "componentPct": 12, "dataSource": "SSURGO", @@ -190,9 +208,15 @@ "ec": {}, "esd": { "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" + "ecoclassid": [ + "F230XY611AK" + ], + "ecoclassname": [ + "Boreal Forest Loamy Frozen Slopes" + ], + "edit_url": [ + "https://edit.sc.egov.usda.gov/catalogs/esd/230X/F230XY611AK" + ] } }, "id": { @@ -208,7 +232,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "24914462", + "componentID": "26837434", "componentKind": "Taxon above family", "componentPct": 43, "dataSource": "SSURGO", @@ -240,9 +264,15 @@ "ec": {}, "esd": { "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" + "ecoclassid": [ + "" + ], + "ecoclassname": [ + "" + ], + "edit_url": [ + "" + ] } }, "id": { @@ -258,7 +288,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "24914409", + "componentID": "26837486", "componentKind": "Taxon above family", "componentPct": 9, "dataSource": "SSURGO", @@ -290,9 +320,15 @@ "ec": {}, "esd": { "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" + "ecoclassid": [ + "R230XY620AK" + ], + "ecoclassname": [ + "Boreal Peat Frozen Flats Complex" + ], + "edit_url": [ + "https://edit.sc.egov.usda.gov/catalogs/esd/230X/R230XY620AK" + ] } }, "id": { @@ -308,7 +344,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "24914405", + "componentID": "26837482", "componentKind": "Taxon above family", "componentPct": 7, "dataSource": "SSURGO", @@ -340,9 +376,15 @@ "ec": {}, "esd": { "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" + "ecoclassid": [ + "" + ], + "ecoclassname": [ + "" + ], + "edit_url": [ + "" + ] } }, "id": { @@ -358,7 +400,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "24914386", + "componentID": "26837431", "componentKind": "Taxon above family", "componentPct": 23, "dataSource": "SSURGO", @@ -390,9 +432,15 @@ "ec": {}, "esd": { "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" + "ecoclassid": [ + "F230XY611AK" + ], + "ecoclassname": [ + "Boreal Forest Loamy Frozen Slopes" + ], + "edit_url": [ + "https://edit.sc.egov.usda.gov/catalogs/esd/230X/F230XY611AK" + ] } }, "id": { @@ -408,7 +456,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "24914410", + "componentID": "26837487", "componentKind": "Taxon above family", "componentPct": 3, "dataSource": "SSURGO", @@ -440,9 +488,15 @@ "ec": {}, "esd": { "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" + "ecoclassid": [ + "R230XY601AK" + ], + "ecoclassname": [ + "Boreal Forest Flood Plain Complex" + ], + "edit_url": [ + "https://edit.sc.egov.usda.gov/catalogs/esd/230X/R230XY601AK" + ] } }, "id": { @@ -458,7 +512,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "24914464", + "componentID": "26837436", "componentKind": "Taxon above family", "componentPct": 12, "dataSource": "SSURGO", @@ -490,9 +544,15 @@ "ec": {}, "esd": { "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" + "ecoclassid": [ + "" + ], + "ecoclassname": [ + "" + ], + "edit_url": [ + "" + ] } }, "id": { @@ -508,7 +568,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "24914387", + "componentID": "26837432", "componentKind": "Taxon above family", "componentPct": 11, "dataSource": "SSURGO", @@ -540,9 +600,15 @@ "ec": {}, "esd": { "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" + "ecoclassid": [ + "" + ], + "ecoclassname": [ + "" + ], + "edit_url": [ + "" + ] } }, "id": { @@ -558,7 +624,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "24914388", + "componentID": "26837433", "componentKind": "Taxon above family", "componentPct": 1, "dataSource": "SSURGO", @@ -590,9 +656,15 @@ "ec": {}, "esd": { "ESD": { - "ecoclassid": "", - "ecoclassname": "", - "edit_url": "" + "ecoclassid": [ + "" + ], + "ecoclassname": [ + "" + ], + "edit_url": [ + "" + ] } }, "id": { @@ -608,7 +680,7 @@ "sand": {}, "site": { "siteData": { - "componentID": "24914463", + "componentID": "26837435", "componentKind": "Taxon above family", "componentPct": 1, "dataSource": "SSURGO", @@ -644,7 +716,7 @@ { "component": "E30-boreal taiga-organic frozen peat plateaus", "componentData": "Missing Data", - "componentID": 24914411, + "componentID": 26837488, "name": "E30-boreal taiga-organic frozen peat plateaus", "not_displayed": false, "rank_data": "4", @@ -663,7 +735,7 @@ { "component": "E30-boreal taiga-loamy frozen colluvial slopes", "componentData": "Missing Data", - "componentID": 24914406, + "componentID": 26837483, "name": "E30-boreal taiga-loamy frozen colluvial slopes", "not_displayed": false, "rank_data": "8", @@ -682,7 +754,7 @@ { "component": "E30-boreal forest-silty loess slopes", "componentData": "Missing Data", - "componentID": 24914386, + "componentID": 26837431, "name": "E30-boreal forest-silty loess slopes", "not_displayed": false, "rank_data": "1", @@ -701,7 +773,7 @@ { "component": "E30-boreal forest-loamy flood plains", "componentData": "Missing Data", - "componentID": 24914409, + "componentID": 26837486, "name": "E30-boreal forest-loamy flood plains", "not_displayed": false, "rank_data": "5", @@ -720,7 +792,7 @@ { "component": "E30-boreal scrub-gravelly low flood plains", "componentData": "Missing Data", - "componentID": 24914408, + "componentID": 26837485, "name": "E30-boreal scrub-gravelly low flood plains", "not_displayed": false, "rank_data": "7", @@ -739,7 +811,7 @@ { "component": "E30-boreal subalpine woodland-gravelly colluvial slopes", "componentData": "Missing Data", - "componentID": 24914463, + "componentID": 26837435, "name": "E30-boreal subalpine woodland-gravelly colluvial slopes", "not_displayed": false, "rank_data": "2", @@ -758,7 +830,7 @@ { "component": "E30-boreal subalpine scrub-loamy colluvial slopes", "componentData": "Missing Data", - "componentID": 24914388, + "componentID": 26837433, "name": "E30-boreal subalpine scrub-loamy colluvial slopes", "not_displayed": false, "rank_data": "3", @@ -777,7 +849,7 @@ { "component": "E30-boreal taiga/tussock-silty frozen slopes", "componentData": "Missing Data", - "componentID": 24914464, + "componentID": 26837436, "name": "E30-boreal taiga/tussock-silty frozen slopes", "not_displayed": false, "rank_data": "6", @@ -796,7 +868,7 @@ { "component": "E30-boreal forest-silty slopes", "componentData": "Missing Data", - "componentID": 24914405, + "componentID": 26837482, "name": "E30-boreal forest-silty slopes", "not_displayed": false, "rank_data": "10", @@ -815,7 +887,7 @@ { "component": "E30-boreal scrub/sphagnum-organic depressions", "componentData": "Missing Data", - "componentID": 24914410, + "componentID": 26837487, "name": "E30-boreal scrub/sphagnum-organic depressions", "not_displayed": false, "rank_data": "9", @@ -834,7 +906,7 @@ { "component": "E30-boreal scrub-silty frozen drainageways", "componentData": "Missing Data", - "componentID": 24914387, + "componentID": 26837432, "name": "E30-boreal scrub-silty frozen drainageways", "not_displayed": false, "rank_data": "11", @@ -853,7 +925,7 @@ { "component": "E30-boreal taiga-silty frozen loess slopes", "componentData": "Missing Data", - "componentID": 24914462, + "componentID": 26837434, "name": "E30-boreal taiga-silty frozen loess slopes", "not_displayed": false, "rank_data": "12", diff --git a/soil_id/tests/us/conftest.py b/soil_id/tests/us/conftest.py index e69de29..543306f 100644 --- a/soil_id/tests/us/conftest.py +++ b/soil_id/tests/us/conftest.py @@ -0,0 +1,39 @@ +# Copyright © 2024 Technology Matters +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published +# by the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see https://www.gnu.org/licenses/. + +import json +import pathlib +from contextlib import contextmanager +from unittest.mock import patch + +import pytest + +SNAPSHOTS_DIR = pathlib.Path(__file__).parent / "__snapshots__" / "test_api_snapshots" + + +@pytest.fixture +def api_fixtures(): + @contextmanager + def _apply(lon, lat): + snapshot_file = SNAPSHOTS_DIR / f"test_api_snapshot[{lat},{lon}].json" + data = json.loads(snapshot_file.read_text()) + + with ( + patch("soil_id.us_soil.get_soilweb_data", return_value=data["soilweb"]), + patch("soil_id.us_soil.get_elev_data", return_value=data["elev"]), + ): + yield + + return _apply diff --git a/soil_id/tests/us/test_api_snapshots.py b/soil_id/tests/us/test_api_snapshots.py new file mode 100644 index 0000000..b36a344 --- /dev/null +++ b/soil_id/tests/us/test_api_snapshots.py @@ -0,0 +1,34 @@ +# Copyright © 2024 Technology Matters +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published +# by the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see https://www.gnu.org/licenses/. + +import pytest +from syrupy.extensions.json import JSONSnapshotExtension + +from soil_id.services import get_elev_data, get_soilweb_data +from soil_id.tests.us.test_us import test_params + + +@pytest.mark.api_snapshot +@pytest.mark.parametrize("location", test_params) +def test_api_snapshot(location, snapshot): + """ + Fetch live API responses and compare against stored Syrupy snapshots. + Run with --snapshot-update to refresh stored responses. + """ + lon, lat = location["lon"], location["lat"] + assert snapshot.with_defaults(extension_class=JSONSnapshotExtension) == { + "soilweb": get_soilweb_data(lon, lat), + "elev": get_elev_data(lon, lat), + } diff --git a/soil_id/tests/us/test_us.py b/soil_id/tests/us/test_us.py index f84c97a..c3e7a79 100644 --- a/soil_id/tests/us/test_us.py +++ b/soil_id/tests/us/test_us.py @@ -48,7 +48,7 @@ @pytest.mark.parametrize("location", test_params) -def test_soil_location(location, snapshot): +def test_soil_location(location, snapshot, api_fixtures): # Dummy Soil Profile Data (replicating the structure provided) soilHorizon = ["LOAM"] * 7 topDepth = [0, 1, 10, 20, 50, 70, 100] @@ -60,23 +60,24 @@ def test_soil_location(location, snapshot): pElev = None cracks = False - start_time = time.perf_counter() - list_soils_result = list_soils(location["lon"], location["lat"]) - logging.info(f"...time: {(time.perf_counter() - start_time):.2f}s") - rank_result = rank_soils( - location["lon"], - location["lat"], - list_soils_result, - soilHorizon, - topDepth, - bottomDepth, - rfvDepth, - lab_Color, - pSlope, - pElev, - bedrock, - cracks, - ) + with api_fixtures(location["lon"], location["lat"]): + start_time = time.perf_counter() + list_soils_result = list_soils(location["lon"], location["lat"]) + logging.info(f"...time: {(time.perf_counter() - start_time):.2f}s") + rank_result = rank_soils( + location["lon"], + location["lat"], + list_soils_result, + soilHorizon, + topDepth, + bottomDepth, + rfvDepth, + lab_Color, + pSlope, + pElev, + bedrock, + cracks, + ) assert snapshot.with_defaults(extension_class=JSONSnapshotExtension) == { "list": clean_soil_list_json(list_soils_result.soil_list_json), @@ -84,19 +85,20 @@ def test_soil_location(location, snapshot): } -def test_empty_rank(): - SoilListOutputData = list_soils(test_locations[0]["lon"], test_locations[0]["lat"]) - rank_soils( - test_locations[0]["lon"], - test_locations[0]["lat"], - SoilListOutputData, - soilHorizon=[], - topDepth=[], - bottomDepth=[], - rfvDepth=[], - lab_Color=[], - pSlope=None, - pElev=None, - bedrock=None, - cracks=None, - ) +def test_empty_rank(api_fixtures): + with api_fixtures(test_locations[0]["lon"], test_locations[0]["lat"]): + SoilListOutputData = list_soils(test_locations[0]["lon"], test_locations[0]["lat"]) + rank_soils( + test_locations[0]["lon"], + test_locations[0]["lat"], + SoilListOutputData, + soilHorizon=[], + topDepth=[], + bottomDepth=[], + rfvDepth=[], + lab_Color=[], + pSlope=None, + pElev=None, + bedrock=None, + cracks=None, + ) diff --git a/soil_id/tests/us/test_us_integration.py b/soil_id/tests/us/test_us_integration.py new file mode 100644 index 0000000..adb2075 --- /dev/null +++ b/soil_id/tests/us/test_us_integration.py @@ -0,0 +1,41 @@ +# Copyright © 2024 Technology Matters +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published +# by the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see https://www.gnu.org/licenses/. + +import pytest + +from soil_id.tests.us.test_us import test_params +from soil_id.us_soil import list_soils, rank_soils + + +@pytest.mark.integration +@pytest.mark.parametrize("location", test_params) +def test_soil_location_integration(location): + """Runs full algorithm against live APIs. Just verifies no crash.""" + lon, lat = location["lon"], location["lat"] + list_result = list_soils(lon, lat) + rank_soils( + lon, + lat, + list_result, + soilHorizon=["LOAM"] * 7, + topDepth=[0, 1, 10, 20, 50, 70, 100], + bottomDepth=[1, 10, 20, 50, 70, 100, 120], + rfvDepth=["0-1%"] * 7, + lab_Color=[[41.24, 2.54, 21.17]] * 7, + pSlope="15", + pElev=None, + bedrock=None, + cracks=False, + )