Changes between Version 18 and Version 19 of GdalOgrInJava


Ignore:
Timestamp:
Feb 20, 2010, 4:51:03 AM (14 years ago)
Author:
Even Rouault
Comment:

update text about Java bindings now that 1.7.0 is releases

Legend:

Unmodified
Added
Removed
Modified
  • GdalOgrInJava

    v18 v19  
    22= GDAL/OGR In Java =
    33
    4 The GDAL project has SWIG generated Java bindings for GDAL and OGR. Work has been done so that these bindings are in shape for 1.7.0 release. For the 1.5.0 and 1.6.0 release, they are considered to be broken.
     4The GDAL project has SWIG generated Java bindings for GDAL and OGR. The Java bindings have been substantially reworked for 1.7.0 release. For the 1.5.0 and 1.6.0 releases, they are considered to be broken.
    55
    6 Generally speaking the classes and methods mostly match those of the GDAL and OGR C++ classes. You can find the [http://gdal.org/java Javadoc] for API of the future 1.7.0 release. Note : the API might be subject to changes before the actual release. It is aimed at being backward compatible with the API of previous releases (in the cases where it was not previously broken). Please report if you find that working API from previous GDAL version is not to be found in the 1.7.0 API.
     6Generally speaking the classes and methods mostly match those of the GDAL and OGR C++ classes. You can find the [http://gdal.org/java Javadoc] of the API of the Java bindings for GDAL 1.7.0 and later releases.
    77
    88Due to the fact the Java garbage collector works in a separate thread from the main thread, it is necessary to configure GDAL with multi-threading support, even if you do not use GDAL API from several Java threads.
     
    1212= Useful Links =
    1313
    14  * [http://gdal.org/java Javadoc] for API of the future 1.7.0 release
     14 * [http://gdal.org/java Javadoc] of the API of the Java bindings for GDAL 1.7.0 and later releases.
    1515
    1616 * [http://trac.osgeo.org/gdal/browser/trunk/gdal/swig/java/apps/gdalinfo.java gdalinfo.java] Sample Java program similar to gdalinfo utility (use API from Java bindings of GDAL 1.7.0dev)