wgs842utm.h 297 B

12345678910111213
  1. #pragma once
  2. #ifndef WGS842UTM_H
  3. #define WGS842UTM_H
  4. #include <gdal_priv.h>
  5. #include <ogr_spatialref.h>
  6. #include "engine.h"
  7. void wgs842utm(const Point& degree_point, Point& point);
  8. void wgs842utmall(const std::vector<Point>& degree_points, std::vector<Point>& points);
  9. #endif // WGS842UTM_Hwob