# 89. ミューテーション: ZonesMap を ZIP 圧縮 ISOXML としてエクスポート

選択した "ZonesMap" を ISOXML として含む zip アーカイブを生成します。

{% hint style="danger" %}
レート付き ZonesMap を ISOXML に変換するには、次の条件を満たす必要があります：(1) ZonesMap に少なくとも 1 つの製品が選択された単位で含まれていること、(2) ZonesMap の種類が次のいずれかとして指定されていること：播種（Seeding）、散布（Spraying）、施肥（Fertilizing）、または灌漑（Irrigation）。
{% endhint %}

{% hint style="info" %}
選択した圃場に対して複数の ISOXML アプリケーションマップをエクスポートできます（以下を使用）。 `applicationMaps` >> `uuids` および／または `equationMaps` >> `uuids`.
{% endhint %}

### 1. 準備

* 属性 `applicationMaps` エクスポートされるレートオブジェクトを含む ZonesMaps（VectorAnalysisMaps）の配列が含まれます。各オブジェクトには一対の `fieldUuid` （選択されたFieldへの参照）と `uuids` （割り当てられたレートを持つ選択された ZonesMaps への連結）。
* 属性 `equationMaps` エクスポートされる EquationMaps の配列が含まれます。各オブジェクトには一対の `fieldUuid` （選択されたFieldへの参照）と `uuids` （選択された EquationMaps への連結）。
* 属性 `archiveName` は生成されるzipアーカイブの名前を保持します。
* 属性 `filePostfix` はエクスポートされるファイルおよびアーカイブにカスタムの接尾辞を追加することを可能にします。

{% 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. 生成されたアーカイブをダウンロードする

GraphQLクエリの実行後、次を使用してダウンロードできます： `curl` または同様の方法。

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

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

{% endcode %}

{% hint style="success" %}
ISOXML を含むアーカイブは次で構成されます： <mark style="color:デフォルト;background-color:yellow;">GridType1、GridType2、およびベクター</mark> 表現。
{% endhint %}

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


---

# 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/jpn/apidokyumento/geopard-apirikuesuto/89-mytshon-zonesmap-wo-zip-isoxml-toshiteekusupto.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.
