Statistics
| Revision:

root / trunk / libraries / libjni-gdal / src / es / gva / cit / jogr / OGRTools.java @ 7765

History | View | Annotate | Download (2.07 KB)

1
/**********************************************************************
2
 * $Id: OGRTools.java 7765 2006-10-03 07:05:18Z nacho $
3
 *
4
 * Name:     OGRTools.java
5
 * Project:  JGDAL. Interface java to gdal (Frank Warmerdam).
6
 * Purpose:   
7
 * Author:   Nacho Brodin, brodin_ign@gva.es
8
 *
9
 **********************************************************************/
10
/*Copyright (C) 2004  Nacho Brodin <brodin_ign@gva.es>
11

12
 This program is free software; you can redistribute it and/or
13
 modify it under the terms of the GNU General Public License
14
 as published by the Free Software Foundation; either version 2
15
 of the License, or (at your option) any later version.
16

17
 This program is distributed in the hope that it will be useful,
18
 but WITHOUT ANY WARRANTY; without even the implied warranty of
19
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20
 GNU General Public License for more details.
21

22
 You should have received a copy of the GNU General Public License
23
 along with this program; if not, write to the Free Software
24
 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
25
 */
26

    
27
package es.gva.cit.jogr;
28

    
29

    
30

    
31
/** 
32
 * 
33
 * @author Nacho Brodin <brodin_ign@gva.es>.<BR> Equipo de desarrollo gvSIG.<BR> http://www.gvsig.gva.es
34
 * @version 0.0
35
 * @link http://www.gvsig.gva.es
36
 */
37

    
38
public class OGRTools extends JNIBase{
39
        
40
        private native static long OGRCreateCoordinateTransformationNat( long poSource, long poTarget);
41
        
42
        /**
43
         * 
44
         */
45
        
46
        public static OGRCoordinateTransformation OGRCreateCoordinateTransformation( OGRSpatialReference poSource,
47
                                                                                                                                            OGRSpatialReference poTarget )throws OGRException{
48
                if(poSource.getPtro()<=0  || poTarget.getPtro()<=0)
49
                        throw new OGRException("Error en OGRCreateCoordinateTransformation(). Los par?metros no tienen una referencia correcta.");
50
                
51
                long ptr_cct = OGRCreateCoordinateTransformationNat(poSource.getPtro(), poTarget.getPtro());
52
                
53
                if(ptr_cct<=0)
54
                        throw new OGRException("Error en OGRCreateCoordinateTransformation(). No se ha podido obtener una referencia valida al objeto OGRCoordinateTransformation.");
55
                
56
                return new OGRCoordinateTransformation(ptr_cct);
57
                
58
        }
59
}