# Geographic dissolve

The Geographic dissolve step allows you to aggregate or merge geographical entities into larger units. It's particularly useful for simplifying complex geographical data or creating higher-level geographical representations, such as grouping countries into continents.

### Step parameters

* `Group rows by...`: The column(s) by which data to dissolve should be grouped
* `And aggregate...`: Optional. The column(s) you wish to aggregate in addition to the column containing geo data. See [`aggregate`](https://weaverbird.toucantoco.dev/docs/aggregate/) step for details on the format.

### Example

**Input**

<figure><img src="/files/ZeSMLVieQjR0s3poOPTp" alt=""><figcaption><p>Geo - dissolve input</p></figcaption></figure>

**Configuration**

```json
{
    "groups": ["name"],
    "include_nulls": false,
    "aggregations": [
        {
            "aggfunction": "distinct",
            "columns": ["coffee shop"],
        }
    ]
}
```

**Output**

<figure><img src="/files/gxsYeB6ICWe699cwpEzd" alt=""><figcaption><p>Geo - dissolve input</p></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-v3.toucantoco.com/data-management-in-datahub/datasets-in-toucan/preparing-data/overview-of-youprep-tm/geo/geographic-dissolve.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.
