~ubuntu-branches/ubuntu/saucy/merkaartor/saucy

« back to all changes in this revision

Viewing changes to include/ggl/projections/proj/larr.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Bernd Zeimetz
  • Date: 2009-09-13 00:52:12 UTC
  • mto: (1.2.7 upstream) (0.1.3 upstream) (3.1.7 sid)
  • mto: This revision was merged to the branch mainline in revision 10.
  • Revision ID: james.westby@ubuntu.com-20090913005212-pjecal8zxm07x0fj
ImportĀ upstreamĀ versionĀ 0.14+svnfixes~20090912

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef GGL_PROJECTIONS_LARR_HPP
 
2
#define GGL_PROJECTIONS_LARR_HPP
 
3
 
 
4
// Generic Geometry Library - projections (based on PROJ4)
 
5
// This file is automatically generated. DO NOT EDIT.
 
6
 
 
7
// Copyright Barend Gehrels (1995-2009), Geodan Holding B.V. Amsterdam, the Netherlands.
 
8
// Copyright Bruno Lalande (2008-2009)
 
9
// Use, modification and distribution is subject to the Boost Software License,
 
10
// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
 
11
// http://www.boost.org/LICENSE_1_0.txt)
 
12
 
 
13
// This file is converted from PROJ4, http://trac.osgeo.org/proj
 
14
// PROJ4 is originally written by Gerald Evenden (then of the USGS)
 
15
// PROJ4 is maintained by Frank Warmerdam
 
16
// PROJ4 is converted to Geometry Library by Barend Gehrels (Geodan, Amsterdam)
 
17
 
 
18
// Original copyright notice:
 
19
 
 
20
// Permission is hereby granted, free of charge, to any person obtaining a
 
21
// copy of this software and associated documentation files (the "Software"),
 
22
// to deal in the Software without restriction, including without limitation
 
23
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
 
24
// and/or sell copies of the Software, and to permit persons to whom the
 
25
// Software is furnished to do so, subject to the following conditions:
 
26
 
 
27
// The above copyright notice and this permission notice shall be included
 
28
// in all copies or substantial portions of the Software.
 
29
 
 
30
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 
31
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
32
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 
33
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 
34
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 
35
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 
36
// DEALINGS IN THE SOFTWARE.
 
37
 
 
38
#include <boost/math/special_functions/hypot.hpp>
 
39
 
 
40
#include <ggl/projections/impl/base_static.hpp>
 
41
#include <ggl/projections/impl/base_dynamic.hpp>
 
42
#include <ggl/projections/impl/projects.hpp>
 
43
#include <ggl/projections/impl/factory_entry.hpp>
 
44
 
 
45
namespace ggl { namespace projection
 
46
{
 
47
    #ifndef DOXYGEN_NO_DETAIL
 
48
    namespace detail { namespace larr{ 
 
49
            static const double SIXTH = .16666666666666666;
 
50
 
 
51
 
 
52
            // template class, using CRTP to implement forward/inverse
 
53
            template <typename Geographic, typename Cartesian, typename Parameters>
 
54
            struct base_larr_spheroid : public base_t_f<base_larr_spheroid<Geographic, Cartesian, Parameters>,
 
55
                     Geographic, Cartesian, Parameters>
 
56
            {
 
57
 
 
58
                 typedef double geographic_type;
 
59
                 typedef double cartesian_type;
 
60
 
 
61
 
 
62
                inline base_larr_spheroid(const Parameters& par)
 
63
                    : base_t_f<base_larr_spheroid<Geographic, Cartesian, Parameters>,
 
64
                     Geographic, Cartesian, Parameters>(*this, par) {}
 
65
 
 
66
                inline void fwd(geographic_type& lp_lon, geographic_type& lp_lat, cartesian_type& xy_x, cartesian_type& xy_y) const
 
67
                {
 
68
                        xy_x = 0.5 * lp_lon * (1. + sqrt(cos(lp_lat)));
 
69
                        xy_y = lp_lat / (cos(0.5 * lp_lat) * cos(SIXTH * lp_lon));
 
70
                }
 
71
            };
 
72
 
 
73
            // Larrivee
 
74
            template <typename Parameters>
 
75
            void setup_larr(Parameters& par)
 
76
            {
 
77
                // par.fwd = s_forward;
 
78
                // par.inv = 0;
 
79
                par.es = 0.;
 
80
            }
 
81
 
 
82
        }} // namespace detail::larr
 
83
    #endif // doxygen 
 
84
 
 
85
    /*!
 
86
        \brief Larrivee projection
 
87
        \ingroup projections
 
88
        \tparam Geographic latlong point type
 
89
        \tparam Cartesian xy point type
 
90
        \tparam Parameters parameter type
 
91
        \par Projection characteristics
 
92
         - Miscellaneous
 
93
         - Spheroid
 
94
         - no inverse
 
95
        \par Example
 
96
        \image html ex_larr.gif
 
97
    */
 
98
    template <typename Geographic, typename Cartesian, typename Parameters = parameters>
 
99
    struct larr_spheroid : public detail::larr::base_larr_spheroid<Geographic, Cartesian, Parameters>
 
100
    {
 
101
        inline larr_spheroid(const Parameters& par) : detail::larr::base_larr_spheroid<Geographic, Cartesian, Parameters>(par)
 
102
        {
 
103
            detail::larr::setup_larr(this->m_par);
 
104
        }
 
105
    };
 
106
 
 
107
    #ifndef DOXYGEN_NO_DETAIL
 
108
    namespace detail
 
109
    {
 
110
 
 
111
        // Factory entry(s)
 
112
        template <typename Geographic, typename Cartesian, typename Parameters>
 
113
        class larr_entry : public detail::factory_entry<Geographic, Cartesian, Parameters>
 
114
        {
 
115
            public :
 
116
                virtual projection<Geographic, Cartesian>* create_new(const Parameters& par) const
 
117
                {
 
118
                    return new base_v_f<larr_spheroid<Geographic, Cartesian, Parameters>, Geographic, Cartesian, Parameters>(par);
 
119
                }
 
120
        };
 
121
 
 
122
        template <typename Geographic, typename Cartesian, typename Parameters>
 
123
        inline void larr_init(detail::base_factory<Geographic, Cartesian, Parameters>& factory)
 
124
        {
 
125
            factory.add_to_factory("larr", new larr_entry<Geographic, Cartesian, Parameters>);
 
126
        }
 
127
 
 
128
    } // namespace detail 
 
129
    #endif // doxygen
 
130
 
 
131
}} // namespace ggl::projection
 
132
 
 
133
#endif // GGL_PROJECTIONS_LARR_HPP
 
134