~ubuntu-branches/debian/sid/gdal/sid

« back to all changes in this revision

Viewing changes to swig/java/apps/GDALOverviews.java

  • Committer: Package Import Robot
  • Author(s): Francesco Paolo Lovergine
  • Date: 2012-05-07 15:04:42 UTC
  • mfrom: (5.5.16 experimental)
  • Revision ID: package-import@ubuntu.com-20120507150442-2eks97loeh6rq005
Tags: 1.9.0-1
* Ready for sid, starting transition.
* All symfiles updated to latest builds.
* Added dh_numpy call in debian/rules to depend on numpy ABI.
* Policy bumped to 3.9.3, no changes required.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/******************************************************************************
2
 
 * $Id: GDALOverviews.java 16341 2009-02-14 17:15:33Z rouault $
 
2
 * $Id: GDALOverviews.java 20974 2010-10-26 18:03:08Z rouault $
3
3
 *
4
4
 * Name:     GDALOverviews.java
5
5
 * Project:  GDAL Java Interface
125
125
                    System.out.println("         PaletteInterp: " + gdal.GetColorInterpretationName(over.GetRasterColorInterpretation()));
126
126
                }
127
127
            }
 
128
 
 
129
            /* explicit closing of dataset */
 
130
            ds.delete();
 
131
 
128
132
            System.out.println("Completed.");
129
133
            System.out.println("Use:  gdalread " + args[0] + " outfile.png [overview] to extract a particular overview!" );
130
134
        }