> 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/hu/api-dokumentacio/geopard-api-keresek-attekintese/89.-modositas-zonesmap-exportalasa-tomoritett-isoxml-kent.md).

# 89. Módosítás: ZonesMap exportálása tömörített ISOXML-ként

Készítsen zip archívumot a kiválasztott "ZonesMap" ISOXML formátumában.

{% hint style="danger" %}
Ahhoz, hogy egy ZonesMap-et arányokkal ISOXML-be konvertáljunk, a következő feltételeknek kell teljesülniük: (1) a ZonesMap-nek legalább egy terméke kell legyen kiválasztott egységekkel, és (2) a ZonesMap típusát az alábbiak egyikeként kell megadni: Vetés, Permetezés, Tápanyag-utánpótlás vagy Öntözés.
{% endhint %}

{% hint style="info" %}
Több ISOXML alkalmazási térkép is exportálható a kiválasztott parcellához a következőkkel: `applicationMaps` >> `uuids` és/vagy `equationMaps` >> `uuids`.
{% endhint %}

### 1. Előkészítés

* A attributum `applicationMaps` tartalmaz egy tömböt ZonesMaps-ből (VectorAnalysisMaps), amelyek exportálandó arány-objektumokat tartalmaznak. Minden ilyen objektum párost tartalmaz `fieldUuid` (kapcsolat a kiválasztott táblához) és `uuids` (kapcsolat a kiválasztott, hozzárendelt arányokkal rendelkező ZonesMap-ekhez).
* A attributum `equationMaps` tartalmaz egy tömböt exportálandó EquationMaps-ekből. Minden ilyen objektum párost tartalmaz `fieldUuid` (kapcsolat a kiválasztott táblához) és `uuids` (kapcsolat a kiválasztott EquationMap-ekhez).
* A attributum `archiveName` tartalmazza a generált zip archívum nevét.
* A attributum `filePostfix` lehetővé teszi egyedi postfixek hozzáadását az exportált fájlokhoz és az archívumhoz.

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

```graphql
mutation exportIsoXml {
  exportIsoXml(
    bemenet: {
      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. Töltse le a létrehozott archívumot

A GraphQL lekérdezés végrehajtása után lehetséges letölteni azt a használatával `curl` vagy hasonló módszerrel.

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

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

{% endcode %}

{% hint style="success" %}
Az ISOXML archívum a következőkből áll: <mark style="color:alapértelmezett;background-color:yellow;">GridType1, GridType2 és Vector</mark> ábrázolásokból.
{% endhint %}

<figure><img src="/files/f432999764edb17b2d5d9f315bc71d0940e7baaa" 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/hu/api-dokumentacio/geopard-api-keresek-attekintese/89.-modositas-zonesmap-exportalasa-tomoritett-isoxml-kent.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.
