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

Last change on this file since 8378 was 8346, checked in by Don-vip, 9 years ago

squid:S00116 - Field names should comply with a naming convention

  • Property svn:eol-style set to native
File size: 345 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}
Note: See TracBrowser for help on using the repository browser.