Para Google Earth, usa 6 decimales (precisión de ~0.11 metros). Más decimales no mejoran la vista y aumentan el peso. Puedes redondear en Excel con =REDONDEAR(A1;6).
kml = simplekml.Kml()
for idx, row in df.iterrows(): pnt = kml.newpoint(name=row.get('Name', f'Point idx')) pnt.coords = [(row['Longitude'], row['Latitude'])] pnt.description = row.get('Description', '') convertir excel a kmz new
Converting an Excel file (.xlsx/.xls) to KMZ (a compressed version of KML used by Google Earth) usually involves three steps: preparing the data, converting the format, and verifying the output. Para Google Earth, usa 6 decimales (precisión de ~0
Here are the three best methods ranging from easiest to most professional. kml = simplekml
Best for large datasets or custom styling.