Statistics
| Revision:

gvsig-3d / org.gvsig.netcdf3d / trunk / org.gvsig.netcdf3d / org.gvsig.netcdf3d.lib / org.gvsig.netcdf3d.lib.api / src / main / java / org / gvsig / netcdf3d / lib / api / NetCDFLoaderParameters.java @ 727

History | View | Annotate | Download (2.88 KB)

1
/* gvSIG. Desktop Geographic Information System.
2
 *
3
 * Copyright ? 2007-2016 gvSIG Association
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
18
 * MA  02110-1301, USA.
19
 *
20
 * For any additional information, do not hesitate to contact us
21
 * at info AT gvsig.com, or visit our website www.gvsig.com.
22
 */
23
package org.gvsig.netcdf3d.lib.api;
24

    
25
import java.util.Calendar;
26

    
27
import org.gvsig.view3d.lib.api.loader.RasterLoaderParameters;
28

    
29
/**
30
 * NetCDF loader parameters defines the required parameters to load dynamic
31
 * NetCDF raster layers
32
 * 
33
 * @author <a href="mailto:lmarques@disid.com">Lluis Marques</a>
34
 *
35
 */
36
public interface NetCDFLoaderParameters extends RasterLoaderParameters {
37

    
38
    public static final String NAME = "NetCDFLoader";
39

    
40
    /**
41
     * @return Gets NetCDF variable
42
     */
43
    public String getVariable();
44

    
45
    /**
46
     * Sets NetCDF variable
47
     * 
48
     * @param variable
49
     *            Name of NetCDF variable
50
     */
51
    public void setVariable(String variable);
52

    
53
    /**
54
     * Gets NetCDF band
55
     * 
56
     * @return Band of NetCDF
57
     */
58
    public int getBand();
59

    
60
    /**
61
     * Sets the specified band
62
     * 
63
     * @param band
64
     *            The specified band
65
     * 
66
     */
67
    public void setBand(int band);
68

    
69
    /**
70
     * @return Gets NetCDF level of variable
71
     */
72
    public double getLevel();
73

    
74
    /**
75
     * Set level of NetCDF variable
76
     * 
77
     * @param level
78
     *            Variable level
79
     */
80
    public void setLevel(double level);
81

    
82
    /**
83
     * 
84
     * @return Gets start date of NetCDF variable
85
     */
86
    public Calendar getStartDate();
87

    
88
    /**
89
     * Sets start date of NetCDF variable
90
     * 
91
     * @param startDate
92
     *            Start date of variable
93
     */
94
    public void setStartDate(Calendar startDate);
95

    
96
    /**
97
     * 
98
     * @return Gets final date of NetCDF variable
99
     */
100
    public Calendar getFinalDate();
101

    
102
    /**
103
     * Sets final date of NetCDF variable
104
     * 
105
     * @param finalDate
106
     *            Final date of variable
107
     */
108
    public void setFinalDate(Calendar finalDate);
109

    
110
    /**
111
     * @return Gets lapse of NetCDF in seconds
112
     */
113
    public double getLapse();
114

    
115
    /**
116
     * Set lapse of NetCDF in seconds
117
     * 
118
     * @param lapse
119
     */
120
    public void setLapse(double lapse);
121
}