Packages

Elixir parser and decoder for OpenStreetMap PBF format described in PBF file specification.

Current section

Files

Jump to
pbf_parser lib data relation.ex
Raw

lib/data/relation.ex

defmodule PBFParser.Data.Relation do
@moduledoc """
Struct representing a single OSM relation.
"""
defstruct id: nil,
members: nil,
tags: nil,
info: nil
end