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

Last change on this file since 5067 was 5066, checked in by bastiK, 12 years ago

Proj parameter refactoring (see #7495)

  • Property svn:eol-style set to native
File size: 462 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 lat_0;
14 public Double lat_1;
15 public Double lat_2;
16
17 /* for LambertConformalConic */
18 public Double lcc_n;
19 public Double lcc_F;
20 public Double lcc_r0;
21
22}
Note: See TracBrowser for help on using the repository browser.