OpenSWMM Engine  6.0.0-alpha.1
Data-oriented, plugin-extensible SWMM Engine (6.0.0-alpha.1)
Loading...
Searching...
No Matches
ClimateFormat.hpp
Go to the documentation of this file.
1
23
24#ifndef OPENSWMM_GEOPACKAGE_CLIMATE_FORMAT_HPP
25#define OPENSWMM_GEOPACKAGE_CLIMATE_FORMAT_HPP
26
27#include "FormatTypes.hpp"
28
29#include <string>
30#include <vector>
31
33
34FormatResult parseClimateCsv(const std::string& path,
35 std::vector<ClimateRow>& rows);
36
37FormatResult writeClimateCsv(const std::string& path,
38 const std::vector<ClimateRow>& rows);
39
40} // namespace openswmm::gpkg::formats
41
42#endif // OPENSWMM_GEOPACKAGE_CLIMATE_FORMAT_HPP
Plain-data types shared by every external-file format parser.
Definition ClimateFormat.cpp:19
FormatResult writeClimateCsv(const std::string &path, const std::vector< ClimateRow > &rows)
Definition ClimateFormat.cpp:107
FormatResult parseClimateCsv(const std::string &path, std::vector< ClimateRow > &rows)
Definition ClimateFormat.cpp:59
Lightweight outcome for format parse / materialise calls.
Definition FormatTypes.hpp:165