GammaLib 2.0.0
Loading...
Searching...
No Matches
GWcsCAR.cpp
Go to the documentation of this file.
1/***************************************************************************
2 * GWcsCAR.cpp - Plate carree (CAR) projection class *
3 * ----------------------------------------------------------------------- *
4 * copyright (C) 2010-2021 by Jurgen Knodlseder *
5 * ----------------------------------------------------------------------- *
6 * *
7 * This program is free software: you can redistribute it and/or modify *
8 * it under the terms of the GNU General Public License as published by *
9 * the Free Software Foundation, either version 3 of the License, or *
10 * (at your option) any later version. *
11 * *
12 * This program is distributed in the hope that it will be useful, *
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
15 * GNU General Public License for more details. *
16 * *
17 * You should have received a copy of the GNU General Public License *
18 * along with this program. If not, see <http://www.gnu.org/licenses/>. *
19 * *
20 ***************************************************************************/
21/**
22 * @file GWcsCAR.cpp
23 * @brief Plate carree (CAR) projection class implementation
24 * @author Juergen Knoedlseder
25 */
26
27/* __ Includes ___________________________________________________________ */
28#ifdef HAVE_CONFIG_H
29#include <config.h>
30#endif
31#include "GException.hpp"
32#include "GMath.hpp"
33#include "GWcsCAR.hpp"
34#include "GWcsRegistry.hpp"
35
36/* __ Method name definitions ____________________________________________ */
37#define G_PRJ_X2S "GWcsCAR::prj_x2s(int, int, int, int, double*, double*,"\
38 " double*, double*, int*)"
39
40/* __ Macros _____________________________________________________________ */
41
42/* __ Coding definitions _________________________________________________ */
43
44/* __ Debug definitions __________________________________________________ */
45
46/* __ Local prototypes ___________________________________________________ */
47
48/* __ Constants __________________________________________________________ */
49
50/* __ Globals ____________________________________________________________ */
52const GWcsRegistry g_wcs_car_registry(&g_wcs_car_seed);
53
54
55/*==========================================================================
56 = =
57 = Constructors/destructors =
58 = =
59 ==========================================================================*/
60
61/***********************************************************************//**
62 * @brief Void constructor
63 ***************************************************************************/
65{
66 // Initialise class members
68
69 // Return
70 return;
71}
72
73
74/***********************************************************************//**
75 * @brief Constructor
76 *
77 * @param[in] coords Coordinate system.
78 * @param[in] crval1 X value of reference pixel.
79 * @param[in] crval2 Y value of reference pixel.
80 * @param[in] crpix1 X index of reference pixel (starting from 1).
81 * @param[in] crpix2 Y index of reference pixel (starting from 1).
82 * @param[in] cdelt1 Increment in x direction at reference pixel [deg].
83 * @param[in] cdelt2 Increment in y direction at reference pixel [deg].
84 ***************************************************************************/
85GWcsCAR::GWcsCAR(const std::string& coords,
86 const double& crval1, const double& crval2,
87 const double& crpix1, const double& crpix2,
88 const double& cdelt1, const double& cdelt2) :
89 GWcs(coords, crval1, crval2, crpix1, crpix2, cdelt1, cdelt2)
90
91{
92 // Initialise class members
94
95 // Setup WCS derived parameters
96 wcs_set();
97
98 // Return
99 return;
100}
101
102
103/***********************************************************************//**
104 * @brief Copy constructor
105 *
106 * @param[in] wcs World Coordinate System.
107 ***************************************************************************/
108GWcsCAR::GWcsCAR(const GWcsCAR& wcs) : GWcs(wcs)
109{
110 // Initialise class members for clean destruction
111 init_members();
112
113 // Copy members
114 copy_members(wcs);
115
116 // Return
117 return;
118}
119
120
121/***********************************************************************//**
122 * @brief Destructor
123 ***************************************************************************/
125{
126 // Free members
127 free_members();
128
129 // Return
130 return;
131}
132
133
134/*==========================================================================
135 = =
136 = Operators =
137 = =
138 ==========================================================================*/
139
140/***********************************************************************//**
141 * @brief Assignment operator
142 *
143 * @param[in] wcs World Coordinate System.
144 ***************************************************************************/
146{
147 // Execute only if object is not identical
148 if (this != &wcs) {
149
150 // Copy base class members
151 this->GWcs::operator=(wcs);
152
153 // Free members
154 free_members();
155
156 // Initialise private members for clean destruction
157 init_members();
158
159 // Copy members
160 copy_members(wcs);
161
162 } // endif: object was not identical
163
164 // Return this object
165 return *this;
166}
167
168
169/*==========================================================================
170 = =
171 = Public methods =
172 = =
173 ==========================================================================*/
174
175/***********************************************************************//**
176 * @brief Clear instance
177 *
178 * This method properly resets the object to an initial state.
179 ***************************************************************************/
181{
182 // Free class members (base and derived classes, derived class first)
183 free_members();
184 this->GWcs::free_members();
186
187 // Initialise members
189 this->GWcs::init_members();
190 init_members();
191
192 // Return
193 return;
194}
195
196
197/***********************************************************************//**
198 * @brief Clone instance
199 *
200 * @return Pointer to deep copy of World Coordinate System.
201 ***************************************************************************/
203{
204 return new GWcsCAR(*this);
205}
206
207
208
209/***********************************************************************//**
210 * @brief Print WCS information
211 *
212 * @param[in] chatter Chattiness (defaults to NORMAL).
213 * @return String containing WCS information.
214 ***************************************************************************/
215std::string GWcsCAR::print(const GChatter& chatter) const
216{
217 // Initialise result string
218 std::string result;
219
220 // Continue only if chatter is not silent
221 if (chatter != SILENT) {
222
223 // Append header
224 result.append("=== GWcsCAR ===");
225
226 // Append information
227 result.append(wcs_print(chatter));
228
229 } // endif: chatter was not silent
230
231 // Return result
232 return result;
233}
234
235
236/*==========================================================================
237 = =
238 = Private methods =
239 = =
240 ==========================================================================*/
241
242/***********************************************************************//**
243 * @brief Initialise class members
244 ***************************************************************************/
246{
247 // Return
248 return;
249}
250
251
252/***********************************************************************//**
253 * @brief Copy class members
254 *
255 * @param[in] wcs World Coordinate System.
256 ***************************************************************************/
258{
259 // Return
260 return;
261}
262
263
264/***********************************************************************//**
265 * @brief Delete class members
266 ***************************************************************************/
268{
269 // Return
270 return;
271}
272
273
274/***********************************************************************//**
275 * @brief Setup of projection
276 *
277 * This method sets up the projection information. The method has been
278 * adapted from the wcslib function prj.c::carset.
279 *
280 * Given and/or returned:
281 * m_r0 Reset to 180/pi if 0.
282 * m_phi0 Reset to 0.0 if undefined.
283 * m_theta0 Reset to 0.0 if undefined.
284 *
285 * Returned:
286 * m_x0 Fiducial offset in x.
287 * m_y0 Fiducial offset in y.
288 * m_w[0] r0*(pi/180)
289 * m_w[1] (180/pi)/r0
290 ***************************************************************************/
291void GWcsCAR::prj_set(void) const
292{
293 // Signal that projection has been set (needs to be done before calling
294 // the prj_off() method to avoid an endless loop)
295 m_prjset = true;
296
297 // Initialise projection parameters
298 m_w.clear();
299
300 // Precompute
301 if (m_r0 == 0.0) {
303 m_w.push_back(1.0);
304 m_w.push_back(1.0);
305 }
306 else {
307 m_w.push_back(m_r0 * gammalib::deg2rad);
308 m_w.push_back(1.0/m_w[0]);
309 }
310
311 // Compute fiducial offset
312 prj_off(0.0, 0.0);
313
314 // Return
315 return;
316}
317
318
319/***********************************************************************//**
320 * @brief Cartesian-to-spherical deprojection
321 *
322 * @param[in] nx X vector length.
323 * @param[in] ny Y vector length (0=no replication).
324 * @param[in] sxy Input vector step.
325 * @param[in] spt Output vector step.
326 * @param[in] x Vector of projected x coordinates.
327 * @param[in] y Vector of projected y coordinates.
328 * @param[out] phi Longitude of the projected point in native spherical
329 * coordinates [deg].
330 * @param[out] theta Latitude of the projected point in native spherical
331 * coordinates [deg].
332 * @param[out] stat Status return value for each vector element (always 0)
333 *
334 * Deproject Cartesian (x,y) coordinates in the plane of projection to native
335 * spherical coordinates (phi,theta).
336 *
337 * This method has been adapted from the wcslib function prj.c::carx2s().
338 * The interface follows very closely that of wcslib. In contrast to the
339 * wcslib routine, however, the method assumes that the projection has been
340 * setup previously (as this will be done by the constructor).
341 ***************************************************************************/
342void GWcsCAR::prj_x2s(int nx, int ny, int sxy, int spt,
343 const double* x, const double* y,
344 double* phi, double* theta, int* stat) const
345{
346 // Initialize projection if required
347 if (!m_prjset) {
348 prj_set();
349 }
350
351 // Set value replication length mx,my
352 int mx;
353 int my;
354 if (ny > 0) {
355 mx = nx;
356 my = ny;
357 }
358 else {
359 mx = 1;
360 my = 1;
361 ny = nx;
362 }
363
364 // Do x dependence
365 const double* xp = x;
366 int rowoff = 0;
367 int rowlen = nx * spt;
368 for (int ix = 0; ix < nx; ++ix, rowoff += spt, xp += sxy) {
369 double s = m_w[1] * (*xp + m_x0);
370 double* phip = phi + rowoff;
371 for (int iy = 0; iy < my; ++iy, phip += rowlen) {
372 *phip = s;
373 }
374 }
375
376 // Do y dependence
377 const double* yp = y;
378 double* thetap = theta;
379 int* statp = stat;
380 for (int iy = 0; iy < ny; ++iy, yp += sxy) {
381 double t = m_w[1] * (*yp + m_y0);
382 for (int ix = 0; ix < mx; ++ix, thetap += spt) {
383 *thetap = t;
384 *(statp++) = 0;
385 }
386 }
387
388 // Do boundary checking
389 int status = prj_bchk(1.0e-13, nx, my, spt, phi, theta, stat);
390
391 // Check status code
393
394 // Return
395 return;
396}
397
398
399/***********************************************************************//**
400 * @brief Generic spherical-to-Cartesian projection
401 *
402 * @param[in] nphi Longitude vector length.
403 * @param[in] ntheta Latitude vector length (0=no replication).
404 * @param[in] spt Input vector step.
405 * @param[in] sxy Output vector step.
406 * @param[in] phi Longitude vector of the projected point in native spherical
407 * coordinates [deg].
408 * @param[in] theta Latitude vector of the projected point in native spherical
409 * coordinates [deg].
410 * @param[out] x Vector of projected x coordinates.
411 * @param[out] y Vector of projected y coordinates.
412 * @param[out] stat Status return value for each vector element (always 0)
413 *
414 * Project native spherical coordinates (phi,theta) to Cartesian (x,y)
415 * coordinates in the plane of projection.
416 *
417 * This method has been adapted from the wcslib function prj.c::cars2x().
418 * The interface follows very closely that of wcslib. In contrast to the
419 * wcslib routine, however, the method assumes that the projection has been
420 * setup previously (as this will be done by the constructor).
421 ***************************************************************************/
422void GWcsCAR::prj_s2x(int nphi, int ntheta, int spt, int sxy,
423 const double* phi, const double* theta,
424 double* x, double* y, int* stat) const
425{
426 // Initialize projection if required
427 if (!m_prjset) {
428 prj_set();
429 }
430
431 // Set value replication length mphi,mtheta
432 int mphi;
433 int mtheta;
434 if (ntheta > 0) {
435 mphi = nphi;
436 mtheta = ntheta;
437 }
438 else {
439 mphi = 1;
440 mtheta = 1;
441 ntheta = nphi;
442 }
443
444 // Do phi dependence
445 const double* phip = phi;
446 int rowoff = 0;
447 int rowlen = nphi * sxy;
448 for (int iphi = 0; iphi < nphi; ++iphi, rowoff += sxy, phip += spt) {
449 double xi = m_w[0] * (*phip) - m_x0;
450 double* xp = x + rowoff;
451 for (int itheta = 0; itheta < mtheta; ++itheta, xp += rowlen) {
452 *xp = xi;
453 }
454 }
455
456
457 // Do theta dependence
458 const double* thetap = theta;
459 double* yp = y;
460 int* statp = stat;
461 for (int itheta = 0; itheta < ntheta; ++itheta, thetap += spt) {
462 double eta = m_w[0] * (*thetap) - m_y0;
463 for (int iphi = 0; iphi < mphi; ++iphi, yp += sxy) {
464 *yp = eta;
465 *(statp++) = 0;
466 }
467 }
468
469 // Return
470 return;
471}
Exception handler interface definition.
Mathematical function definitions.
GChatter
Definition GTypemaps.hpp:33
@ SILENT
Definition GTypemaps.hpp:34
#define G_PRJ_X2S
Definition GWcsAIT.cpp:38
const GWcsCAR g_wcs_car_seed
Definition GWcsCAR.cpp:51
Plate carree (CAR) projection class definition.
World Coordinate Projection registry class interface definition.
void free_members(void)
Delete class members.
void init_members(void)
Initialise class members.
Plate carree (CAR) projection class definition.
Definition GWcsCAR.hpp:43
virtual ~GWcsCAR(void)
Destructor.
Definition GWcsCAR.cpp:124
virtual GWcsCAR * clone(void) const
Clone instance.
Definition GWcsCAR.cpp:202
void prj_x2s(int nx, int ny, int sxy, int spt, const double *x, const double *y, double *phi, double *theta, int *stat) const
Cartesian-to-spherical deprojection.
Definition GWcsCAR.cpp:342
void init_members(void)
Initialise class members.
Definition GWcsCAR.cpp:245
void copy_members(const GWcsCAR &wcs)
Copy class members.
Definition GWcsCAR.cpp:257
virtual void clear(void)
Clear instance.
Definition GWcsCAR.cpp:180
GWcsCAR & operator=(const GWcsCAR &wcs)
Assignment operator.
Definition GWcsCAR.cpp:145
virtual std::string print(const GChatter &chatter=NORMAL) const
Print WCS information.
Definition GWcsCAR.cpp:215
void free_members(void)
Delete class members.
Definition GWcsCAR.cpp:267
void prj_s2x(int nphi, int ntheta, int spt, int sxy, const double *phi, const double *theta, double *x, double *y, int *stat) const
Generic spherical-to-Cartesian projection.
Definition GWcsCAR.cpp:422
GWcsCAR(void)
Void constructor.
Definition GWcsCAR.cpp:64
void prj_set(void) const
Setup of projection.
Definition GWcsCAR.cpp:291
Interface definition for the WCS registry class.
Abstract world coordinate system base class.
Definition GWcs.hpp:51
void free_members(void)
Delete class members.
Definition GWcs.cpp:1066
int prj_bchk(const double &tol, const int &nphi, const int &ntheta, const int &spt, double *phi, double *theta, int *stat) const
Performs bounds checking on native spherical coordinates.
Definition GWcs.cpp:3281
void prj_off(const double &phi0, const double &theta0) const
Compute fiducial offset to force (x,y) = (0,0) at (phi0,theta0)
Definition GWcs.cpp:3232
virtual GWcs & operator=(const GWcs &wcs)
Assignment operator.
Definition GWcs.cpp:180
std::string wcs_print(const GChatter &chatter=NORMAL) const
Print WCS information.
Definition GWcs.cpp:1642
void init_members(void)
Initialise class members.
Definition GWcs.cpp:962
void wcs_set(void) const
Setup of World Coordinate System.
Definition GWcs.cpp:1262
bool m_prjset
Projection is set.
Definition GWcs.hpp:211
std::vector< double > m_w
Intermediate values.
Definition GWcs.hpp:217
double m_y0
Fiducial y offset.
Definition GWcs.hpp:216
double m_x0
Fiducial x offset.
Definition GWcs.hpp:215
double m_r0
Radius of the generating sphere.
Definition GWcs.hpp:212
const double deg2rad
Definition GMath.hpp:43
void check_prj_x2s_status(const std::string &origin, const int &status, const int &number)
Checks status of GWcs::prj_x2s method.
const double rad2deg
Definition GMath.hpp:44