atlas
Latitudes.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2013 ECMWF.
3  *
4  * This software is licensed under the terms of the Apache Licence Version 2.0
5  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6  * In applying this licence, ECMWF does not waive the privileges and immunities
7  * granted to it by virtue of its status as an intergovernmental organisation
8  * nor does it submit to any jurisdiction.
9  */
10 
14 
15 #pragma once
16 
17 #include <cstddef>
18 
19 namespace atlas {
20 namespace grid {
21 namespace spacing {
22 namespace gaussian {
23 
30 void gaussian_latitudes_npole_equator( const size_t N, double latitudes[] );
31 
40 void gaussian_quadrature_npole_equator( const size_t N, double latitudes[], double weights[] );
41 
48 void gaussian_latitudes_npole_spole( const size_t N, double latitudes[] );
49 
58 void gaussian_quadrature_npole_spole( const size_t N, double latitudes[], double weights[] );
59 
60 } // namespace gaussian
61 } // namespace spacing
62 } // namespace grid
63 } // namespace atlas
Contains all atlas classes and methods.
Definition: atlas-grids.cc:33