Skip to content
Novus Examples

Equivalent data across serialization formats

Known records represented as JSON, MessagePack, CBOR, BSON, Protobuf, Arrow, and related formats for testing round trips, schema handling, type preservation, and binary decoders.

143 of 143 files
Preview of MessagePack — Binary JSON
msgpack
619 B
Actual file preview for MessagePack — Binary JSON

MessagePack — Binary JSON

The records as MessagePack — a compact binary serialization that maps onto the JSON data model, common in caches and RPC. For testing MessagePack codecs and JSON↔MessagePack conversion.

File
MSGPACK · Binary · 5 rows
Use case
Conversion testingSerialization testing· Conversion set
Preview of Protobuf — Encoded Message
pb
45 B
Actual file preview for Protobuf — Encoded Message

Protobuf — Encoded Message

A single protobuf User message in binary wire format (varint + length-delimited fields) — the serialized counterpart to the user.proto schema. For testing protobuf decoders without the generated code.

File
PB · Binary · 5 rows
Preview of Convert v2 ORC Employee Table Source
orc
1.5 KB
Actual file preview for Convert v2 ORC Employee Table Source

Convert v2 ORC Employee Table Source

Binary orc source for the five-row P8 employee conversion table, preserving ids, names, departments, booleans, and scores. Stable P8 artifact p8-convert-orc-source.

File
ORC · P8 Convert · 5 rows
Use case
Conversion testingData engineering+1· Conversion set
Preview of Convert v2 ORC Expected JSON
json
977 B
Actual file preview for Convert v2 ORC Expected JSON

Convert v2 ORC Expected JSON

Json semantic reference for the five-row P8 employee conversion table, preserving ids, names, departments, booleans, and scores. Stable P8 artifact p8-convert-orc-json.

File
JSON · P8 Convert · 5 rows
Use case
Conversion testingData engineering+1· Conversion set
Preview of Convert v2 ORC Expected CSV
csv
434 B
Actual file preview for Convert v2 ORC Expected CSV

Convert v2 ORC Expected CSV

Csv semantic reference for the five-row P8 employee conversion table, preserving ids, names, departments, booleans, and scores. Stable P8 artifact p8-convert-orc-csv.

File
CSV · P8 Convert · 5 rows
Use case
Conversion testingData engineering+1· Conversion set
Preview of gettext MO with Plural-Forms — Polish (compiled)
mo
943 B
Actual file preview for gettext MO with Plural-Forms — Polish (compiled)

gettext MO with Plural-Forms — Polish (compiled)

The compiled Polish MO twin. Plural entries are encoded the way msgfmt does it — the original is 'singular\\0plural' and the translation is the 3 forms joined by NUL — and the header entry carries the Plural-Forms expression, so ngettext resolves without the .po file present.

File
MO · Gettext · Polish
Preview of gettext MO with Plural-Forms — Russian (compiled)
mo
1.1 KB
Actual file preview for gettext MO with Plural-Forms — Russian (compiled)

gettext MO with Plural-Forms — Russian (compiled)

The compiled Russian MO twin. Plural entries are encoded the way msgfmt does it — the original is 'singular\\0plural' and the translation is the 3 forms joined by NUL — and the header entry carries the Plural-Forms expression, so ngettext resolves without the .po file present.

File
MO · Gettext · Russian
Preview of gettext MO with Plural-Forms — Arabic (compiled)
mo
1.3 KB
Actual file preview for gettext MO with Plural-Forms — Arabic (compiled)

gettext MO with Plural-Forms — Arabic (compiled)

The compiled Arabic MO twin. Plural entries are encoded the way msgfmt does it — the original is 'singular\\0plural' and the translation is the 6 forms joined by NUL — and the header entry carries the Plural-Forms expression, so ngettext resolves without the .po file present.

File
MO · Gettext · Arabic
Preview of gettext MO with Plural-Forms — Welsh (compiled)
mo
1.1 KB
Actual file preview for gettext MO with Plural-Forms — Welsh (compiled)

gettext MO with Plural-Forms — Welsh (compiled)

The compiled Welsh MO twin. Plural entries are encoded the way msgfmt does it — the original is 'singular\\0plural' and the translation is the 6 forms joined by NUL — and the header entry carries the Plural-Forms expression, so ngettext resolves without the .po file present.

File
MO · Gettext · Welsh
Preview of OTLP Trace — AnyValue Attribute Type Matrix (json)
json
6.8 KB
Actual file preview for OTLP Trace — AnyValue Attribute Type Matrix (json)

OTLP Trace — AnyValue Attribute Type Matrix (json)

One span carrying every OTLP AnyValue kind — string (plain, Unicode, multi-line, empty), int64 encoded as a JSON string, double, bool, array, nested kvlist and base64 bytes. Includes an integer above 2^53 to catch decoders that route int64 through a JavaScript number.

File
JSON · Traces
Preview of Prometheus Exposition — NaN, Infinities and Float Limits (prom)
prom
701 B
Actual file preview for Prometheus Exposition — NaN, Infinities and Float Limits (prom)

Prometheus Exposition — NaN, Infinities and Float Limits (prom)

Every numeric form the exposition format permits: NaN, +Inf and -Inf, negative zero, denormal and maximum doubles, and a uint64 counter beyond the exact range of a double. Parsers that route values through a JSON number or a 32-bit float fail on this file specifically.

File
PROM · Metrics
Use case
ObservabilityTime-series data+1· Conversion set
Preview of Kestrel Bay Territory — One WKT Geometry Per Line
wkt
997 B
Actual file preview for Kestrel Bay Territory — One WKT Geometry Per Line

Kestrel Bay Territory — One WKT Geometry Per Line

Every geometry in the territory as a bare WKT string, one per line and in master order. Attributes are deliberately absent so the file isolates geometry serialisation from attribute mapping.

File
WKT · Territory · 14 records
Use case
GeospatialConversion testing+1· Conversion set
Preview of Shapefile — Towns Geometry (.shp, 5 Point records)
shp
240 B
Actual file preview for Shapefile — Towns Geometry (.shp, 5 Point records)

Shapefile — Towns Geometry (.shp, 5 Point records)

The geometry half of a point shapefile: a 100-byte header carrying the shape type and bounding box, then five 20-byte Point records. The file is useless on its own — attributes live in the .dbf and the coordinate system in the .prj, which is the point of shipping the whole component set.

File
SHP · Shapefile · 5 records
Use case
GeospatialSerialization testing+1· Conversion set
Preview of Shapefile — Towns Index (.shx)
shx
140 B
Actual file preview for Shapefile — Towns Index (.shx)

Shapefile — Towns Index (.shx)

The index that lets a reader seek directly to record N of the .shp instead of walking the file. Its header duplicates the .shp header exactly, and a mismatch between the two is the most common way a hand-edited shapefile goes wrong.

File
SHX · Shapefile · 5 records
Use case
GeospatialSerialization testing+1· Conversion set
Preview of Shapefile — Towns Attributes (.dbf, dBase III)
dbf
377 B
Actual file preview for Shapefile — Towns Attributes (.dbf, dBase III)

Shapefile — Towns Attributes (.dbf, dBase III)

The attribute table as a dBase III file: fixed-width, space-padded, ASCII numerics. Field names are capped at ten characters and there is no type for dates-with-time or for nested values, which is why shapefile export loses so much of a modern schema.

File
DBF · Shapefile · 5 records
Use case
GeospatialData import+1· Conversion set
Preview of Shapefile — Roads Geometry (.shp, 3 PolyLine records)
shp
428 B
Actual file preview for Shapefile — Roads Geometry (.shp, 3 PolyLine records)

Shapefile — Roads Geometry (.shp, 3 PolyLine records)

Three single-part PolyLine records, each carrying its own bounding box, a part index and a run of little-endian coordinate doubles. PolyLine and Polygon share this layout, which is why the shape-type byte in the header is the only thing that distinguishes an open line from a closed ring.

File
SHP · Shapefile · 3 records
Use case
GeospatialSerialization testing+1· Conversion set
Preview of Shapefile — Roads Index (.shx)
shx
124 B
Actual file preview for Shapefile — Roads Index (.shx)

Shapefile — Roads Index (.shx)

Unlike the point index, these entries have different lengths because each PolyLine holds a different number of vertices. That makes it the useful case for testing seek logic — a reader that assumes a fixed stride reads the first record correctly and then garbage.

File
SHX · Shapefile · 3 records
Use case
GeospatialSerialization testing+1· Conversion set
Preview of Shapefile — Roads Attributes (.dbf with a decimal field)
dbf
309 B
Actual file preview for Shapefile — Roads Attributes (.dbf with a decimal field)

Shapefile — Roads Attributes (.dbf with a decimal field)

The road attribute table, including a numeric field declared with two decimal places. DBF stores numbers as right-justified ASCII, so the declared width and decimal count are the only thing that says 9.40 is not 940.

File
DBF · Shapefile · 3 records
Use case
GeospatialData import+1· Conversion set
Preview of Shapefile — Parcels Geometry (.shp, Polygon with a hole)
shp
592 B
Actual file preview for Shapefile — Parcels Geometry (.shp, Polygon with a hole)

Shapefile — Parcels Geometry (.shp, Polygon with a hole)

Three Polygon records, one of which has two rings: the Mill Court parcel and its courtyard. Shapefile winds rings the opposite way to GeoJSON — exterior clockwise, holes anticlockwise — and it has no explicit hole marker, so winding is the only signal a reader has.

File
SHP · Shapefile · 3 records
Use case
GeospatialSerialization testing+1· Conversion set
Preview of Shapefile — Parcels Index (.shx)
shx
124 B
Actual file preview for Shapefile — Parcels Index (.shx)

Shapefile — Parcels Index (.shx)

The parcel index, whose second entry is markedly longer than the others because that record carries two rings. Use it together with the roads index to check that seek logic handles multi-part records as well as multi-record files.

File
SHX · Shapefile · 3 records
Use case
GeospatialSerialization testing+1· Conversion set
Preview of Shapefile — Parcels Attributes (.dbf)
dbf
327 B
Actual file preview for Shapefile — Parcels Attributes (.dbf)

Shapefile — Parcels Attributes (.dbf)

The parcel attribute table, joined to the .shp purely by record order — there is no key and no explicit link. Deleting a geometry without deleting its row shifts every subsequent attribute onto the wrong shape, silently.

File
DBF · Shapefile · 3 records
Use case
GeospatialData import+1· Conversion set
Preview of WKT — POINT
wkt
23 B
Actual file preview for WKT — POINT

WKT — POINT

A single WKT value for the Kestrel Bay town centre. WKT nests with bare parentheses and no type tags on the inner parts, so the number and depth of brackets is the only thing that distinguishes a polygon ring from a multipolygon member — which is where hand-written parsers go wrong.

File
WKT · Wkt Wkb · 1 record
Use case
GeospatialSerialization testing+1· Conversion set
Preview of WKT — LINESTRING
wkt
80 B
Actual file preview for WKT — LINESTRING

WKT — LINESTRING

A single WKT value for the four-vertex Coast Road. WKT nests with bare parentheses and no type tags on the inner parts, so the number and depth of brackets is the only thing that distinguishes a polygon ring from a multipolygon member — which is where hand-written parsers go wrong.

File
WKT · Wkt Wkb · 1 record
Use case
GeospatialSerialization testing+1· Conversion set
Preview of WKT — POLYGON
wkt
167 B
Actual file preview for WKT — POLYGON

WKT — POLYGON

A single WKT value for the Mill Court parcel and its courtyard. WKT nests with bare parentheses and no type tags on the inner parts, so the number and depth of brackets is the only thing that distinguishes a polygon ring from a multipolygon member — which is where hand-written parsers go wrong.

File
WKT · Wkt Wkb · 1 record
Use case
GeospatialSerialization testing+1· Conversion set
Preview of WKT — MULTIPOLYGON
wkt
330 B
Actual file preview for WKT — MULTIPOLYGON

WKT — MULTIPOLYGON

A single WKT value for all three parcels in one geometry. WKT nests with bare parentheses and no type tags on the inner parts, so the number and depth of brackets is the only thing that distinguishes a polygon ring from a multipolygon member — which is where hand-written parsers go wrong.

File
WKT · Wkt Wkb · 1 record
Use case
GeospatialSerialization testing+1· Conversion set
Preview of WKT — GEOMETRYCOLLECTION
wkt
192 B
Actual file preview for WKT — GEOMETRYCOLLECTION

WKT — GEOMETRYCOLLECTION

A single WKT value for a point, a line and a polygon in one value. WKT nests with bare parentheses and no type tags on the inner parts, so the number and depth of brackets is the only thing that distinguishes a polygon ring from a multipolygon member — which is where hand-written parsers go wrong.

File
WKT · Wkt Wkb · 1 record
Use case
GeospatialSerialization testing+1· Conversion set
Preview of WKT — Z (three-dimensional) Geometry
wkt
30 B
Actual file preview for WKT — Z (three-dimensional) Geometry

WKT — Z (three-dimensional) Geometry

A point with an explicit Z dimension tag. Some producers write `POINT Z (x y z)` and others write `POINT(x y z)` with no tag at all, so a parser has to cope with the dimension being declared or merely implied by the ordinate count.

File
WKT · Wkt Wkb · ASCII
Use case
GeospatialSerialization testing+1· Conversion set
Preview of WKT — M (measured) Geometry
wkt
29 B
Actual file preview for WKT — M (measured) Geometry

WKT — M (measured) Geometry

A point with an M (measure) ordinate rather than a Z. Written without the tag this is indistinguishable from a Z geometry, and a parser that assumes the third ordinate is elevation silently converts a 345-second measure into a 345-metre altitude.

File
WKT · Wkt Wkb · ASCII
Use case
GeospatialSerialization testing+1· Conversion set
Preview of WKT — ZM (four-ordinate) Geometry
wkt
89 B
Actual file preview for WKT — ZM (four-ordinate) Geometry

WKT — ZM (four-ordinate) Geometry

A three-vertex line carrying both elevation and a measure, so each position has four ordinates. GeoJSON tops out at three, which makes this the fixture that shows what a WKT-to-GeoJSON conversion has to drop and whether it says so.

File
WKT · Wkt Wkb · ASCII
Use case
GeospatialSerialization testing+1· Conversion set
Preview of EWKT — PostGIS Extended WKT With an SRID Prefix
wkt
95 B
Actual file preview for EWKT — PostGIS Extended WKT With an SRID Prefix

EWKT — PostGIS Extended WKT With an SRID Prefix

PostGIS's extended WKT, which prefixes the geometry with `SRID=4326;`. It is not part of the OGC standard, so a strict WKT parser rejects the whole string — while a PostGIS-aware one gets the coordinate system for free.

File
WKT · Wkt Wkb · ASCII
Use case
GeospatialSerialization testing+1· Conversion set
Preview of WKT — All Seven EMPTY Geometry Forms
wkt
126 B
Actual file preview for WKT — All Seven EMPTY Geometry Forms

WKT — All Seven EMPTY Geometry Forms

One EMPTY value for each WKT geometry type, one per line. Empty geometries are what spatial operations return when nothing is left, and round-tripping them is where a database driver usually turns a typed empty into a plain NULL.

File
WKT · Wkt Wkb · 7 records
Use case
GeospatialError handling+1· Conversion set
Preview of WKB — Raw Little-Endian Point
bin
21 B
Actual file preview for WKB — Raw Little-Endian Point

WKB — Raw Little-Endian Point

Twenty-one raw bytes: a byte-order flag, a little-endian geometry-type code of 1, and two float64 ordinates. This is the wire format PostGIS, GeoPackage and most spatial drivers actually move geometry in.

File
BIN · Wkt Wkb · ASCII
Use case
GeospatialSerialization testing+1· Conversion set
Preview of WKB — Hex Strings in Both Byte Orders
txt
332 B
Actual file preview for WKB — Hex Strings in Both Byte Orders

WKB — Hex Strings in Both Byte Orders

The same point encoded both ways, plus a polygon, as uppercase hex — the form WKB takes when it travels through a text column or a SQL console. The byte-order flag is the first byte of each string, so the two point encodings differ everywhere after it.

File
TXT · Wkt Wkb · 3 records
Use case
GeospatialSerialization testing+1· Conversion set
Preview of EWKB — PostGIS Hex With an Embedded SRID
txt
280 B
Actual file preview for EWKB — PostGIS Hex With an Embedded SRID

EWKB — PostGIS Hex With an Embedded SRID

PostGIS EWKB, where the SRID is carried by OR-ing 0x20000000 into the geometry-type word and appending the code. A strict OGC WKB reader sees type 0x20000001 instead of 1 and either fails or, worse, reports an unknown geometry type.

File
TXT · Wkt Wkb · 2 records
Use case
GeospatialSerialization testing+1· Conversion set
Preview of Coordinate Precision — 1 Decimal Place
geojson
337 B
Actual file preview for Coordinate Precision — 1 Decimal Place

Coordinate Precision — 1 Decimal Place

The same harbour light written to 1 decimal place — enough to identify which country you are in. The ladder exists because coordinate precision is almost always chosen by accident, and shipping six unnecessary digits multiplies the size of every geometry in a tileset.

File
GEOJSON · Precision · UTF-8
Use case
GeospatialJSON parsing+1· Conversion set
Preview of Coordinate Precision — 2 Decimal Places
geojson
339 B
Actual file preview for Coordinate Precision — 2 Decimal Places

Coordinate Precision — 2 Decimal Places

The same harbour light written to 2 decimal places — enough to identify which town you are in. The ladder exists because coordinate precision is almost always chosen by accident, and shipping six unnecessary digits multiplies the size of every geometry in a tileset.

File
GEOJSON · Precision · UTF-8
Use case
GeospatialJSON parsing+1· Conversion set
Preview of Coordinate Precision — 4 Decimal Places
geojson
343 B
Actual file preview for Coordinate Precision — 4 Decimal Places

Coordinate Precision — 4 Decimal Places

The same harbour light written to 4 decimal places — enough to identify which building you are in. The ladder exists because coordinate precision is almost always chosen by accident, and shipping six unnecessary digits multiplies the size of every geometry in a tileset.

File
GEOJSON · Precision · UTF-8
Use case
GeospatialJSON parsing+1· Conversion set
Preview of Coordinate Precision — 6 Decimal Places
geojson
349 B
Actual file preview for Coordinate Precision — 6 Decimal Places

Coordinate Precision — 6 Decimal Places

The same harbour light written to 6 decimal places — enough to identify which doorway you are standing in. The ladder exists because coordinate precision is almost always chosen by accident, and shipping six unnecessary digits multiplies the size of every geometry in a tileset.

File
GEOJSON · Precision · UTF-8
Use case
GeospatialJSON parsing+1· Conversion set
Preview of Coordinate Precision — 9 Decimal Places
geojson
357 B
Actual file preview for Coordinate Precision — 9 Decimal Places

Coordinate Precision — 9 Decimal Places

The same harbour light written to 9 decimal places — enough to identify far finer than any consumer receiver can fix. The ladder exists because coordinate precision is almost always chosen by accident, and shipping six unnecessary digits multiplies the size of every geometry in a tileset.

File
GEOJSON · Precision · UTF-8
Use case
GeospatialJSON parsing+1· Conversion set
Preview of Coordinate Precision — 15 Decimal Places
geojson
371 B
Actual file preview for Coordinate Precision — 15 Decimal Places

Coordinate Precision — 15 Decimal Places

The same harbour light written to 15 decimal places — enough to identify beyond what a float64 can hold for a coordinate at all. The ladder exists because coordinate precision is almost always chosen by accident, and shipping six unnecessary digits multiplies the size of every geometry in a tileset.

File
GEOJSON · Precision · UTF-8
Use case
GeospatialJSON parsing+1· Conversion set
Preview of Coordinate Precision — Float64 Round-Trip Hazards
geojson
1.1 KB
Actual file preview for Coordinate Precision — Float64 Round-Trip Hazards

Coordinate Precision — Float64 Round-Trip Hazards

Five features whose coordinates are the values that break naive JSON number handling: 17-significant-digit doubles, the classic 0.1 + 0.2 artefact, the largest float64 below 180, a 1e-7 offset, and coordinates written in exponent form. Re-serialising this file is where a parser quietly loses or gains a digit.

File
GEOJSON · Precision · UTF-8
Use case
GeospatialJSON parsing+1· Conversion set
Preview of NetCDF CF-1.8 Gridded Air Temperature (.nc)
nc
1.5 KB
Actual file preview for NetCDF CF-1.8 Gridded Air Temperature (.nc)

NetCDF CF-1.8 Gridded Air Temperature (.nc)

A NetCDF-3 classic file holding a 4x5x6 air-temperature field with full CF-1.8 coordinate metadata: standard names, axis attributes, units on every variable, and a declared _FillValue. Use it to check that a reader attaches units and coordinates to the array rather than returning bare numbers.

File
NC · Gridded
Use case
Scientific dataSerialization testing· Paired fixture
Preview of NetCDF Packed int16 with scale_factor / add_offset (.nc)
nc
1.2 KB
Actual file preview for NetCDF Packed int16 with scale_factor / add_offset (.nc)

NetCDF Packed int16 with scale_factor / add_offset (.nc)

The same temperature field stored as int16 and recovered through the CF packing attributes scale_factor and add_offset. This is the failure that parses cleanly and is silently wrong: a reader that ignores the attributes returns values around -2000 instead of 260-292 K.

File
NC · Gridded
Use case
Scientific dataSerialization testing· Paired fixture
Preview of NetCDF Time Axes — Epochs, Units and Calendars (.nc)
nc
808 B
Actual file preview for NetCDF Time Axes — Epochs, Units and Calendars (.nc)

NetCDF Time Axes — Epochs, Units and Calendars (.nc)

Three CF time coordinates over the same six records: hours from the Unix epoch, days from 2026-01-01, and the same days under a 365_day calendar. A decoder that assumes one epoch, or ignores the calendar attribute, dates the records wrongly without raising anything.

File
NC · Gridded · 6 records
Use case
Scientific dataSerialization testing· Conversion set
Preview of NetCDF Unlimited Record Dimension (.nc)
nc
572 B
Actual file preview for NetCDF Unlimited Record Dimension (.nc)

NetCDF Unlimited Record Dimension (.nc)

A NetCDF-3 file with a genuine unlimited record dimension, so the record variable is stored interleaved rather than contiguously while the fixed-size station variable is not. It exercises the striding path that a reader written only against fixed dimensions gets wrong.

File
NC · Gridded · 5 records
Use case
Scientific dataSerialization testing· Conversion set
Preview of NetCDF 64-bit Offset Format — CDF-2 (.nc)
nc
1.3 KB
Actual file preview for NetCDF 64-bit Offset Format — CDF-2 (.nc)

NetCDF 64-bit Offset Format — CDF-2 (.nc)

The same 4x5x6 temperature grid written in the 64-bit offset variant of NetCDF-3, whose only visible difference from the classic file is the fourth magic byte and the width of the header offsets. Use it to check that format sniffing looks at the version byte instead of stopping at the 'CDF' signature.

File
NC · Gridded
Use case
Scientific dataSerialization testing· Conversion set
Preview of NetCDF _FillValue, missing_value and NaN Together (.nc)
nc
1.4 KB
Actual file preview for NetCDF _FillValue, missing_value and NaN Together (.nc)

NetCDF _FillValue, missing_value and NaN Together (.nc)

One variable that hides absent data three different ways at once: two _FillValue cells, one legacy missing_value cell and one raw NaN, with valid_min and valid_max also declared. Averaging the raw array without honouring all three gives roughly -60 K instead of a real mean.

File
NC · Gridded
Use case
Scientific dataSerialization testing+1· Conversion set
Preview of NetCDF Multi-Variable Station File — Four Unit Systems (.nc)
nc
1.4 KB
Actual file preview for NetCDF Multi-Variable Station File — Four Unit Systems (.nc)

NetCDF Multi-Variable Station File — Four Unit Systems (.nc)

Four physical quantities on one shared (time, station) grid, each with its own CF units string including the dimensionless '1' and the UDUNITS 'm s-1' spelling. It is the fixture for a unit-aware layer that has to keep four different unit systems straight in a single file.

File
NC · Gridded
Use case
Scientific dataSerialization testing· Conversion set
Preview of FITS Image — BITPIX 8 Unsigned Bytes (.fits)
fits
5.6 KB
Actual file preview for FITS Image — BITPIX 8 Unsigned Bytes (.fits)

FITS Image — BITPIX 8 Unsigned Bytes (.fits)

The baseline rung of the BITPIX ladder: a 24x16 synthetic star field stored as unsigned bytes, the one integer width FITS holds without a BZERO shift. Every image in this family carries the same scene so a decoder can be scored across data types.

File
FITS · Fits
Use case
Scientific dataSerialization testing· Conversion set
Preview of FITS Image — BITPIX 16 with BZERO Unsigned Trick (.fits)
fits
5.6 KB
Actual file preview for FITS Image — BITPIX 16 with BZERO Unsigned Trick (.fits)

FITS Image — BITPIX 16 with BZERO Unsigned Trick (.fits)

FITS has no unsigned 16-bit type, so unsigned data is stored signed with BZERO = 32768 and recovered as BZERO + BSCALE * stored. Every stored value in this image is negative, so a reader that ignores the scaling returns an entirely negative frame while parsing the file perfectly.

File
FITS · Fits
Use case
Scientific dataSerialization testing· Conversion set
Preview of FITS Image — float32 with NaN and Inf Pixels (.fits)
fits
5.6 KB
Actual file preview for FITS Image — float32 with NaN and Inf Pixels (.fits)

FITS Image — float32 with NaN and Inf Pixels (.fits)

Single-precision FITS pixels including two NaNs, which is the only way the standard marks undefined data for floating BITPIX, plus one +Inf. Statistics computed without NaN-aware reductions come back as NaN for the entire frame.

File
FITS · Fits
Use case
Scientific dataSerialization testing+1· Conversion set
Preview of FITS Image — float64 Double Precision (.fits)
fits
8.4 KB
Actual file preview for FITS Image — float64 Double Precision (.fits)

FITS Image — float64 Double Precision (.fits)

The top rung of the BITPIX ladder, carrying the identical synthetic scene as IEEE-754 doubles with DATAMIN and DATAMAX declared. It is the reference against which the 8-, 16- and 32-bit members of the family are scored for precision loss.

File
FITS · Fits
Use case
Scientific dataSerialization testing· Conversion set
Preview of FITS with World Coordinate System — Tangent Plane (.fits)
fits
5.6 KB
Actual file preview for FITS with World Coordinate System — Tangent Plane (.fits)

FITS with World Coordinate System — Tangent Plane (.fits)

A 32-bit integer image carrying a complete tangent-plane WCS: 1-based CRPIX reference pixels, a deliberately negative CDELT1 so right ascension runs the other way, and an ICRS frame. It targets the two mistakes every WCS implementation makes first, the 1-based origin and the flipped axis.

File
FITS · Fits
Use case
Scientific dataSerialization testing+1· Conversion set
Preview of FITS BINTABLE — Typed Columns with TUNIT (.fits)
fits
8.4 KB
Actual file preview for FITS BINTABLE — Typed Columns with TUNIT (.fits)

FITS BINTABLE — Typed Columns with TUNIT (.fits)

A FITS binary table with four typed columns, big-endian numerics packed with no inter-field padding and TUNIT declaring milli-jansky on the two flux columns. It is the fixture for a table reader that has to build a row struct from TFORM codes rather than guess widths.

File
FITS · Fits · 12 rows
Use case
Scientific dataSerialization testing+1· Conversion set
Preview of FITS BLANK — Undefined Integer Pixels (.fits)
fits
5.6 KB
Actual file preview for FITS BLANK — Undefined Integer Pixels (.fits)

FITS BLANK — Undefined Integer Pixels (.fits)

Integer FITS images mark undefined pixels with the BLANK keyword, and BLANK is compared against the stored value before BZERO and BSCALE are applied. Scale first and the four undefined pixels turn into a perfectly plausible zero, which is the ordering bug this file exists to expose.

File
FITS · Fits
Use case
Scientific dataSerialization testing+1· Conversion set
Preview of FITS Header-Only — Valid File With No Pixels (.fits)
fits
2.8 KB
Actual file preview for FITS Header-Only — Valid File With No Pixels (.fits)

FITS Header-Only — Valid File With No Pixels (.fits)

A completely valid FITS file consisting of one 2880-byte header block and no data unit, which the standard permits whenever NAXIS is 0. It separates readers that model the data array as optional from readers that treat 'no pixels' as corruption.

File
FITS · Fits
Use case
Scientific dataSerialization testing+1· Conversion set
Preview of HDF5 Experiment Hierarchy — raw, processed, metadata (.h5)
h5
14.4 KB
Actual file preview for HDF5 Experiment Hierarchy — raw, processed, metadata (.h5)

HDF5 Experiment Hierarchy — raw, processed, metadata (.h5)

A three-group HDF5 file laid out the way a real bench run is — raw arrays, a processed derivative that names its source in a derived_from attribute, and a metadata group — with units on every dataset. It is the walk-the-tree fixture: a reader has to recurse rather than assume a flat namespace.

File
H5 · Hdf5
Use case
Scientific dataSerialization testing· Conversion set
Preview of HDF5 Chunked + gzip + shuffle Filters (.h5)
h5
42.7 KB
Actual file preview for HDF5 Chunked + gzip + shuffle Filters (.h5)

HDF5 Chunked + gzip + shuffle Filters (.h5)

One array stored twice in the same file: chunked with the shuffle and gzip filters applied, and contiguous with no filters at all. Comparing the two proves a reader ran the HDF5 filter pipeline rather than reading raw chunk bytes.

File
H5 · Hdf5
Use case
Scientific dataSerialization testing+1· Conversion set
Preview of HDF5 Compound Record dtype — Mixed Field Types (.h5)
h5
6.3 KB
Actual file preview for HDF5 Compound Record dtype — Mixed Field Types (.h5)

HDF5 Compound Record dtype — Mixed Field Types (.h5)

A compound-dtype dataset mixing an integer key, two float measurements, a fixed-width byte string and a boolean flag in a single record. It is the fixture for readers that must map an HDF5 record type onto a native struct without reordering or repadding the fields.

File
H5 · Hdf5 · 10 records
Use case
Scientific dataSerialization testing+1· Conversion set
Preview of HDF5 Strings — Fixed, Variable-Length and UTF-8 (.h5)
h5
8.1 KB
Actual file preview for HDF5 Strings — Fixed, Variable-Length and UTF-8 (.h5)

HDF5 Strings — Fixed, Variable-Length and UTF-8 (.h5)

Fixed-width byte strings, variable-length UTF-8 strings and UTF-8 attribute text in one file, including Greek, CJK and combining diacritics. HDF5 hands fixed-width strings back as padded bytes and variable-length ones as decoded text, and conflating the two is where string handling usually breaks.

File
H5 · Hdf5 · UTF-8
Use case
Scientific dataSerialization testing+1· Conversion set
Preview of HDF5 Units and Uncertainty Attributes on Every Dataset (.h5)
h5
9.3 KB
Actual file preview for HDF5 Units and Uncertainty Attributes on Every Dataset (.h5)

HDF5 Units and Uncertainty Attributes on Every Dataset (.h5)

Four measured quantities where the uncertainty lives in dataset attributes rather than a parallel column, with the coverage factor spelled out so k=1 and k=2 values cannot be confused. It is the fixture for a pipeline that must propagate uncertainty it read from metadata.

File
H5 · Hdf5
Use case
Scientific dataSerialization testing· Conversion set
Preview of HDF5 Dimension Scales Attached to a 3-D Array (.h5)
h5
9.4 KB
Actual file preview for HDF5 Dimension Scales Attached to a 3-D Array (.h5)

HDF5 Dimension Scales Attached to a 3-D Array (.h5)

The CF NetCDF grid expressed with HDF5's own dimension-scale mechanism, so each axis of the 3-D array points at a real coordinate dataset through DIMENSION_LIST references. It lets a reader be tested on scale resolution instead of on filename conventions.

File
H5 · Hdf5
Use case
Scientific dataSerialization testing· Conversion set
Preview of MATLAB v7.3 (.mat) Variable Store — the HDF5 File It Actually Is (.h5)
h5
4.8 KB
Actual file preview for MATLAB v7.3 (.mat) Variable Store — the HDF5 File It Actually Is (.h5)

MATLAB v7.3 (.mat) Variable Store — the HDF5 File It Actually Is (.h5)

A MATLAB v7.3 variable store, which is an HDF5 file with a 512-byte MATLAB user block and MATLAB_class attributes — the bytes are the same whichever extension you give it. Because MATLAB is column-major, A appears in HDF5 as its own transpose, which is the conversion bug this fixture is built around.

File
H5 · Hdf5
Use case
Scientific dataSerialization testing+1· Conversion set
Preview of HDF5 Deeply Nested Group Tree — Eight Levels (.h5)
h5
17.4 KB
Actual file preview for HDF5 Deeply Nested Group Tree — Eight Levels (.h5)

HDF5 Deeply Nested Group Tree — Eight Levels (.h5)

Eight levels of nested groups, each holding a dataset whose values equal its own depth. Any tree walk that caps recursion depth or flattens names silently loses the lower levels, and the depth-valued arrays make that immediately visible.

File
H5 · Hdf5
Use case
Scientific dataSerialization testing· Conversion set
Preview of HDF5 Numeric dtype Zoo — Every Width at Its Limits (.h5)
h5
11 KB
Actual file preview for HDF5 Numeric dtype Zoo — Every Width at Its Limits (.h5)

HDF5 Numeric dtype Zoo — Every Width at Its Limits (.h5)

Twelve datasets, one per numeric HDF5 type, each holding the extreme values of that type including the uint64 and int64 limits that do not survive a trip through a double. It is the fixture that exposes a reader which widens everything to float64 on the way in.

File
H5 · Hdf5
Use case
Scientific dataSerialization testing+1· Conversion set
Preview of HDF5 Hard, Soft and Dangling Links (.h5)
h5
6.1 KB
Actual file preview for HDF5 Hard, Soft and Dangling Links (.h5)

HDF5 Hard, Soft and Dangling Links (.h5)

One array reachable under four names: itself, a hard link sharing its object address, a soft link resolved at access time, and a soft link pointing nowhere. A walker that counts names instead of object addresses reports four arrays and then crashes on the dangling one.

File
H5 · Hdf5
Use case
Scientific dataSerialization testing+1· Conversion set
Preview of HDF5 Degenerate Shapes — Scalar, Zero-Length and Null (.h5)
h5
9.4 KB
Actual file preview for HDF5 Degenerate Shapes — Scalar, Zero-Length and Null (.h5)

HDF5 Degenerate Shapes — Scalar, Zero-Length and Null (.h5)

Five degenerate but entirely legal datasets — a rank-0 scalar, a zero-length vector, a (0, 5) array, a single-element vector and a NULL dataspace — plus an empty group. None of them is corrupt, and a reader that reports them as errors is the thing being tested.

File
H5 · Hdf5
Use case
Scientific dataSerialization testing+1· Conversion set
Preview of NumPy .npy — float64 2-D Grid (.npy)
npy
896 B
Actual file preview for NumPy .npy — float64 2-D Grid (.npy)

NumPy .npy — float64 2-D Grid (.npy)

The baseline .npy fixture: a 12x8 float64 array in version 1.0 format with a little-endian descriptor and the header padded to the mandatory 64-byte alignment. Every other array in this family varies exactly one property away from it.

File
NPY · Arrays
Use case
Scientific dataSerialization testing· Paired fixture
Preview of NumPy .npy — float32 3-D Cube (.npy)
npy
608 B
Actual file preview for NumPy .npy — float32 3-D Cube (.npy)

NumPy .npy — float32 3-D Cube (.npy)

The identical temperature field carried by the CF NetCDF and HDF5 fixtures, stored as a bare float32 .npy. Comparing the three shows exactly what a plain array container loses: the numbers survive, the units and axes do not.

File
NPY · Arrays
Use case
Scientific dataSerialization testing· Conversion set
Preview of NumPy .npy — int16 Little-Endian (.npy)
npy
146 B
Actual file preview for NumPy .npy — int16 Little-Endian (.npy)

NumPy .npy — int16 Little-Endian (.npy)

Nine int16 values including both type extremes, stored little-endian so the descriptor in the header reads '<i2'. It is one half of an endian pair whose values are identical and whose bytes are not.

File
NPY · Arrays
Use case
Scientific dataSerialization testing· Paired fixture
Preview of NumPy .npy — int16 Big-Endian (.npy)
npy
146 B
Actual file preview for NumPy .npy — int16 Big-Endian (.npy)

NumPy .npy — int16 Big-Endian (.npy)

The same nine int16 values written big-endian, so the header descriptor reads '>i2'. A loader that ignores the descriptor and assumes native little-endian order returns 13330 where the file says 4660, without any error.

File
NPY · Arrays
Use case
Scientific dataSerialization testing· Paired fixture
Preview of NumPy .npy — float64 Big-Endian (.npy)
npy
184 B
Actual file preview for NumPy .npy — float64 Big-Endian (.npy)

NumPy .npy — float64 Big-Endian (.npy)

Seven doubles written big-endian, including negative zero and values at both ends of the exponent range. Byte-swapping a double is unrecoverable by inspection — swap pi and you get 3.2e-192, which looks like a plausible tiny number rather than an error.

File
NPY · Arrays
Use case
Scientific dataSerialization testing· Conversion set
Preview of NumPy .npy — Boolean Mask (.npy)
npy
188 B
Actual file preview for NumPy .npy — Boolean Mask (.npy)

NumPy .npy — Boolean Mask (.npy)

A 6x10 boolean mask stored as one byte per element, because .npy does not bit-pack booleans however tempting that assumption is. The True cells follow a simple divisible-by-three rule so a mis-decode is obvious rather than plausible.

File
NPY · Arrays
Use case
Scientific dataSerialization testing· Conversion set
Preview of NumPy .npy — complex128 Spectrum (.npy)
npy
656 B
Actual file preview for NumPy .npy — complex128 Spectrum (.npy)

NumPy .npy — complex128 Spectrum (.npy)

The real FFT of a 64-sample sine stored as complex128, where each element is an interleaved pair of doubles rather than two separate planes. Readers without a complex type usually flatten it, which doubles the reported length and shifts the peak bin.

File
NPY · Arrays
Use case
Scientific dataSerialization testing· Conversion set
Preview of NumPy .npy — Structured Record Array with Units in Field Names (.npy)
npy
528 B
Actual file preview for NumPy .npy — Structured Record Array with Units in Field Names (.npy)

NumPy .npy — Structured Record Array with Units in Field Names (.npy)

A 16-record structured array carrying a value, its uncertainty and a quality flag, with the physical unit encoded in the field-name suffix because .npy has nowhere else to put it. The header descriptor is a list of field tuples rather than a single type string, which is the parsing branch this file exercises.

File
NPY · Arrays · 16 records
Use case
Scientific dataSerialization testing+1· Conversion set
Preview of NumPy .npy — C Order (Row-Major) (.npy)
npy
320 B
Actual file preview for NumPy .npy — C Order (Row-Major) (.npy)

NumPy .npy — C Order (Row-Major) (.npy)

A 4x6 matrix of 0..23 stored row-major, so the byte sequence begins with the first row. It is one half of a memory-order pair that is indistinguishable from its twin unless the header's fortran_order flag is honoured.

File
NPY · Arrays
Use case
Scientific dataSerialization testing· Paired fixture
Preview of NumPy .npy — Fortran Order (Column-Major) (.npy)
npy
320 B
Actual file preview for NumPy .npy — Fortran Order (Column-Major) (.npy)

NumPy .npy — Fortran Order (Column-Major) (.npy)

The same 4x6 matrix stored column-major with fortran_order set to True in the header. Ignoring that one boolean does not produce an error, it produces a transposed matrix — the quietest failure in the whole .npy format.

File
NPY · Arrays
Use case
Scientific dataSerialization testing· Paired fixture
Preview of NumPy .npy Format Version 2.0 — Header Beyond 64 KiB (.npy)
npy
12.7 KB
Actual file preview for NumPy .npy Format Version 2.0 — Header Beyond 64 KiB (.npy)

NumPy .npy Format Version 2.0 — Header Beyond 64 KiB (.npy)

A 300-field structured array whose descriptor is too long for a version 1.0 header, forcing format version 2.0 and its four-byte header-length field. A hand-rolled parser that assumes the two-byte 1.0 field mis-locates the data section entirely.

File
NPY · Arrays · 4 records
Use case
Scientific dataSerialization testing+1· Conversion set
Preview of NumPy .npy Format Version 3.0 — UTF-8 Field Names (.npy)
npy
312 B
Actual file preview for NumPy .npy Format Version 3.0 — UTF-8 Field Names (.npy)

NumPy .npy Format Version 3.0 — UTF-8 Field Names (.npy)

A structured array whose field names use Greek and CJK characters, which is the only reason format version 3.0 exists: its header is UTF-8 where 1.0 and 2.0 are latin-1. A parser that decodes the header as latin-1 mangles all three names.

File
NPY · Arrays · 5 records
Use case
Scientific dataSerialization testing+1· Conversion set
Preview of NumPy .npy — datetime64 Seconds Since the Epoch (.npy)
npy
168 B
Actual file preview for NumPy .npy — datetime64 Seconds Since the Epoch (.npy)

NumPy .npy — datetime64 Seconds Since the Epoch (.npy)

Five timestamps stored as datetime64 with second resolution, where the unit is part of the dtype descriptor and the values on disk are plain int64 epoch seconds. Dropping the unit turns 2026-01-01 into the integer 1767225600 without any complaint.

File
NPY · Arrays
Use case
Scientific dataSerialization testing+1· Conversion set
Preview of NumPy .npy — float16 at Its Limits (.npy)
npy
146 B
Actual file preview for NumPy .npy — float16 at Its Limits (.npy)

NumPy .npy — float16 at Its Limits (.npy)

Every structurally interesting float16 value in one array: one plus epsilon, the largest finite value, the smallest normal and subnormal, negative zero, infinity and a NaN. It is the compact half-precision counterpart to the float32 and float64 boundary fixtures.

File
NPY · Arrays
Use case
Scientific dataSerialization testing+1· Conversion set
Preview of NumPy .npy — Zero-Length Array With Real Shape (.npy)
npy
128 B
Actual file preview for NumPy .npy — Zero-Length Array With Real Shape (.npy)

NumPy .npy — Zero-Length Array With Real Shape (.npy)

A valid .npy file with a full header, a declared (0, 4) shape and a data section of zero bytes. It preserves the column count across an empty result, and it separates readers that model emptiness from readers that treat it as failure.

File
NPY · Arrays
Use case
Scientific dataSerialization testing+1· Conversion set
Preview of NumPy .npy — Zero-Dimensional Scalar (.npy)
npy
136 B
Actual file preview for NumPy .npy — Zero-Dimensional Scalar (.npy)

NumPy .npy — Zero-Dimensional Scalar (.npy)

A rank-0 .npy holding a single double, whose header shape is the empty tuple rather than (1,). Indexing it with [0] raises rather than returning the value, so it separates parsers that model rank properly from parsers that assume at least one axis.

File
NPY · Arrays
Use case
Scientific dataSerialization testing+1· Conversion set
Preview of NumPy .npz-style Bundle — Five Arrays, Stored (.zip)
zip
2.2 KB
Actual file preview for NumPy .npz-style Bundle — Five Arrays, Stored (.zip)

NumPy .npz-style Bundle — Five Arrays, Stored (.zip)

An npz-style bundle: a ZIP whose members are .npy files, which is exactly what NumPy's savez produces. np.load opens it by ZIP magic rather than by extension, so the arrays load straight from this .zip; rename it to .npz for tooling that checks the suffix.

File
ZIP · Arrays · 5 members
Use case
Scientific dataSerialization testing+1· Conversion set
Preview of NumPy .npz-style Bundle — Five Arrays, Deflated (.zip)
zip
1.1 KB
Actual file preview for NumPy .npz-style Bundle — Five Arrays, Deflated (.zip)

NumPy .npz-style Bundle — Five Arrays, Deflated (.zip)

The identical five arrays bundled with deflate instead of stored, which is the only difference between NumPy's savez and savez_compressed. Loading both and comparing proves a reader ran the decompressor rather than trusting stored-size shortcuts.

File
ZIP · Arrays · 5 members
Use case
Scientific dataSerialization testing+1· Conversion set
Preview of Raw float64 Block — Little-Endian, No Header (.bin)
bin
128 B
Actual file preview for Raw float64 Block — Little-Endian, No Header (.bin)

Raw float64 Block — Little-Endian, No Header (.bin)

Sixteen doubles as a bare 128-byte block with no header, so byte order is knowledge the reader has to bring rather than something the file declares. It is one half of an endian pair that only a correct assumption tells apart.

File
BIN · Numeric Edges
Use case
Scientific dataError handling+1· Paired fixture
Preview of Raw float64 Block — Big-Endian, No Header (.bin)
bin
128 B
Actual file preview for Raw float64 Block — Big-Endian, No Header (.bin)

Raw float64 Block — Big-Endian, No Header (.bin)

The same sixteen doubles written in network byte order, so every eight-byte group is the mirror of the little-endian twin. Decoding it with the wrong assumption produces small plausible-looking numbers rather than an error, which is why this pair exists.

File
BIN · Numeric Edges
Use case
Scientific dataError handling+1· Paired fixture
Preview of DICOM-Shaped Part 10 File — Explicit VR, Synthetic Phantom (.bin)
bin
2.9 KB
Actual file preview for DICOM-Shaped Part 10 File — Explicit VR, Synthetic Phantom (.bin)

DICOM-Shaped Part 10 File — Explicit VR, Synthetic Phantom (.bin)

A DICOM Part 10 file built byte by byte: 128-byte preamble, the DICM magic, an explicit-VR file meta group and a 27-element dataset ending in 16-bit pixel data. Every identifier is invented: the patient name is SYNTHETIC^PHANTOM, the instance UIDs sit under the unregistered 2.25 UUID arc, and the pixels are a generated pattern. There is no protected health information here and nothing in the file refers to a real person, device or study.

File
BIN · Imaging · 32 rows
Use case
Scientific dataSerialization testing· Conversion set
Preview of DICOM-Shaped Part 10 File — Implicit VR, Synthetic Phantom (.bin)
bin
2.9 KB
Actual file preview for DICOM-Shaped Part 10 File — Implicit VR, Synthetic Phantom (.bin)

DICOM-Shaped Part 10 File — Implicit VR, Synthetic Phantom (.bin)

The same synthetic phantom written with the implicit-VR transfer syntax, where element types never appear on the wire and a reader must consult a data dictionary to know that Rows is a 16-bit integer. The file meta group stays explicit VR, which is the mixed-mode detail parsers most often miss. Every identifier is invented: the patient name is SYNTHETIC^PHANTOM, the instance UIDs sit under the unregistered 2.25 UUID arc, and the pixels are a generated pattern. There is no protected health information here and nothing in the file refers to a real person, device or study.

File
BIN · Imaging · 32 rows
Use case
Scientific dataSerialization testing· Conversion set
Preview of DICOM-Shaped Stream — No Preamble, No DICM Magic (.bin)
bin
2.8 KB
Actual file preview for DICOM-Shaped Stream — No Preamble, No DICM Magic (.bin)

DICOM-Shaped Stream — No Preamble, No DICM Magic (.bin)

The identical element stream with the 128-byte preamble and the DICM magic stripped, which is how DICOM often arrives out of a network transfer or a database blob column. It is not a conformant Part 10 file and its content is entirely recoverable, so a reader should fall back rather than reject.

File
BIN · Imaging
Use case
Scientific dataSerialization testing+1· Conversion set
Preview of Creator Timeline EDL 01
edl
210 B
Actual file preview for Creator Timeline EDL 01

Creator Timeline EDL 01

Download-only EDL timeline fixture 01 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-edl-01.

File
EDL · Captions Timelines Projects
Preview of Creator Timeline EDL 02
edl
210 B
Actual file preview for Creator Timeline EDL 02

Creator Timeline EDL 02

Download-only EDL timeline fixture 02 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-edl-02.

File
EDL · Captions Timelines Projects
Preview of Creator Timeline EDL 03
edl
210 B
Actual file preview for Creator Timeline EDL 03

Creator Timeline EDL 03

Download-only EDL timeline fixture 03 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-edl-03.

File
EDL · Captions Timelines Projects
Preview of Creator Timeline EDL 04
edl
210 B
Actual file preview for Creator Timeline EDL 04

Creator Timeline EDL 04

Download-only EDL timeline fixture 04 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-edl-04.

File
EDL · Captions Timelines Projects
Preview of Creator Timeline EDL 05
edl
210 B
Actual file preview for Creator Timeline EDL 05

Creator Timeline EDL 05

Download-only EDL timeline fixture 05 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-edl-05.

File
EDL · Captions Timelines Projects
Preview of Creator Timeline EDL 06
edl
210 B
Actual file preview for Creator Timeline EDL 06

Creator Timeline EDL 06

Download-only EDL timeline fixture 06 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-edl-06.

File
EDL · Captions Timelines Projects
Preview of Creator Timeline EDL 07
edl
210 B
Actual file preview for Creator Timeline EDL 07

Creator Timeline EDL 07

Download-only EDL timeline fixture 07 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-edl-07.

File
EDL · Captions Timelines Projects
Preview of Creator Timeline EDL 08
edl
210 B
Actual file preview for Creator Timeline EDL 08

Creator Timeline EDL 08

Download-only EDL timeline fixture 08 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-edl-08.

File
EDL · Captions Timelines Projects
Preview of Creator Timeline EDL 09
edl
210 B
Actual file preview for Creator Timeline EDL 09

Creator Timeline EDL 09

Download-only EDL timeline fixture 09 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-edl-09.

File
EDL · Captions Timelines Projects
Preview of Creator Timeline EDL 10
edl
210 B
Actual file preview for Creator Timeline EDL 10

Creator Timeline EDL 10

Download-only EDL timeline fixture 10 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-edl-10.

File
EDL · Captions Timelines Projects
Preview of Creator Timeline EDL 11
edl
210 B
Actual file preview for Creator Timeline EDL 11

Creator Timeline EDL 11

Download-only EDL timeline fixture 11 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-edl-11.

File
EDL · Captions Timelines Projects
Preview of Creator Timeline EDL 12
edl
210 B
Actual file preview for Creator Timeline EDL 12

Creator Timeline EDL 12

Download-only EDL timeline fixture 12 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-edl-12.

File
EDL · Captions Timelines Projects
Preview of Creator Timeline EDL 13
edl
210 B
Actual file preview for Creator Timeline EDL 13

Creator Timeline EDL 13

Download-only EDL timeline fixture 13 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-edl-13.

File
EDL · Captions Timelines Projects
Preview of Creator Timeline EDL 14
edl
210 B
Actual file preview for Creator Timeline EDL 14

Creator Timeline EDL 14

Download-only EDL timeline fixture 14 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-edl-14.

File
EDL · Captions Timelines Projects
Preview of Creator Timeline EDL 15
edl
210 B
Actual file preview for Creator Timeline EDL 15

Creator Timeline EDL 15

Download-only EDL timeline fixture 15 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-edl-15.

File
EDL · Captions Timelines Projects
Preview of Creator Timeline FCPXML 01
fcpxml
439 B
Actual file preview for Creator Timeline FCPXML 01

Creator Timeline FCPXML 01

Download-only FCPXML timeline fixture 01 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-fcpxml-01.

File
FCPXML · Captions Timelines Projects
Preview of Creator Timeline FCPXML 02
fcpxml
439 B
Actual file preview for Creator Timeline FCPXML 02

Creator Timeline FCPXML 02

Download-only FCPXML timeline fixture 02 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-fcpxml-02.

File
FCPXML · Captions Timelines Projects
Preview of Creator Timeline FCPXML 03
fcpxml
439 B
Actual file preview for Creator Timeline FCPXML 03

Creator Timeline FCPXML 03

Download-only FCPXML timeline fixture 03 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-fcpxml-03.

File
FCPXML · Captions Timelines Projects
Preview of Creator Timeline FCPXML 04
fcpxml
439 B
Actual file preview for Creator Timeline FCPXML 04

Creator Timeline FCPXML 04

Download-only FCPXML timeline fixture 04 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-fcpxml-04.

File
FCPXML · Captions Timelines Projects
Preview of Creator Timeline FCPXML 05
fcpxml
439 B
Actual file preview for Creator Timeline FCPXML 05

Creator Timeline FCPXML 05

Download-only FCPXML timeline fixture 05 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-fcpxml-05.

File
FCPXML · Captions Timelines Projects
Preview of Creator Timeline FCPXML 06
fcpxml
439 B
Actual file preview for Creator Timeline FCPXML 06

Creator Timeline FCPXML 06

Download-only FCPXML timeline fixture 06 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-fcpxml-06.

File
FCPXML · Captions Timelines Projects
Preview of Creator Timeline FCPXML 07
fcpxml
439 B
Actual file preview for Creator Timeline FCPXML 07

Creator Timeline FCPXML 07

Download-only FCPXML timeline fixture 07 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-fcpxml-07.

File
FCPXML · Captions Timelines Projects
Preview of Creator Timeline FCPXML 08
fcpxml
439 B
Actual file preview for Creator Timeline FCPXML 08

Creator Timeline FCPXML 08

Download-only FCPXML timeline fixture 08 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-fcpxml-08.

File
FCPXML · Captions Timelines Projects
Preview of Creator Timeline FCPXML 09
fcpxml
439 B
Actual file preview for Creator Timeline FCPXML 09

Creator Timeline FCPXML 09

Download-only FCPXML timeline fixture 09 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-fcpxml-09.

File
FCPXML · Captions Timelines Projects
Preview of Creator Timeline FCPXML 10
fcpxml
439 B
Actual file preview for Creator Timeline FCPXML 10

Creator Timeline FCPXML 10

Download-only FCPXML timeline fixture 10 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-fcpxml-10.

File
FCPXML · Captions Timelines Projects
Preview of Creator Timeline FCPXML 11
fcpxml
439 B
Actual file preview for Creator Timeline FCPXML 11

Creator Timeline FCPXML 11

Download-only FCPXML timeline fixture 11 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-fcpxml-11.

File
FCPXML · Captions Timelines Projects
Preview of Creator Timeline FCPXML 12
fcpxml
439 B
Actual file preview for Creator Timeline FCPXML 12

Creator Timeline FCPXML 12

Download-only FCPXML timeline fixture 12 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-fcpxml-12.

File
FCPXML · Captions Timelines Projects
Preview of Creator Timeline FCPXML 13
fcpxml
439 B
Actual file preview for Creator Timeline FCPXML 13

Creator Timeline FCPXML 13

Download-only FCPXML timeline fixture 13 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-fcpxml-13.

File
FCPXML · Captions Timelines Projects
Preview of Creator Timeline FCPXML 14
fcpxml
439 B
Actual file preview for Creator Timeline FCPXML 14

Creator Timeline FCPXML 14

Download-only FCPXML timeline fixture 14 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-fcpxml-14.

File
FCPXML · Captions Timelines Projects
Preview of Creator Timeline FCPXML 15
fcpxml
439 B
Actual file preview for Creator Timeline FCPXML 15

Creator Timeline FCPXML 15

Download-only FCPXML timeline fixture 15 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-fcpxml-15.

File
FCPXML · Captions Timelines Projects
Preview of Creator Timeline OTIO 01
otio
847 B
Actual file preview for Creator Timeline OTIO 01

Creator Timeline OTIO 01

Download-only OTIO timeline fixture 01 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-otio-01.

File
OTIO · Captions Timelines Projects
Preview of Creator Timeline OTIO 02
otio
847 B
Actual file preview for Creator Timeline OTIO 02

Creator Timeline OTIO 02

Download-only OTIO timeline fixture 02 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-otio-02.

File
OTIO · Captions Timelines Projects
Preview of Creator Timeline OTIO 03
otio
847 B
Actual file preview for Creator Timeline OTIO 03

Creator Timeline OTIO 03

Download-only OTIO timeline fixture 03 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-otio-03.

File
OTIO · Captions Timelines Projects
Preview of Creator Timeline OTIO 04
otio
847 B
Actual file preview for Creator Timeline OTIO 04

Creator Timeline OTIO 04

Download-only OTIO timeline fixture 04 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-otio-04.

File
OTIO · Captions Timelines Projects
Preview of Creator Timeline OTIO 05
otio
847 B
Actual file preview for Creator Timeline OTIO 05

Creator Timeline OTIO 05

Download-only OTIO timeline fixture 05 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-otio-05.

File
OTIO · Captions Timelines Projects
Preview of Creator Timeline OTIO 06
otio
847 B
Actual file preview for Creator Timeline OTIO 06

Creator Timeline OTIO 06

Download-only OTIO timeline fixture 06 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-otio-06.

File
OTIO · Captions Timelines Projects
Preview of Creator Timeline OTIO 07
otio
847 B
Actual file preview for Creator Timeline OTIO 07

Creator Timeline OTIO 07

Download-only OTIO timeline fixture 07 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-otio-07.

File
OTIO · Captions Timelines Projects
Preview of Creator Timeline OTIO 08
otio
847 B
Actual file preview for Creator Timeline OTIO 08

Creator Timeline OTIO 08

Download-only OTIO timeline fixture 08 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-otio-08.

File
OTIO · Captions Timelines Projects
Preview of Creator Timeline OTIO 09
otio
847 B
Actual file preview for Creator Timeline OTIO 09

Creator Timeline OTIO 09

Download-only OTIO timeline fixture 09 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-otio-09.

File
OTIO · Captions Timelines Projects
Preview of Creator Timeline OTIO 10
otio
847 B
Actual file preview for Creator Timeline OTIO 10

Creator Timeline OTIO 10

Download-only OTIO timeline fixture 10 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-otio-10.

File
OTIO · Captions Timelines Projects
Preview of Creator Timeline OTIO 11
otio
847 B
Actual file preview for Creator Timeline OTIO 11

Creator Timeline OTIO 11

Download-only OTIO timeline fixture 11 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-otio-11.

File
OTIO · Captions Timelines Projects
Preview of Creator Timeline OTIO 12
otio
847 B
Actual file preview for Creator Timeline OTIO 12

Creator Timeline OTIO 12

Download-only OTIO timeline fixture 12 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-otio-12.

File
OTIO · Captions Timelines Projects
Preview of Creator Timeline OTIO 13
otio
847 B
Actual file preview for Creator Timeline OTIO 13

Creator Timeline OTIO 13

Download-only OTIO timeline fixture 13 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-otio-13.

File
OTIO · Captions Timelines Projects
Preview of Creator Timeline OTIO 14
otio
847 B
Actual file preview for Creator Timeline OTIO 14

Creator Timeline OTIO 14

Download-only OTIO timeline fixture 14 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-otio-14.

File
OTIO · Captions Timelines Projects
Preview of Creator Timeline OTIO 15
otio
847 B
Actual file preview for Creator Timeline OTIO 15

Creator Timeline OTIO 15

Download-only OTIO timeline fixture 15 carrying a deterministic two-second edit reference without embedding playable media. Stable P8 artifact p8-video-timeline-otio-15.

File
OTIO · Captions Timelines Projects