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

« back to all changes in this revision

Viewing changes to geotrans2/java_gui/geotrans/parameters/EquidistantCylindricalParameters.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
 * EquidistantCylindricalParameters.java
 
3
 *
 
4
 * Created on April 6, 2007, 3:05 PM
 
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
 * @author comstam
 
15
 */
 
16
public class EquidistantCylindricalParameters extends CoordinateSystemParameters 
 
17
{
 
18
  private double centralMeridian;
 
19
  private double standardParallel;
 
20
  private double falseEasting;
 
21
  private double falseNorthing;
 
22
  
 
23
  
 
24
  /** Creates a new instance of EquidistantCylindricalParameters */
 
25
  public EquidistantCylindricalParameters(int coordinateType, double _centralMeridian, double _standardParallel, double _falseEasting, double _falseNorthing) 
 
26
  {
 
27
    super(coordinateType);
 
28
    
 
29
    centralMeridian = _centralMeridian;
 
30
    standardParallel = _standardParallel;
 
31
    falseEasting = _falseEasting;
 
32
    falseNorthing = _falseNorthing;
 
33
  }
 
34
  
 
35
  
 
36
  public double getCentralMeridian()
 
37
  {
 
38
    return centralMeridian;
 
39
  }
 
40
 
 
41
 
 
42
  public double getStandardParallel()
 
43
  {
 
44
    return standardParallel;
 
45
  }
 
46
 
 
47
 
 
48
  public double getFalseEasting()
 
49
  {
 
50
    return falseEasting;
 
51
  }
 
52
 
 
53
 
 
54
  public double getFalseNorthing()
 
55
  {
 
56
    return falseNorthing;
 
57
  }  
 
58
}