Convertir Excel A Kmz New Better May 2026

Here is useful content based on your search intent "convertir excel a kmz new". This guide covers the most current and efficient methods to transform spreadsheet data into a Google Earth-compatible file.


3. Crear carpetas automáticas (estilo KMZ)

Si tu Excel tiene una columna "Categoría", los métodos new (como el script Python de arriba) pueden crear subcarpetas dentro del KMZ para organizar los puntos.


Option A: Using QGIS

  1. Download and Install QGIS: If you haven’t already, download and install QGIS from https://qgis.org/en/site/forusers/download.html.

  2. Open QGIS: Launch QGIS.

  3. Import Your CSV File:

    • Go to Layer > Add Layer > Add Delimited Text Layer.
    • Navigate to your CSV file, select it, and click “Open”.
    • In the “Create a layer from a delimited text file” window, ensure that “X field” (longitude) and “Y field” (latitude) are correctly identified. You might need to specify the coordinate reference system (CRS). A common one for Google Earth is EPSG:4326 (WGS 84).
  4. Save as KMZ:

    • Right-click on your layer in the Layers panel and select Save As.
    • In the “Save Vector Layer” window, for “Format”, select “Keyhole Markup Language (KML)”.
    • Choose a location to save your file, name it, and click “Save”.
    • Since KMZ is a zipped version of KML, you can easily convert your KML to KMZ by zipping the KML file.

Load Excel

df = pd.read_excel('your_file.xlsx')

Método 1: Convertir Excel a KMZ New con Herramientas Online (Sin Instalar)

Para usuarios que buscan rapidez, las plataformas web han renovado sus motores en 2024-2025. Recomendamos estas 3:

2. Agregar ventanas emergentes HTML

En la columna "Descripción", usa:

<b>Punto: </b> [@Nombre] <br> <img src="[@Foto_URL]" width="200">

Al convertir, estas etiquetas HTML se renderizarán dentro del globo de Google Earth. convertir excel a kmz new

Errores Comunes al Convertir Excel a KMZ (Y Soluciones "New")

| Problema | Causa Antigua | Solución New (2025) | | :--- | :--- | :--- | | El KMZ muestra puntos en África | Confundiste Lat con Lon. | Usa la herramienta Coordinate Cleaner online antes de convertir. | | Caracteres extraños (ñ, etc.) | Codificación ANSI vs UTF-8. | Guarda tu Excel como CSV UTF-8 (con BOM), luego conviértelo. | | No aparecen los nombres | La columna de nombre tenía espacios al inicio. | Aplica =LIMPIAR(A1) en Excel para eliminar espacios invisibles. | | Google Earth no abre el KMZ | El KMZ está corrupto por cierres de etiqueta incorrectos. | Usa el validador KML de Google: https://kmlvalidator.com (nuevo servicio oficial). |


1. Unificar coordenadas

Si tienes grados minutos segundos (GMS) y grados decimales en el mismo archivo:

=SI(ESNUMERO(B2); B2; CONVERTIR_GMS_A_DECIMAL(B2))

(Usa el complemento "Geográfico" de Excel) Here is useful content based on your search

Save as KMZ

kml.savekmz('output.kmz')

Install required packages:

pip install pandas openpyxl simplekml