Scripts to process MATSim events and network files are available in this repository. The output is movement information in SIM format that can by visualized in Metacity and MATSim network converted to ShapeFile.
SIM files
The .sim format is our dedicated file format which stores movement information and metadata about dynamic subjects.
Each file contains a list of dynamic subjects. Continouous movement for each subject is stored as a MultiTimePoint - moovement is defined in time by "start" in seconds, and for each next second are stored the subject coordinates in "geometry". The list of coordinates is encoded as base64 string.
Considering the encoded geometry information uses Krovak projection epsg:5514, you may want to also transform the decoded coordinates under different projection to serve your purposes. Shown is a minimal example:
from pyproj import Transformer
def coord_transform(data = [], epsg_in = 'epsg:5514', epsg_out = 'epsg:4326'):
transformer = Transformer.from_crs(epsg_in, epsg_out)
transformed = []
for x1, y1 in zip(data[0::2],data[1::2]): # data as a list / numpy array of coordinates in Krovak
transformed.append((transformer.transform(x1, y1)))
return transformed # as a list of tuples in WGS84
#using coordinates variable from previous example
print("Coordinates transformed", coord_transform(coordinates))
#output: Coordinates transformed [(50.04210434386703, 14.461103605875014), (50.04210434386703, 14.461103605875014), (50.04181924386716, 14.460703805874642)]