GeoJsonOutput.h 854 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // Copyright 2016, University of Freiburg,
  2. // Chair of Algorithms and Data Structures.
  3. // Authors: Patrick Brosi <brosi@informatik.uni-freiburg.de>
  4. #ifndef UTIL_GEO_OUTPUT_GEOJSONOUTPUT_H_
  5. #define UTIL_GEO_OUTPUT_GEOJSONOUTPUT_H_
  6. #include <ostream>
  7. #include <string>
  8. #include <map>
  9. #include "util/String.h"
  10. #include "util/geo/Geo.h"
  11. #include "util/json/Writer.h"
  12. namespace util {
  13. namespace geo {
  14. namespace output {
  15. class GeoJsonOutput {
  16. public:
  17. GeoJsonOutput(std::ostream& str);
  18. GeoJsonOutput(std::ostream& str, json::Val attrs);
  19. ~GeoJsonOutput();
  20. template <typename T>
  21. void print(const Point<T>& p, json::Val attrs);
  22. template <typename T>
  23. void print(const Line<T>& l, json::Val attrs);
  24. void flush();
  25. private:
  26. json::Writer _wr;
  27. };
  28. #include "util/geo/output/GeoJsonOutput.tpp"
  29. }
  30. }
  31. }
  32. #endif // UTIL_GEO_OUTPUT_GEOJSONOUTPUT_H_