1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
|
/**
* @file proj.cxx
*/
/* Copyright (C) 2006 Martin Budaj
*
* $Date: $
* $RCSfile: $
* $Revision: $
*
* --------------------------------------------------------------------
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* --------------------------------------------------------------------
*/
#include "thcs.h"
#include "thcsdata.h"
#include "thexception.h"
#include "thproj.h"
#include "thdatabase.h"
#include <fmt/core.h>
#include <map>
#include <string>
#include <list>
std::map<std::string, int> thcs_custom_name2int;
std::map<int, std::string> thcs_custom_int2name;
std::map<int, thcsdata*> thcs_custom_int2data;
std::list<thcsdata> thcs_custom_data;
std::map<thcstrans, const char *> thcs_transformations;
int thcs_custom_id = TTCS_UNKNOWN;
int thcs_parse(const char * name)
{
int sv = thcasematch_token(name, thtt_cs);
if (sv == TTCS_UNKNOWN) {
bool esri = false;
bool epsg = false;
if (strlen(name) > 5) {
if (((name[0] == 'e') || (name[0] == 'E')) && ((name[1] == 's') || (name[1] == 'S')) && ((name[2] == 'r') || (name[2] == 'R')) && ((name[3] == 'i') || (name[3] == 'I'))) esri = true;
if (((name[0] == 'e') || (name[0] == 'E')) && ((name[1] == 'p') || (name[1] == 'P')) && ((name[2] == 's') || (name[2] == 'S')) && ((name[3] == 'g') || (name[3] == 'G'))) epsg = true;
if ((esri || epsg) && (name[4] == ':')) {
int num;
try {
num = std::stoi(&(name[5]));
} catch (...) {
return TTCS_UNKNOWN;
}
if (esri)
return (TTCS_ESRI + num);
else
return (TTCS_EPSG + num);
}
}
}
if (sv == TTCS_UNKNOWN) {
std::map<std::string, int>::iterator it = thcs_custom_name2int.find(std::string(name));
if (it != thcs_custom_name2int.end()) return it->second;
}
return sv;
}
const char * thcs_get_name(int cs)
{
size_t tab_size = ((sizeof(thtt_cs)/sizeof(thstok)) - 1);
const char * csstr;
long i, ii;
i = 0;
ii = -1;
static char buff[20];
if (cs > TTCS_ESRI) {
std::snprintf(buff, sizeof(buff), "ESRI:%d", cs - TTCS_ESRI);
return buff;
}
if (cs > TTCS_EPSG) {
std::snprintf(buff, sizeof(buff), "EPSG:%d", cs - TTCS_EPSG);
return buff;
}
while (i < (long)tab_size) {
if (thtt_cs[i].tok == cs) {
ii = i;
if (strlen(thtt_cs[ii].s) < 6)
break;
}
i++;
}
if (ii > -1)
csstr = thtt_cs[ii].s;
else if (cs < TTCS_UNKNOWN)
return thcs_custom_int2name[cs].c_str();
else
csstr = "unknown";
return csstr;
}
std::string thcs_get_params(int cs) {
return std::string(thcs_get_data(cs)->params);
}
const thcsdata * thcs_get_data(int cs) {
static thcsdata rv;
static char params[200];
static char prjname[200];
rv.dms = false;
rv.output = true;
rv.params = params;
rv.prjname = prjname;
strcpy(prjname, thcs_get_name(cs));
rv.swap = false;
if (cs > TTCS_ESRI) {
std::snprintf(params, sizeof(params), "esri:%d", cs - TTCS_ESRI);
return &rv;
}
if (cs > TTCS_EPSG) {
std::snprintf(params, sizeof(params), "epsg:%d", cs - TTCS_EPSG);
return &rv;
}
if (cs >= 0) return &(thcsdata_table[cs]);
if (cs < TTCS_UNKNOWN) return thcs_custom_int2data[cs];
return NULL;
}
void thcs_add_cs(char * id, char * proj4id)
{
if (thcs_parse(id) != TTCS_UNKNOWN) throw thexception(fmt::format("cs already exists -- {}", id));
if (!th_is_extkeyword(id)) throw thexception(fmt::format("invalid cs identifier -- {}", id));
thcs_check(proj4id);
thcsdata * pd = &(*thcs_custom_data.insert(thcs_custom_data.end(), thcsdata()));
pd->params = thdb.strstore(proj4id);
pd->prjname = thdb.strstore(id);
pd->dms = thcs_islatlong(proj4id);
pd->swap = pd->dms;
pd->output = !pd->dms;
thcs_custom_id--;
thcs_custom_name2int[std::string(id)] = thcs_custom_id;
thcs_custom_int2name[thcs_custom_id] = std::string(id);
thcs_custom_int2data[thcs_custom_id] = pd;
}
bool operator < (const thcstrans & t1, const thcstrans &t2) {
if (t1.from_id < t2.from_id)
return true;
else if ((t1.from_id == t2.from_id) && (t1.to_id < t2.to_id))
return true;
else
return false;
}
std::string thcs_get_trans(int from_cs, int to_cs) {
auto it = thcs_transformations.find(thcstrans(from_cs, to_cs));
if (it == thcs_transformations.end()) return std::string();
return std::string(it->second);
}
void thcs_add_cs_trans_single(const char * from_cs, const char * to_cs, const char * trans) {
int fcs = thcs_parse(from_cs);
if (fcs == TTCS_UNKNOWN) throw thexception(fmt::format("unknown coordinate system -- {}", from_cs));
int tcs = thcs_parse(to_cs);
if (tcs == TTCS_UNKNOWN) throw thexception(fmt::format("unknown coordinate system -- {}", to_cs));
// if (strlen(trans) == 0) ththrow("empty transformation specification");
thcs_transformations[thcstrans(fcs, tcs)] = thdb.strstore(trans, true);
}
void thcs_add_cs_trans(const char * from_css, const char * to_css, const char * trans) {
thmbuffer fcss, tcss;
thsplit_words(&fcss, from_css);
thsplit_words(&tcss, to_css);
for(int i = 0; i < fcss.get_size(); i++) {
for(int j = 0; j < tcss.get_size(); j++) {
thcs_add_cs_trans_single(fcss.get_buffer()[i], tcss.get_buffer()[j], trans);
}
}
//printf("\n\n");
//for(auto it = thcs_transformations.begin(); it != thcs_transformations.end(); it++) {
// printf("%s -> %s: %s\n", thcs_get_name(it->first.from_id), thcs_get_name(it->first.to_id), thcs_get_trans(it->first.from_id, it->first.to_id).c_str());
//}
}
|