CSV Tools

Sample KMZ File

A downloadable sample KMZ file — a zipped KML archive — containing 15 real US landmark locations as Placemarks with names, descriptions, and elevations. Use it to test KMZ extraction, Google Earth imports, or the converters on this site.

Geo KMZ Binary format

sample-locations.kmz

Data Preview

15 rows × 5 columns
1namedescriptionlatitudelongitudeelevation
2Mount RainierGlaciated stratovolcano in Washington46.8523-121.76034392
3Half DomeGranite dome above Yosemite Valley37.7459-119.53322694
4Grand Canyon South RimOverlook near Grand Canyon Village36.0544-112.14012093
5Old FaithfulPredictable geyser in Yellowstone44.4605-110.82812240
6DenaliHighest peak in North America63.0692-151.0076190
7Angels LandingRidge viewpoint in Zion Canyon37.269-112.94691765
8Longs PeakFourteener in Rocky Mountain National Park40.2549-105.6164346
9Mauna KeaDormant volcano on the island of Hawaii19.8206-155.46814207
10Crater LakeDeepest lake in the United States42.9446-122.1091883
11Mount WhitneyHighest summit in the contiguous United States36.5785-118.29234421
12Badwater BasinLowest point in North America, Death Valley36.2461-116.8172-86
13Great Sand DunesTallest dunes in North America37.7916-105.59432590
14Cadillac MountainGranite summit in Acadia National Park44.3528-68.2247466
15Mount MitchellHighest peak east of the Mississippi35.7648-82.26522037
16Guadalupe PeakHighest point in Texas31.8914-104.86072667

Schema

Field Type Description
name string Landmark name, from each Placemark's name element in the archived KML
description string One-line description of the landmark, from the description element
latitude number WGS84 latitude in decimal degrees (second value in the coordinates tuple)
longitude number WGS84 longitude in decimal degrees (first value in the coordinates tuple)
elevation number Altitude in meters (third value in the coordinates tuple); negative for Badwater Basin

About the KMZ Format

KMZ is the compressed sibling of KML: a standard ZIP archive whose primary entry is a KML document, conventionally named doc.kml. Google Earth reads and writes KMZ by default because XML compresses well and a single archive can also bundle custom icons, overlay images, and models next to the markup. This sample contains exactly one entry — doc.kml — holding the same 15 US landmark <Placemark> elements as the KML sample, each with a <name>, <description>, and a <Point> coordinate tuple in longitude,latitude,altitude order.

Because the payload is KML, field survival is identical: names, descriptions, and full 3D coordinates all make it through, including Badwater Basin’s negative altitude of −86 m. The compression layer changes the container, not the content.

How to open it

  • Google Earth (web or desktop) — KMZ is its native distribution format; just drag the file in
  • Any unzip tool — rename to .zip (or don’t; unzip doesn’t care) and extract doc.kml
  • QGIS — opens KMZ directly via GDAL’s LIBKML driver
  • Programmatically — read it with any ZIP library, then parse the first .kml entry as XML

Things to test with it

KMZ is the simplest binary format in this set, which makes it a good first target for archive-handling code: verify you locate the KML entry by extension rather than assuming a fixed name, since not every producer uses doc.kml.

The same 15 locations are also available as GeoJSON, GPX, and a Shapefile, so you can compare formats over identical data. To pull the Placemarks out as rows, use the KMZ to CSV converter; to build a compressed archive from a spreadsheet, use CSV to KMZ.

FAQ

4 questions
Is anything uploaded when I download or preview this file?
No. The sample is a static file served directly from this site, and the converters here run entirely in your browser — unzipping included. Nothing is uploaded or processed on a server.
How is KMZ related to KML?
A KMZ file is a standard ZIP archive whose main entry is a KML document, conventionally named doc.kml. This sample contains exactly that one entry — the same 15 Placemarks as the KML sample, just compressed. Rename it to .zip and any archive tool will open it.
Which fields does KMZ preserve?
The same fields as KML, since the payload is a KML document — name, description, and full longitude/latitude/altitude coordinates for all 15 landmarks. Compression changes the container, not the content.
Why use KMZ instead of plain KML?
Two reasons — size and bundling. XML compresses well (this sample shrinks from 3.2 KB to about 1 KB), and a KMZ can carry supporting files like custom icons and overlay images alongside the KML in one distributable archive.

Work With KMZ Files 5 tools