Agent Skill · Carto

carto-import-export-data

Import geospatial files into the data warehouse via CARTO, export results back out, and prepare tilesets for fast map rendering.

Provider: Carto Path in repo: skills/carto-import-export-data/SKILL.md

Skill body

carto-import-export-data

Move data into the warehouse from local files / URLs (carto import), pull data out (carto activity export for usage data; warehouse-native unloads for everything else), and prepare tilesets for performant map rendering of large geospatial datasets.

When to use this skill

If the user just wants to query a file already in the warehouse, jump to carto-query-datawarehouse. If they want to discover what’s already there, carto-explore-datawarehouse.

Quick reference

# Import a local file
carto import --file ./data.csv \
  --connection carto_dw \
  --destination project.dataset.table

# Import from a URL
carto import --url https://example.com/data.geojson \
  --connection carto_dw \
  --destination my_project.demo.regions

# Async (return immediately, poll separately)
carto import --file ./big.parquet \
  --connection carto_dw \
  --destination my_project.demo.huge \
  --async

# Overwrite existing table
carto import --file ./data.csv \
  --connection carto_dw \
  --destination my_project.demo.t \
  --overwrite

What’s in this skill

Topic Reference
carto import — flags, formats, size limits, async references/imports.md
Tileset preparation for large maps references/tilesets.md
Exporting data: warehouse-native unloads vs activity export references/exports.md

Always-on guidance

Skill frontmatter

license: MIT