~ubuntu-branches/ubuntu/raring/geotranz/raring

« back to all changes in this revision

Viewing changes to geotrans2/java_gui/geotrans/parameters/MapProjection3Parameters.java

  • Committer: Bazaar Package Importer
  • Author(s): Roberto Lumbreras
  • Date: 2008-10-17 14:43:09 UTC
  • Revision ID: james.westby@ubuntu.com-20081017144309-jb7uzfi1y1lvez8j
Tags: upstream-2.4.2
ImportĀ upstreamĀ versionĀ 2.4.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * MapProjection3Parameters.java
 
3
 *
 
4
 * Created on April 4, 2007, 9:16 AM
 
5
 *
 
6
 * To change this template, choose Tools | Template Manager
 
7
 * and open the template in the editor.
 
8
 */
 
9
 
 
10
package geotrans.parameters;
 
11
 
 
12
 
 
13
/**
 
14
 *
 
15
 * @author comstam
 
16
 */
 
17
public class MapProjection3Parameters extends CoordinateSystemParameters 
 
18
{
 
19
  private double centralMeridian;
 
20
  private double falseEasting;
 
21
  private double falseNorthing;
 
22
  
 
23
  
 
24
  /** Creates a new instance of MapProjection3Parameters */
 
25
  public MapProjection3Parameters(int coordinateType, double _centralMeridian, double _falseEasting, double _falseNorthing) 
 
26
  {
 
27
    super(coordinateType);
 
28
    
 
29
    centralMeridian = _centralMeridian;
 
30
    falseEasting = _falseEasting;
 
31
    falseNorthing = _falseNorthing;
 
32
  }
 
33
  
 
34
  
 
35
  public double getCentralMeridian()
 
36
  {
 
37
    return centralMeridian;
 
38
  }
 
39
 
 
40
 
 
41
  public double getFalseEasting()
 
42
  {
 
43
    return falseEasting;
 
44
  }
 
45
 
 
46
 
 
47
  public double getFalseNorthing()
 
48
  {
 
49
    return falseNorthing;
 
50
  }
 
51
}