1#ifndef NGEN_GEOPACKAGE_PROJ_HPP
2#define NGEN_GEOPACKAGE_PROJ_HPP
4#include <boost/geometry/srs/projection.hpp>
5#include <unordered_map>
10namespace bg = boost::geometry;
14 using srs_type = bg::srs::dpar::parameters<double>;
25 using def_type = std::unordered_map<int, srs_type>;
Definition DomainLayer.hpp:9
@ wgs84
Definition proj.hpp:17
@ mercator
Definition proj.hpp:19
@ conus_albers
Definition proj.hpp:18
static const def_type defs_
Definition proj.hpp:26
std::unordered_map< int, srs_type > def_type
Definition proj.hpp:25
bg::srs::dpar::parameters< double > srs_type
Definition proj.hpp:14
static srs_type get(uint32_t srid)
Definition proj.cpp:12