Skip to content
Novus Examples
dbf374 B

Shapefile DBF — Accented Attributes in UTF-8

The same four accented attribute rows written in UTF-8. Both files are exactly the same size because DBF fields are fixed-width in bytes, not characters — so the UTF-8 table fits fewer characters per field, and a reader that guesses the encoding produces mojibake rather than an obvious failure.

Preview — schema + first 4 rowsdbf
CODENAMENOTE
KBKestrel BayCafé by the ferry ramp
MRMarramDune path, naïve grading
HWHollowayÅngström Lane junction
NPNinepinSeñal de peligro at the ford
Stored on disk as UTF-8; the sidecar declares it.

Specifications

Format
dBase III attribute table
Crs
WGS 84 (EPSG:4326)
Byte Order
mixed — big-endian headers, little-endian records
Sidecar Set
.shp/.shx/.dbf/.prj/.cpg
Records
4
Fields
3
Encoding
utf-8
Language Driver Id
0x00
Declared By
attributes-utf8.cpg
Note
multi-byte UTF-8 with no language driver byte, so the .cpg is the only declaration

Testing contract

Expected to pass
Scenario
Read the table honouring the UTF-8 declaration, then read it again assuming the other encoding.
Expected result
The correct encoding returns Café, naïve, Ångström and Señal intact; the wrong one produces replacement characters or splits a multi-byte sequence across the field boundary.

What is a .dbf file?

A dBASE table (.dbf) is a legacy binary tabular format with a fixed-width header describing columns (name, type, length) followed by fixed-length records. It persists today as the attribute table of GIS shapefiles and in legacy database exchange.

How to use this file

Use an example .dbf file to test dBASE/xBase readers, shapefile attribute parsing, and DBF-to-CSV conversion.

How to use this file for testing

“Shapefile DBF — Accented Attributes in UTF-8” is a deterministic Novus Examples fixture for Geospatial, Encoding detection, Data import. GeoJSON, GPX, and KML files with points, lines, polygons, and tracks — for testing map tools, route parsers, and geo importers.

Documented properties for this file: 4 records · 3 fields · utf-8. Compare results against paired or grouped companions on this page when present (clean↔damaged, searchable↔scanned, or format twins) so scores stay reproducible across runs.

Download the file once, keep the path stable in CI or local scripts, and treat the spec table as the contract: dimensions, seeds, field lists, and roles are intentional. Corrupt or invalid samples are labelled as such — expect parsers to fail loudly rather than silently accept them.

Geospatial fixtures publish one invented territory across formats, with the coordinate reference system and feature counts documented in specs. Convert or reproject and diff against the twin in the same group; edge-case geometries state exactly which assumption they are built to break.

Generated by generation/geospatial.py. Free for any use, no attribution required — license.