writes .osrm.properties
| 63 | |
| 64 | // writes .osrm.properties |
| 65 | inline void writeProfileProperties(const std::filesystem::path &path, |
| 66 | const ProfileProperties &properties) |
| 67 | { |
| 68 | const auto fingerprint = storage::tar::FileWriter::GenerateFingerprint; |
| 69 | storage::tar::FileWriter writer{path, fingerprint}; |
| 70 | |
| 71 | serialization::write(writer, "/common/properties", properties); |
| 72 | } |
| 73 | |
| 74 | template <typename EdgeBasedEdgeVector> |
| 75 | void writeEdgeBasedGraph(const std::filesystem::path &path, |