How to Make Laser-Cut Topographic Map Art

Laser-cut topographic map art has a quality that other wall decor doesn’t: it lets you feel a landscape. Not through a photograph, but through its actual shape — the ridges, valleys, and ridgelines pressed into layered wood, backlit or standing alone on a shelf. The effect is tactile, dimensional, and deeply personal. If you''ve ever stood on a ridge and understood a landscape in a new way, this is the art that tries to capture that.

Making one at home is more accessible than most people assume. A laser cutter, elevation data, and a stack of Baltic birch are the core materials. Everything else is refinement. Here''s how the process actually works, with the specific numbers and details that will actually let you finish a piece rather than abandoning it halfway through.

What Is Topographic Map Art?

Topographic maps show the shape of the land through contour lines — each line represents a specific elevation above sea level. When you stack a series of those contours as physical layers in wood, the elevation profile becomes something you can see and touch. The contour interval (the vertical distance between each line) determines how smooth or detailed the result looks. Tighter intervals give more resolution but require more layers and more cutting time.

The aesthetic works for any landscape: mountains, river canyons, coastlines, volcanic calderas. The Columbia River Gorge — carved 2,000 feet deep by the Missoula Floods, with basalt walls rising dramatically from the river floor — produces some of the most visually striking topo art because the vertical relief is extreme and the layered topography is immediately readable. A topo map of the Gorge reads almost like a physical sculpture even in two dimensions.

For a maker interested in craft, the appeal is the same as working with any material: the gap between what you imagine and what you produce narrows with practice. The first cut is always rough. By the fifth, you know exactly how your machine behaves at the edges of the design — where it chars, where it burns back, how much it pulls on tight-radius curves.

Tools and Materials

The Laser Cutter

A diode laser like the xTool S1 is the practical entry point for home makers. It cuts 3mm and 6mm Baltic birch cleanly at reasonable speeds, fits on a home workbench, and connects to a laptop via LightBurn or the tool''s own software. The working area (609 × 385mm on the S1) handles most map sections without requiring assembly seams. The 20W diode is sufficient for 3mm birch; for 6mm you''ll want the 40W model or a higher-power variant.

Higher-power setups — CO₂ lasers in the 60W+ range — handle thicker material and faster cuts but represent a different investment level. A home-grade diode laser will produce excellent results for the vast majority of topo art projects; reserve the industrial machine for when you''re doing production runs or cutting 9mm+ material.

Materials

Baltic birch plywood is the standard. It cuts cleanly with minimal char, has consistent cross-grain ply structure that produces clean edge lines when stacked, and is available in 3mm and 6mm thicknesses from most woodworking suppliers. Avoid void-free cabinet-grade birch — it works but costs more for no benefit in stacking applications. You want the plies to be visible in cross-section; that''s part of the aesthetic.

For a 12-layer map using 3mm birch, you need approximately one 12"×12" sheet per layer — so roughly one full 4''×8'' sheet for a medium-sized wall piece. Buy two sheets to account for bow and waste. When selecting sheets, hold them up to a light and look for gaps between plies — any visible gaps mean that layer will delaminate or absorb finish unevenly.

Finishing Supplies

You need wood filler or epoxy for filling gaps between layers (any layer misalignment will be visible under finish), sandpaper in the 220–400 grit range, and a finish — either polyurethane, tung oil, or water-based wood stain. The finish choice matters: oil-based polyurethane deepens the wood color and looks more like a geological cross-section, with amber tones that mimic aged pine resin. Water-based is cleaner and lower odor, with a more neutral result that reads as white oak rather than honey pine. Gel stain applied before assembly seals the layers and adds visual depth without obscuring the ply lines.

The Process: Step by Step

1. Define Your Map Area

The first decision is the geographic extent and resolution. What landscape are you making? How wide is the area? What vertical range do you want to cover? The answers determine the number of layers, the contour interval, and ultimately the cutting time.

For the Columbia River Gorge specifically, an area covering roughly Mount Hood to Bonneville Dam — about 30 miles — with elevations from the river (≈30ft) to the rim (≈1,500–2,000ft) produces a compelling stack: roughly 15–20 layers at 100-foot contour intervals using 3mm birch. That''s a 3–4" tall finished piece, substantial enough for a wall. For smaller areas with more dramatic relief, you can use a tighter contour interval — 50 feet — to capture more detail in the same vertical span.

For elevation data, the USGS 3DEP DEM dataset covers the entire US at 1/3 arc-second resolution (roughly 10 meters). It''s free, accurate, and directly usable in most contour-generation tools. The GorgeTales topographic map tool fetches USGS elevation data directly and generates contour SVGs you can download, which skips the data-processing step entirely for this workflow — you''re working from cut-ready layers rather than raw DEM files.

2. Generate Contour Lines

Elevation data comes as a raster — a grid of elevation values. Contour lines are the level curves extracted from that grid at specific intervals. In practice, this means running a contouring algorithm over the DEM data.

If you''re doing this in code, the standard approach is d3-contour (used in the browser-side topo tool) or GDAL''s contour function for larger datasets. The key parameter is the contour interval: 50 feet, 100 feet, 200 feet. Tighter intervals = more layers = more detail but more cutting time. For a first project, 100-foot intervals are the right balance: visible in the stacked result without requiring a full day of cutting.

Each contour becomes a closed or open polyline at a specific elevation. These are the paths your laser will cut. The output format you want is SVG — most laser software (LightBurn, Laserbox) reads SVG natively.

3. Build Cut-Ready SVG Layers

Contour lines from the raw data need translation into laser-ready SVG. Every contour is a path. Each path needs to be assigned to a layer corresponding to the elevation band it represents. In practice:

  • Elevation 0–100 feet → Layer 1 (bottom)
  • Elevation 100–200 feet → Layer 2
  • Elevation 200–300 feet → Layer 3
  • And so on up through the full elevation range

Each layer''s SVG contains all the contour polylines for that elevation band, converted from coordinates to SVG paths. The SVG should be sized to your material dimensions with a margin — cutting a contour that sits at the very edge of the sheet invites tearout when the laser hits the edge. Keep a 5–10mm margin all around.

Add registration marks to each layer — small crosses or corner diamonds — in the same absolute position on every SVG. These are your alignment guides when stacking. Even a 0.5mm drift per layer compounds across a 20-layer stack into visible misalignment. Draw them in LightBurn as separate objects on a dedicated layer so you can toggle them on and off.

4. Cut the Layers

Load a sheet of Baltic birch, position the SVG for the bottom layer, and run the cut. The key settings for 3mm birch on a diode laser:

  • Vector cut: roughly 60% power, 10–12mm/s speed — test cuts on a spare piece first. Kerf (the width of material removed by the beam) is around 0.1–0.2mm and needs to be accounted for in tight-fitting designs. On the xTool S1 at 20W, start with 60% power / 12mm/s and adjust based on your first test cut.
  • Raster engrave: 30% power, 300–400mm/min for engrave-quality shading if you''re adding a grayscale topographic rendering layer as the base layer of the stack.

Cut all layers before stacking. Keep the sheets organized — label them with the elevation band on a piece of painter''s tape stuck to the back of each cut piece. Cutting 20 layers takes time. Budget 2–4 hours for the cutting phase on a full map, not counting setup and testing time. Do your test cuts before you load any material you care about.

5. Stack and Glue

Press the layers together with the lowest elevation at the bottom. The stacking method matters as much as the cutting. A few approaches, with their actual tradeoffs:

CA glue (super glue) is fast and strong. Apply a thin coat to each layer''s surface, stack, press with your hands, and hold for 10–15 seconds. The bond sets immediately but reaches full strength in a few minutes. The risk is squeeze-out — CA glue that bleeds between layers creates visible lines on the edges. Apply thin coats, keep a cotton swab or hard-card scraper ready to wipe excess immediately, and work over a protected surface. Accelerator spray can speed set time but also increases the chance of bond line brittleness in a humidity-controlled environment — worth testing before using it on a finished piece.

Wood glue (PVA) takes longer to set but produces cleaner edges. Clamp the stack with bar clamps or a press while the glue dries (30–60 minutes for initial set, overnight for full cure). For a 20-layer stack, this means keeping it clamped for a couple of hours. Less convenient than CA but the cleanest result — and PVA is reversible with heat and moisture if you make a mistake.

Double-sided tape works for prototyping — you can reposition layers if something goes wrong. Not suitable for final pieces because the bond isn''t structural and layers will eventually separate in varying humidity.

Regardless of adhesive, use the registration marks to align each layer before pressing. Drop the layer onto the stack, align the corner marks, apply pressure, and move to the next. Speed matters less than alignment. Work on a flat surface and don''t rush the alignment phase — once the glue is down, you can''t fix a drifted layer without taking the whole stack apart.

6. Finish

You can finish before or after assembly. Finishing before stacking means you coat each layer individually and stack them once the finish is fully cured. The advantage is that you can sand and coat each layer perfectly flat. The disadvantage is that finish build-up between layers can affect fit — especially if you''re using tight-tolerance stacking where the layers are designed to nest rather than just stack.

Finishing after assembly is simpler for the stacking phase. Sand the edges once the stack is complete (220-grit, then 400-grit), apply your finish to the entire assembled piece, and sand lightly between coats with 400-grit. Two to three coats of polyurethane, lightly sanded between each, produces a clean sealed surface that looks like a geological cross-section. Let each coat cure fully — in high humidity or low temperature, that can mean 24 hours between coats rather than the 4-6 hours you might expect in ideal conditions.

Beginner Tips That Actually Help

Start smaller than you think

A 5×5" test piece with 8–10 layers teaches you everything about the workflow — cutting, gluing, finishing — at a fraction of the time cost of a 12"×20" wall piece. Make your mistakes small before you commit a full sheet of Baltic birch. This is the single highest-value piece of advice in this guide.

Test cuts on every sheet

Laser power varies by material batch, ambient temperature, and mirror cleanliness. Cut a small square with a hole inside it on every sheet before cutting the actual contours. If the kerf or char doesn''t match your design assumptions, recalibrate before cutting the expensive part. A 30-second test is always worth it.

Know your contour interval math

Each layer is a discrete elevation band, not a continuous surface. A 100-foot contour interval on 3mm birch means 1" of vertical real estate per 3mm layer. That''s roughly 3 layers per inch. A 20-layer piece is about 6.5" tall. Size your design accordingly — and know that a piece which looks compact in your design phase will be substantially taller once stacked.

Account for kerf when designing

Your laser removes material along the cut line. If two contours are close together in elevation, the combined kerf eats into the narrow bands between them. Design with a minimum band width of 1.5x the kerf for clean, visible separation. If your kerf is 0.15mm, your minimum band is 0.225mm — which is tight on a home diode laser. Err toward wider contour intervals if you''re getting narrow band artifacts.

Registration marks are not optional

Your laser can drift between layers — thermal drift as the machine warms up, or mechanical creep in lower-quality rails. A few tenths of a millimeter per layer doesn''t sound like much, but across 20 layers it becomes a stair-step artifact on the edges. Crosshair registration marks let you visually verify alignment between every layer. Build them into every SVG you cut.

Control ambient humidity

Baltic birch is a stack of veneer plies bonded with urea-formaldehyde glue. In high humidity (above 65%), the plies can delaminate — especially during a long cut where the laser heat drives moisture into the surface and the thermal shock causes the bond to fail. Store material in a climate-controlled space. If you''re in a humid climate, acclimate the birch for 24 hours before cutting and avoid cutting on humid days when possible.

Design for your working area

If your laser has a 609×385mm bed and your map is 800×500mm in raw coordinates, you need to split the design across two sheets with a seam. Plan for that in advance — put the seam in a low-detail area (water, low terrain) where it won''t be visually disruptive. The GorgeTales topo tool lets you preview how a design will fit within specific bed dimensions before you cut.

The Gorge as a Subject

If you''re making a topo art piece from the Pacific Northwest, the Columbia River Gorge is an ideal subject. The landscape has visual drama built in — the vertical relief from river to rim, the basalt column formations that show up as angular geometry in the contours, the way the gorge funnels wind and weather through a 70-mile corridor. A topographic rendering of the Gorge reads as a sculpture even in a simple two-tone treatment.

The Gorge also has strong maker community overlap — the DIY and craft scene in Portland and the Columbia Gorge is active, and laser-cut topo art has become a recognized craft form in the region. Craft fair vendors in Hood River and Trout Lake consistently move topo map pieces, and a topo map of the Gorge is a reliable seller at shows in the area. The geography is familiar to local buyers and immediately legible as a design, which removes the interpretive work buyers normally do when looking at unfamiliar landscapes.

For those wanting to learn the process, starting with a familiar landscape — one you can visit and photograph and understand in three dimensions — makes the abstraction from elevation data to layered wood feel more intuitive than starting with an unfamiliar region. You know where the ridgeline should be, what the steep section feels like, which direction the valley faces. That physical intuition translates directly into how you set contour intervals and where you draw the edges of the piece.

Getting Started

The hardest part of making topo map art is the first step: deciding what to make, downloading elevation data, and running the first contour generation. After that, the workflow is repetitive and predictable. Cut, stack, glue, finish, hang.

If you want to skip the data-processing and SVG-generation steps and get straight to cutting, the GorgeTales topographic map tool handles the elevation fetch and contour generation, and lets you download individual cut-ready SVG layers or a single combined file ready for LightBurn.

Whatever tool you use, the principle is the same: the best topo art pieces are made by people who understand both what the data says and what the material wants to do. Your laser will tell you things. Listen to the kerf. Watch the char. Stack a few test pieces before committing to your final design — and then build the piece you actually want on your wall, not the safe version you think you should make.

Like this story? Get more like it.

Trail updates, hidden waterfalls, and tour dates — no spam, just the Gorge.

See the Gorge with a guide who knows its stories.

Small groups of 8–12. Deep history. Day tours from $79, multi-day expeditions from $279. Running April through October.

View All Tours