@author fakgun
An ISO/IEC 8211 file is a binary data file format designed to be self-describing, meaning it includes the information needed to parse its own structure. It's often used in geospatial datasets like S-57 and S-101 ENCs.
• Leader • Directory • Field Area
An ISO 8211 file is a sequence of logical records. In S-101 exchange sets each .000
file contains:
Each logical record follows the same physical structure:
┌───────────────────────────────────────────────────────────────────┐
│ Leader (24 bytes) │
├───────────────────────────────────────────────────────────────────┤
│ Directory (n × 12 bytes entries) + Directory Terminator (0x1E) │
├───────────────────────────────────────────────────────────────────┤
│ Field Area: Fields (with their own terminators) │
│ … │
├───────────────────────────────────────────────────────────────────┤
│ Record Terminator (Field Terminator, 0x1E) │
└───────────────────────────────────────────────────────────────────┘
ISO 8211 File
[DDR Record]
└── Leader
└── Directory (tags → locations of fields)
└── Field Area
└── Field 0001:
└── Field 0002:
└── Field 0003:
└── ...
[Data Record 1]
└── Leader
└── Directory
└── Field Area
[Data Record 2]
└── Leader
└── Directory
└── Field Area
[Data Record 3]
└── ...
The ISO file preview document found on internet https://cdn.standards.iteh.ai/samples/20305/1c6d074d5aec4348b1eb2bfbcffc6260/ISO-IEC-8211-1994.pdf 📕
Referenced Documents