The osm submodule contains definition of the basic data types used throughout the library.
Native OSM object classes are lightwight wrappers around the osmium OSM data classes. They are immutable and generally bound to the life-time of the buffer they are saved in.
There are five classes representing the basic OSM entities.
This is the base class for all OSM entity classes below and contains all common attributes.
(read-only) Id of changeset where this version of the object was created.
(read-only) True if the object is no longer visible.
(read-only) OSM id of the object.
Get the absolute value of the id of this object.
(read-only) List of tags describing the object. See osmium.osm.TagList.
(read-only) Date when this version has been created, returned as a datetime.datetime.
(read-only) Id of the user that created this version of the object. Only this ID uniquely identifies users.
(read-only) Name of the user that created this version. Be aware that user names can change, so that the same user ID may appear with different names and vice versa.
Check if the user anonymous. If true, the uid does not uniquely identify a single user but only the group of all anonymous users in general.
(read-only) Version number of the object.
(read-only) True if the object is visible.
Represents a single OSM node. It inherits from OSMObjects and adds a single attribute, the location.
The geographic coordinates of the node. See osmium.osm.Location.
Represents a OSM way. It inherits the attributes from OSMObjects and adds an ordered list of nodes that describes the way.
True if the start and end node are exactly the same.
True if the start and end node of the way are at the same location.Throws an exception if the location of one of the nodes is missing.
True if the start and end node are the same (synonym for ends_have_same_id).
(read-only) Ordered list of nodes. See osmium.osm.WayNodeList.
Represents a OSM relation. It inherits the attributes from OSMObjects and adds an ordered list of members.
(read-only) Ordered list of relation members. See osmium.osm.RelationMemberList
Areas are a special kind of meta-object representing a polygon. They can either be derived from closed ways or from relations that represent multipolygons. They also inherit the attributes of OSMObjects and in addition contain polygon geometries. Areas have their own unique id space. This is computed as the OSM id times 2 and for relations 1 is added,
Return true if the area was created from a way, false if it was created from a relation of multipolygon type.
Return an iterator over all inner rings of the multipolygon.
Return true if this area is a true multipolygon, i.e. it consists of multiple outer rings.
Return a tuple with the number of outer rings and inner rings.
Compute the original OSM id of this object. Note that this is not necessarily unique because the object might be a way or relation which have an overlapping id space.
Return an iterator over all outer rings of the multipolygon.
A changeset description.
(read-only) The bounding box of the area that was edited.
(read-only) Timestamp when the changeset was finalized. May be None when the changeset is still open/
(read-only) Timestamp when the changeset was first opened.
(read-only) Unique ID of the changeset.
(read-only) The total number of objects changed in this Changeset.
(read-only) True when the changeset is still open.
(read-only) List of tags describing the changeset. See osmium.osm.TagList.
(read-only) User ID of the changeset creator.
(read-only) Name of the user that created the changeset. Be aware that user names can change, so that the same user ID may appear with different names and vice versa.
Check if the user anonymous. If true, the uid does not uniquely identify a single user but only the group of all anonymous users in general.
The objects in osmium.osm.mutable are Python versions of the native OSM objects that can be modified. You can use these classes as a base class for your own objects or to modify objects read from a file.
Mutable version of osmium.osm.OSMObject. It exposes the following attributes id, version, visible, changeset, timestamp, uid and tags. Timestamps may be strings or datetime objects. Tags can be an osmium.osm.TagList, a dict-like object or a list of tuples, where each tuple contains a (key value) string pair.
If the base parameter is given in the constructor, then the object will be initialised first from the attributes of this base object.
The mutable version of osmium.osm.Node. It inherits all attributes from osmium.osm.mutable.OSMObject and adds a location attribute. This may either be an osmium.osm.Location or a tuple of lon/lat coordinates.
The mutable version of osmium.osm.Way. It inherits all attributes from osmium.osm.mutable.OSMObject and adds a nodes attribute. This may either be and osmium.osm.NodeList or a list consisting of osmium.osm.NodeRef or simple node ids.
The mutable version of osmium.osm.Relation. It inherits all attributes from osmium.osm.mutable.OSMObject and adds a members attribute. This may either be an osmium.osm.RelationMemberList or a list consisting of osmium.osm.RelationMember or tuples of (type, id, role). The member type should be a single character ‘n’, ‘w’ or ‘r’.
Line geometries in OSM are simply a sequence of nodes. To simplify processing osmium returns such node sequences using a special datatype that contains a reference to the node id and also the location geometry. The latter is only valid if the node locations have been cached by a location handler.
A reference to a OSM node that also caches the nodes location.
(read-only) Latitude (y coordinate) as floating point number.
(read-only) Node coordinates as a osmium.osm.Location object.
(read-only) Longitude (x coordinate) as floating point number.
(read-only) Id of the referenced node.
(read-only) X coordinate (longitude) as a fixed-point integer.
(read-only) Y coordinate (latitude) as a fixed-point integer.
A list of node references, implemented as an immutable sequence of osmium.osm.NodeRef. This class is normally not used directly, use one of its subclasses instead.
True if the start and end node are exactly the same.
True if the start and end node of the way are at the same location. Throws an exception if the location of one of the nodes is missing.
True if the start and end node are the same (synonym for ends_have_same_id).
List of nodes in a way. For its members see osmium.osm.NodeRefList.
List of nodes in an outer ring. For its members see osmium.osm.NodeRefList.
List of nodes in an inner ring. For its members see osmium.osm.NodeRefList.
Some of the attributes of the OSM entities are represented with more complex classes.
A bounding box around a geographic area. Such a box consists of two :py:class:`osmium.osm.Location`s. Those locations may be invalid in which case the box is considered invalid, too.
(read-only) Bottom-left corner of the bounding box.
Check if the given location is inside the box.
Extend the box to include the given location. If the location is invalid the box remains unchanged. If the box is invalid, it will contain only the location after the operation.
Return the size in square degrees.
(read-only) Top-right corner of the bounding box.
Check if the box coordinates are defined and with the usual bounds.
A geographic coordinate in WGS84 projection. A location doesn’t have to be necessarily valid.
(read-only) Latitude (y coordinate) as floating point number.
(read-only) Longitude (x coordinate) as floating point number.
Check that the location is a valid WGS84 coordinate, i.e. that it is within the usual bounds.
(read-only) X coordinate (longitude) as a fixed-point integer.
(read-only) Y coordinate (latitude) as a fixed-point integer.
Member of a relation.
OSM ID of the object. Only unique within the type.
The role of the member within the relation, a free-text string. If no role is set then the string is empty.
Type of object referenced, a node, way or relation.
An immutable sequence of relation members osmium.osm.RelationMember.
A fixed list of tags. The list is exported as an unmutable, dictionary-like object where the keys are tag strings and the items are osmium.osm.Tag.