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

« back to all changes in this revision

Viewing changes to geotrans2/java_gui/geotrans/parameters/MapProjection6Parameters.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
 * MapProjection6Parameters.java
 
3
 *
 
4
 * Created on April 4, 2007, 8:50 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 MapProjection6Parameters extends CoordinateSystemParameters
 
18
{
 
19
  private double centralMeridian;
 
20
  private double originLatitude;
 
21
  private double standardParallel1;
 
22
  private double standardParallel2;
 
23
  private double falseEasting;
 
24
  private double falseNorthing;
 
25
 
 
26
  
 
27
  /** Creates a new instance of MapProjection6Parameters */
 
28
  public MapProjection6Parameters(int coordinateType, double _centralMeridian, double _originLatitude, double _standardParallel1, double _standardParallel2, double _falseEasting, double _falseNorthing) 
 
29
  {
 
30
    super(coordinateType);
 
31
    
 
32
    centralMeridian = _centralMeridian;
 
33
    originLatitude = _originLatitude;
 
34
    standardParallel1 = _standardParallel1;
 
35
    standardParallel2 = _standardParallel2;
 
36
    falseEasting = _falseEasting;
 
37
    falseNorthing = _falseNorthing;
 
38
  }
 
39
  
 
40
  
 
41
  public double getCentralMeridian()
 
42
  {
 
43
    return centralMeridian;
 
44
  }
 
45
 
 
46
 
 
47
  public double getOriginLatitude()
 
48
  {
 
49
    return originLatitude;
 
50
  }
 
51
 
 
52
 
 
53
  public double getStandardParallel1()
 
54
  {
 
55
    return standardParallel1;
 
56
  }
 
57
 
 
58
 
 
59
  public double getStandardParallel2()
 
60
  {
 
61
    return standardParallel2;
 
62
  }
 
63
 
 
64
 
 
65
  public double getFalseEasting()
 
66
  {
 
67
    return falseEasting;
 
68
  }
 
69
 
 
70
 
 
71
  public double getFalseNorthing()
 
72
  {
 
73
    return falseNorthing;
 
74
  }
 
75
}