# الحراثة بمعدل متغير من انضغاط التربة

{% hint style="success" %}
النقطة البداية هي مجموعة بيانات ضغط التربة (أو ما يعادلها) مع قياسات مأخوذة على أعماق متعددة.
{% endhint %}

{% hint style="warning" %}
الدروس التعليمية أدناه تدعم عدة لغات. اختر اللغة التي تناسبك من أيقونة اللغة <img src="/files/e693b4b7866da1eb333c018cde829cdb06106264" alt="" data-size="line">.&#x20;
{% endhint %}

## تطبيق حراثة متغير فردي (VR)

فيما يلي دليل تفاعلي متعدد اللغات حول إنشاء تطبيق حراثة متغير باستخدام بيانات ضغط التربة لحقل واحد.

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

## خرائط حراثة متغيرة مجمعة (Batch 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/ar/alm-alzraah/alhrathh-bmadl-mtghyr-mn-andhghat-altrbh.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.
