Map Metadata¶
- class py123d.datatypes.MapMetadata[source]¶
Class to hold metadata information about a map.
Public Data Attributes:
datasetThe dataset name in lowercase.
splitData split name, typically
{dataset_name}_{train/val/test}.log_nameName of the log file.
locationLocation of the map data.
map_has_zIndicates if the map includes Z (elevation) data.
map_is_per_logIndicates if the map is per-log (map for each log) or global (map for multiple logs in dataset).
versionVersion of the py123d library used to create this map metadata.
Public Methods:
from_dict(data_dict)Create a MapMetadata instance from a dictionary.
to_dict()Convert the MapMetadata instance to a dictionary.
Inherited from
BaseMetadatato_dict()Serialize the metadata instance to a plain Python dictionary.
from_dict(data_dict)Construct a metadata instance from a plain Python dictionary.
- property map_is_per_log: bool¶
Indicates if the map is per-log (map for each log) or global (map for multiple logs in dataset).