source: josm/trunk/src/org/openstreetmap/josm/data/projection/proj/ProjParameters.java@ 13622

Last change on this file since 13622 was 13622, checked in by Don-vip, 6 years ago

see #16129 - fix Equidistant Cylindrical projection

  • Property svn:eol-style set to native
File size: 1.1 KB
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data.projection.proj;
3
4import org.openstreetmap.josm.data.projection.CustomProjection.Param;
5import org.openstreetmap.josm.data.projection.Ellipsoid;
6
7/**
8 * Parameters to initialize a Proj object.
9 * @since 5066
10 */
11public class ProjParameters {
12
13 /** {@code +ellps} */
14 public Ellipsoid ellps;
15
16 /** {@link Param#lat_0} */
17 public Double lat0;
18 /** {@link Param#lat_1} */
19 public Double lat1;
20 /** {@link Param#lat_2} */
21 public Double lat2;
22
23 // Polar Stereographic, Mercator and Equidistant Cylindrical
24 /** {@link Param#lat_ts} */
25 public Double lat_ts;
26
27 // Azimuthal Equidistant
28 /** {@link Param#lon_0} */
29 public Double lon0;
30
31 // Oblique Mercator
32 /** {@link Param#lonc} */
33 public Double lonc;
34 /** {@link Param#alpha} */
35 public Double alpha;
36 /** {@link Param#gamma} */
37 public Double gamma;
38 /** {@link Param#no_off} */
39 public Boolean no_off;
40 /** {@link Param#lon_1} */
41 public Double lon1;
42 /** {@link Param#lon_2} */
43 public Double lon2;
44}
Note: See TracBrowser for help on using the repository browser.