> 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/pt-br/documentacao-da-api/visao-geral-das-solicitacoes-da-api-geopard/89.-mutacao-exportar-zonesmap-como-isoxml-compactado.md).

# 89. Mutação: exportar ZonesMap como ISOXML compactado

Gera um arquivo zip com o "ZonesMap" selecionado como ISOXML .

{% hint style="danger" %}
Para converter um ZonesMap com taxas em ISOXML, as seguintes condições devem ser atendidas: (1) o ZonesMap deve ter pelo menos um produto com unidades selecionadas, e (2) o tipo de ZonesMap deve ser especificado como um dos seguintes: Plantio, Pulverização, Adubação ou Irrigação.
{% endhint %}

{% hint style="info" %}
Vários mapas de Aplicação ISOXML podem ser exportados para o campo selecionado usando `applicationMaps` >> `uuids` e/ou `equationMaps` >> `uuids`.
{% endhint %}

### 1. Preparação

* O atributo `applicationMaps` contém um array de ZonesMaps (VectorAnalysisMaps) com objetos de taxas a serem exportados. Cada um desses objetos inclui um par de `fieldUuid` (vinculação ao Field selecionado) e `uuids` (vinculação aos ZonesMaps selecionados com taxas atribuídas).
* O atributo `equationMaps` contém um array de EquationMaps a serem exportados. Cada um desses objetos inclui um par de `fieldUuid` (vinculação ao Field selecionado) e `uuids` (vinculação aos EquationMaps selecionados).
* O atributo `archiveName` contém o nome do arquivo zip gerado.
* O atributo `filePostfix` permite que sufixos personalizados sejam adicionados aos arquivos exportados e ao arquivo zip.

{% 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. Baixe o arquivo gerado

Após a execução da consulta GraphQL, é possível baixá-lo usando `curl` ou uma abordagem similar.

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

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

{% endcode %}

{% hint style="success" %}
O arquivo com ISOXML consiste em <mark style="color:padrão;background-color:yellow;">representações GridType1, GridType2 e Vector</mark> .
{% endhint %}

<figure><img src="/files/f34033a03a455b2d9dd70e1fdb60f876f81be27a" 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/pt-br/documentacao-da-api/visao-geral-das-solicitacoes-da-api-geopard/89.-mutacao-exportar-zonesmap-como-isoxml-compactado.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.
