# VR Tillage from Soil Compaction

{% hint style="success" %}
The starting point is a Soil Compaction dataset (or equivalent) with measurements taken at multiple depths.
{% endhint %}

{% hint style="warning" %}
The tutorials below support multiple languages. Choose the one that best fits you from the language icon <img src="/files/k91cBV1hRmp36OjTv4K6" alt="" data-size="line">.&#x20;
{% endhint %}

## Single VR Tillage Application

Below, you’ll find a multilingual interactive guide on creating a VR Tillage application using Soil Compaction data for a single Field.

{% @arcade/embed flowId="WTv30agzTwuMh8wQuIEm" url="<https://app.arcade.software/share/WTv30agzTwuMh8wQuIEm>" %}

## Batch VR Tillage Maps

Below, you’ll find an interactive *multi-language* guide showing how to create a VR tillage map based on Soil Compaction data for a batch with 3 fields.

{% @arcade/embed flowId="3xbue8272p71qIRWCiA6" url="<https://app.arcade.software/share/3xbue8272p71qIRWCiA6>" %}

## Used Equation

Below is the equation for calculating tillage depth based on the 25 cm compaction value.&#x20;

This equation (or a variation of it) can be saved in your GeoPard custom equation library.

```python
if pressure < 15:
    tillage_depth = 25
elif pressure < 21:
    tillage_depth = 27
else:
    tillage_depth = 30
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.geopard.tech/geopard-tutorials/agronomy/vr-tillage-from-soil-compaction.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
