> For the complete documentation index, see [llms.txt](https://docs.geopard.tech/geopard-tutorials/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.geopard.tech/geopard-tutorials/ukrainian/agronomiya/zminnii-obrobitok-gruntu-na-osnovi-ushilnennya-gruntu.md).

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

{% 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
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.geopard.tech/geopard-tutorials/ukrainian/agronomiya/zminnii-obrobitok-gruntu-na-osnovi-ushilnennya-gruntu.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
