Revision 793 org.gvsig.proj/branches/refactor2018/org.gvsig.proj/org.gvsig.proj.lib/org.gvsig.proj.lib.api/src/main/java/org/gvsig/proj/CoordinateReferenceSystem.java

View differences:

CoordinateReferenceSystem.java
22 22
 */
23 23
package org.gvsig.proj;
24 24

  
25
import org.gvsig.proj.catalogue.CRSDefinition;
25 26
import org.gvsig.tools.lang.Cloneable;
26 27

  
27 28
/**
......
67 68
     * 
68 69
     * @return
69 70
     */
70
    String getDefinition();
71
    //String getDefinition();
72
    
73
    /**
74
     * Gets the definition of the coordinate reference system. The CRSDefinition
75
     * fully defines the CRS
76
     * 
77
     * @return
78
     */
79
    CRSDefinition getDefinition();
71 80

  
72 81
    /**
73 82
     * Returns a description of the projection.
......
84 93
     *            projection to convert coordinates to
85 94
     * @return the transformation to apply to the coordinates
86 95
     */
87
    CoordinateTransformation getTransformation(CoordinateReferenceSystem target);
96
    //CoordinateTransformation getTransformation(CoordinateReferenceSystem target);
88 97

  
89 98
    /**
90 99
     * Returns if the CRS is projected.
91 100
     * 
92 101
     * @return if the CRS is projected
93 102
     */
94
    boolean isProjected();
103
    //boolean isProjected();
95 104

  
96 105
    /**
97 106
     * Creates a geographic (unprojected) {@link CoordinateReferenceSystem}
......
104 113
     * @return a geographic CoordinateReferenceSystem based on the datum of this
105 114
     *         CRS
106 115
     */
107
    public CoordinateReferenceSystem createGeographic();
116
  ///  public CoordinateReferenceSystem createGeographic();
108 117

  
109 118
    /**
110 119
     * Returns the Datum of this CRS.
111 120
     * 
112 121
     * @return the Datum
113 122
     */
114
    public Datum getDatum();
123
    //public Datum getDatum();
115 124

  
116 125
}

Also available in: Unified diff