Trenesis/lib/trenesis/geojson.h
Paul Breugnot 61aec3d856 Internal train network structure
- Defines Network, StopArea, StopPoints and JourneySections
- Loads them from json using the build_from_json method
2026-01-03 14:34:00 +01:00

10 lines
141 B
C++

#pragma once
namespace trenesis {
struct Point {
double longitude;
double latitude;
Point(double longitude, double latitude);
};
}