> 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/tr/api-dokumanlari/geopard-api-isteklerine-genel-bakis/89.-mutation-zonesmapi-sikistirilmis-isoxml-olarak-disa-aktar.md).

# 89. Mutation: ZonesMap'i Sıkıştırılmış ISOXML olarak dışa aktar

Seçilen "ZonesMap" ile ISOXML olarak bir zip arşivi oluşturun.

{% hint style="danger" %}
Birimli oranlara sahip bir ZonesMap'i ISOXML'e dönüştürmek için şu koşullar sağlanmalıdır: (1) ZonesMap en az bir ürün ve seçilmiş birimlere sahip olmalı ve (2) ZonesMap türü Şunlardan biri olarak belirtilmelidir: Ekim, İlaçlama, Gübreleme veya Sulama.
{% endhint %}

{% hint style="info" %}
Seçili parsel için birden çok ISOXML Uygulama haritası dışa aktarılabilir `applicationMaps` >> `uuids` ve/veya `equationMaps` >> `uuids`.
{% endhint %}

### 1. Hazırlık

* Öznitelik `applicationMaps` içinde oran nesneleri bulunan bir ZonesMaps (VectorAnalysisMaps) dizisi içerir ve bunlar dışa aktarılacaktır. Her bir nesne bir çift içerir `fieldUuid` (seçili Tarlaya bağlantı) ve `uuids` (atanmış oranlarla seçilen ZonesMaps'e bağlantı).
* Öznitelik `equationMaps` dışa aktarılacak EquationMaps dizisi içerir. Her bir nesne bir çift içerir `fieldUuid` (seçili Tarlaya bağlantı) ve `uuids` (seçilen EquationMaps'e bağlantı).
* Öznitelik `archiveName` oluşturulan zip arşivinin adını tutar.
* Öznitelik `filePostfix` dışa aktarılan dosyalara ve arşive özel son eklerin eklenmesine izin verir.

{% code overflow="wrap" lineNumbers="true" %}

```graphql
mutation exportIsoXml {
  exportIsoXml(
    input: {
      applicationMaps:[
        {
          fieldUuid:"<placeholder_field_uuid>" 
          uuids:[
            "<placeholder_zones_map_1_uuid>",
            "<placeholder_zones_map_2_uuid>"
          ]
        }
      ] 
      equationMaps: [
        {
          fieldUuid:"<placeholder_field_uuid>" 
          uuids:[
            "<placeholder_equation_map_1_uuid>"
          ]
        }
      ]
      filePostfix:"_GP" 
      archiveName:"CustomZonesMapsISOXML"
    }
  ) {
    archiveUrl
  }
}
```

{% endcode %}

### 2. Oluşturulan arşivi indirme

GraphQL sorgusunun yürütülmesinin ardından, bunu şununla indirmek mümkündür `curl` veya benzeri bir yaklaşımla.

{% code overflow="wrap" lineNumbers="true" %}

```bash
curl '<archiveUrl>' --compressed >> '<archiveUrl>'
```

{% endcode %}

{% hint style="success" %}
ISOXML içeren arşiv şunlardan oluşur: <mark style="color:varsayılan;background-color:yellow;">GridTip1, GridTip2 ve Vektör</mark> temsilleri.
{% endhint %}

<figure><img src="/files/c8d2399af5b02b3c6d709a04ab29a49da086ad9f" alt="" width="167"><figcaption></figcaption></figure>


---

# 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/tr/api-dokumanlari/geopard-api-isteklerine-genel-bakis/89.-mutation-zonesmapi-sikistirilmis-isoxml-olarak-disa-aktar.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.
