Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.basicformats / src / main / java / org / gvsig / basicformats / WLDFile.java @ 45722

History | View | Annotate | Download (806 Bytes)

1 44831 jjdelcerro
2
package org.gvsig.basicformats;
3
4
import org.gvsig.fmap.geom.primitive.Envelope;
5
6
7
public interface WLDFile extends FormatFile {
8
9
    String FILE_EXTENSION = "wld";
10
11
    Envelope getEnvelope(int rows, int columns);
12
13
    void setValue(Envelope envelope, int rows, int columns);
14
15
    /**
16
     * @return the pixelSizeX
17
     */
18
    double getPixelSizeX();
19
20
    /**
21
     * @return the pixelSizeY
22
     */
23
    double getPixelSizeY();
24
25
    /**
26
     * @return the rotationAxisX
27
     */
28
    double getRotationAxisX();
29
30
    /**
31
     * @return the rotationAxisY
32
     */
33
    double getRotationAxisY();
34
35
    /**
36
     * @return the upperLeftPixelCenterCoordX
37
     */
38
    double getUpperLeftPixelCenterCoordX();
39
40
    /**
41
     * @return the upperLeftPixelCenterCoordY
42
     */
43
    double getUpperLeftPixelCenterCoordY();
44
45
}