Packages

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

Current section

Files

Jump to
pbf_parser lib data way.ex
Raw

lib/data/way.ex

defmodule PBFParser.Data.Way do
@moduledoc """
Struct representing a single OSM way.
"""
defstruct id: nil,
tags: nil,
info: nil,
refs: nil
end