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 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
|
#pragma once
#include "glGrib/Geometry.h"
#include "glGrib/Trigonometry.h"
#include "glGrib/Options.h"
#include "glGrib/Handle.h"
namespace glGrib
{
class GeometryLambert : public Geometry
{
public:
explicit GeometryLambert (HandlePtr);
void setup (HandlePtr, const OptionsGeometry &) override;
static const double a;
private:
class latlon_t
{
public:
latlon_t () {}
explicit latlon_t (double _lon, double _lat) : lon (_lon), lat (_lat) {}
double lon = 0.0, lat = 0.0;
};
class latlon_j_t
{
public:
latlon_j_t (const latlon_t & _V, const latlon_t & _A, const latlon_t & _B)
: V (_V), A (_A), B (_B) {}
latlon_t V, A, B;
};
class xy_t
{
public:
xy_t () {}
explicit xy_t (double _x, double _y) : x (_x), y (_y) {}
double x = 0.0, y = 0.0;
xy_t operator+ (const xy_t & p)
{
return xy_t (x + p.x, y + p.y);
}
xy_t operator- (const xy_t & p)
{
return xy_t (x - p.x, y - p.y);
}
};
class xy_j_t
{
public:
explicit xy_j_t (const xy_t & _V, const xy_t & _A, const xy_t & _B)
: V (_V), A (_A), B (_B) {}
xy_t V, A, B;
};
class rtheta_t
{
public:
explicit rtheta_t (double _r, double _theta) : r (_r), theta (_theta) {}
double r, theta;
};
class rtheta_j_t
{
public:
explicit rtheta_j_t (const rtheta_t & _V, const rtheta_t & _A, const rtheta_t & _B)
: V (_V), A (_A), B (_B) {}
rtheta_t V, A, B;
};
static inline double sign (const double & a, const double & b)
{
return b > 0 ? +std::abs (a) : -std::abs (a);
}
static inline double dist2ref (const latlon_t & pt_coord, const latlon_t & ref_coord)
{
double z = pt_coord.lon - ref_coord.lon;
z = z - sign (pi, z) * (1.0 + sign (1.0, std::abs (z) - pi));
return -z * sign (1.0, z - pi);
}
class proj_t
{
public:
proj_t () {}
explicit proj_t (double lon, double lat, double _pole) : ref_pt (lon, lat), pole (_pole)
{
kl = pole * std::sin (ref_pt.lat);
r_equateur = a * std::pow (std::cos (ref_pt.lat), 1.0 - kl) * std::pow (1.0 + kl, kl) / kl;
}
latlon_t ref_pt;
double pole;
double r_equateur;
double kl;
const latlon_j_t rthetaToLatLon (const rtheta_j_t & pt_rtheta) const
{
return latlon_j_t
(
latlon_t
(
ref_pt.lon + pt_rtheta.V.theta / kl,
pole * ((pi / 2.0) - 2.0 * std::atan (std::pow (pt_rtheta.V.r / r_equateur, 1.0 / kl)))
),
latlon_t
(
pt_rtheta.A.theta / kl,
pole * (-2.0 * std::pow (pt_rtheta.V.r, 1.0 / kl - 1.0) * pt_rtheta.A.r) /
(kl * std::pow (r_equateur, 1.0 / kl) * (1.0 + std::pow (pt_rtheta.V.r / r_equateur, 2.0 / kl)))
),
latlon_t
(
pt_rtheta.B.theta / kl,
pole * (-2.0 * std::pow (pt_rtheta.V.r, 1.0 / kl - 1.0) * pt_rtheta.B.r) /
(kl * std::pow (r_equateur, 1.0 / kl) * (1.0 + std::pow (pt_rtheta.V.r / r_equateur, 2.0 / kl)))
)
);
}
const latlon_t rthetaToLatLon (const rtheta_t & pt_rtheta) const
{
return latlon_t (ref_pt.lon + pt_rtheta.theta / kl,
pole * ((pi / 2.0) - 2.0 * std::atan(std::pow (pt_rtheta.r / r_equateur, 1.0 / kl))));
}
const rtheta_j_t xy_to_rtheta (const xy_j_t & pt_xy) const
{
double r2 = pt_xy.V.x * pt_xy.V.x + pt_xy.V.y * pt_xy.V.y;
double r = std::sqrt (r2);
double dr_dA = (pt_xy.V.x * pt_xy.A.x + pt_xy.V.y * pt_xy.A.y) / r;
double dr_dB = (pt_xy.V.x * pt_xy.B.x + pt_xy.V.y * pt_xy.B.y) / r;
double tatng;
double theta, dtheta_dA, dtheta_dB;
if (pt_xy.V.y == 0.0)
tatng = (pt_xy.V.x == 0.0) ? pi : sign (pi / 2.0, -pole * pt_xy.V.x);
else
tatng = std::atan (-pole * (pt_xy.V.x / pt_xy.V.y));
theta = pi * sign (1.0, pt_xy.V.x) * (sign (0.5, pole * pt_xy.V.y) + 0.5) + tatng;
if (r2 > 0.0)
{
dtheta_dA = -pole * (pt_xy.V.y * pt_xy.A.x - pt_xy.V.x * pt_xy.A.y) / r2;
dtheta_dB = -pole * (pt_xy.V.y * pt_xy.B.x - pt_xy.V.x * pt_xy.B.y) / r2;
}
else
{
dtheta_dA = 0.0;
dtheta_dB = 0.0;
}
return rtheta_j_t (rtheta_t (r, theta), rtheta_t (dr_dA, dtheta_dA), rtheta_t (dr_dB, dtheta_dB));
}
const rtheta_t xy_to_rtheta (const xy_t & pt_xy) const
{
double r = std::sqrt(pt_xy.x * pt_xy.x + pt_xy.y * pt_xy.y);
double tatng;
double theta;
if (pt_xy.y == 0.0)
tatng = (pt_xy.x == 0.0) ? pi : sign (pi / 2.0, -pole * pt_xy.x);
else
tatng = std::atan (-pole * (pt_xy.x / pt_xy.y));
theta = pi * sign (1.0, pt_xy.x) * (sign (0.5, pole * pt_xy.y) + 0.5) + tatng;
return rtheta_t (r, theta);
}
const latlon_j_t xy_to_latlon (const xy_j_t & pt_xy) const
{
return rthetaToLatLon (xy_to_rtheta (pt_xy));
}
const latlon_t xy_to_latlon (const xy_t & pt_xy) const
{
return rthetaToLatLon (xy_to_rtheta (pt_xy));
}
const rtheta_t latlonToRtheta (const latlon_t & pt_coord) const
{
return rtheta_t
(r_equateur * std::pow (std::tan ((pi / 4.0) - ((pole * pt_coord.lat) / 2.0)), kl),
kl * dist2ref (pt_coord, ref_pt));
}
const xy_t rthetaToXy (const rtheta_t & pt_rtheta) const
{
return xy_t (pt_rtheta.r * std::sin (pt_rtheta.theta), -pole * pt_rtheta.r * std::cos (pt_rtheta.theta));
}
const xy_t latlonToXy (const latlon_t & pt_coord) const
{
return rthetaToXy (latlonToRtheta (pt_coord));
}
};
public:
bool isEqual (const Geometry &) const override;
void getPointNeighbours (int, std::vector<int> *) const override;
int latlon2index (float, float) const override;
void index2latlon (int, float *, float *) const override;
int size () const override;
virtual ~GeometryLambert ();
void applyNormScale (glGrib::BufferPtr<float> &) const override {}
void applyUVangle (glGrib::BufferPtr<float> &) const override;
void sample (OpenGLBufferPtr<unsigned char> &, const unsigned char, const int) const override;
void sampleTriangle (BufferPtr<unsigned char> &, const unsigned char, const int) const override;
float resolution (int = 0) const override;
void getTriangleVertices (int, int [3]) const override;
void getTriangleNeighbours (int, int [3], int [3], glm::vec3 [3]) const override;
void getTriangleNeighbours (int, int [3], int [3], glm::vec2 [3]) const override;
bool triangleIsEdge (int) const override;
int getTriangle (float, float) const override;
const glm::vec2 xyz2conformal (const glm::vec3 &) const override;
const glm::vec3 conformal2xyz (const glm::vec2 &) const override;
const glm::vec2 conformal2latlon (const glm::vec2 &) const override;
void fixPeriodicity (const glm::vec2 &, glm::vec2 *, int) const override {}
float getLocalMeshSize (int) const override;
void getView (View *) const override;
void setProgramParameters (Program *) const override;
private:
void setupFrame ();
const std::string md5 () const override;
void getTriangleNeighboursXY (int, int [3], int [3], xy_t [4]) const;
void setupCoordinates ();
private:
// Grid
struct
{
long int Nx = 0, Ny = 0;
} grid_lambert;
// Other
struct
{
long int Nux, Nuy, projectionCentreFlag;
double LaDInDegrees, LoVInDegrees, DxInMetres, DyInMetres;
proj_t p_pj;
xy_t center_xy;
} misc_lambert;
};
}
|