spheroid_name.patch

Antonio Falciano, 07/21/2016 10:18 AM

Download (918 Bytes)

View differences:

org.gvsig.projection.jcrs.lib/src/main/java/org/gvsig/crs/CrsWkt.java (copia locale)
129 129

  
130 130
        CRSDatum crsDatum = new CRSDatum(spatialReference.GetSemiMajor(), spatialReference.GetInvFlattening());
131 131

  
132
        spheroid[0] = String.valueOf(spatialReference.GetSemiMinor()); //.GetAttrValue("SPHEROID",0);
132
        spheroid[0] = spatialReference.GetAttrValue("SPHEROID",0);
133 133
        spheroid[1] = String.valueOf(spatialReference.GetSemiMajor()); //GetAttrValue("SPHEROID",1);
134 134
        spheroid[2] = String.valueOf(spatialReference.GetInvFlattening()); //.GetAttrValue("SPHEROID",2);
135 135
        primem[0] = spatialReference.GetAttrValue("PRIMEM",0);