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

Last change on this file since 9970 was 9565, checked in by bastiK, 8 years ago

add 2 standard parallel & non-spherical variants for Mercator projection (see #12186)
(imports pieces of code from the Geotools project)

  • Property svn:eol-style set to native
File size: 586 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data.projection.proj;
3
4import org.openstreetmap.josm.data.projection.Ellipsoid;
5
6/**
7 * Parameters to initialize a Proj object.
8 */
9public class ProjParameters {
10
11 public Ellipsoid ellps;
12
13 public Double lat0;
14 public Double lat1;
15 public Double lat2;
16
17 // Polar Stereographic and Mercator
18 public Double lat_ts;
19
20 // Oblique Mercator
21 public Double lonc;
22 public Double alpha;
23 public Double gamma;
24 public Boolean no_off;
25 public Double lon1;
26 public Double lon2;
27}
Note: See TracBrowser for help on using the repository browser.