# Змінний обробіток ґрунту на основі ущільнення ґрунту

{% hint style="success" %}
Вихідною точкою є набір даних із ущільнення ґрунту (або еквівалент) із вимірюваннями, зробленими на декількох глибинах.
{% endhint %}

{% hint style="warning" %}
Наведені нижче підручники підтримують кілька мов. Оберіть той, що найкраще підходить вам, за значком мови <img src="/files/1b7acdfd361efce637476b061c36e8c3073cd2f5" alt="" data-size="line">.&#x20;
{% endhint %}

## Одиночне застосування регульованої обробки ґрунту (VR)

Нижче ви знайдете багатомовний інтерактивний посібник зі створення застосування VR для обробки ґрунту з використанням даних про ущільнення ґрунту для одного поля.

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

## Пакетні карти VR для обробки ґрунту

Нижче ви знайдете інтерактивний *багатомовний* посібник, що показує, як створити карту VR обробки ґрунту на основі даних про ущільнення ґрунту для пакета з 3 полів.

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

## Використане рівняння

Нижче наведено рівняння для розрахунку глибини обробки на основі значення ущільнення на 25 см.&#x20;

Це рівняння (або його варіація) може бути збережене у вашій бібліотеці користувацьких рівнянь GeoPard.

```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/ukrainian/agronomiya/zminnii-obrobitok-gruntu-na-osnovi-ushilnennya-gruntu.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.
