Changes in this commit seem to be the result of some "auto reformat" tool execution. The Java - GeoAPI - GeoTools import ordering is altered, imports used only in Javadoc are lost and the encoding of non-ASCII characters is broken. This commit has been reverted, except for the removal of really unused imports which are kept removed.
Command line:
svn diff --extensions "--unified --ignore-space-change --ignore-all-space --ignore-eol-style" -r10795:10796 https://svn.osgeo.org/geotools/trunk/modules/library/metadata/src/main/java/org/geotools/metadata/iso/content/ImageDescriptionImpl.java
Revision 10795 | Revision 10796 |
---|---|
/*
* Geotools 2 - OpenSource mapping toolkit
* (C) 2004, Geotools Project Managment Committee (PMC)
* (C) 2004, Institut de Recherche pour le Développement
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public |
/*
* Geotools 2 - OpenSource mapping toolkit
* (C) 2004, Geotools Project Managment Committee (PMC)
* (C) 2004, Institut de Recherche pour le D�veloppement
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public |
package org.geotools.metadata.content; // J2SE extensions import javax.units.Unit; // OpenGIS dependencies import org.opengis.metadata.Identifier; import org.opengis.metadata.content.CoverageContentType; import org.opengis.metadata.content.RangeDimension ; import org.opengis.metadata.content.ImagingCondition ; // Geotools dependencies import org.geotools.metadata.MetadataEntity; import org.geotools.resources.Utilities; /** * Location of the responsible individual or organization. * * @version $Id$ * @author Martin Desruisseaux * @author Touraïvane */ public class ImageDescription extends CoverageDescription implements org.opengis.metadata.content.ImageDescription |
package org.geotools.metadata.content; // J2SE extensions import org.geotools.resources.Utilities; import org.opengis.metadata.Identifier; import org.opengis.metadata.content.ImagingCondition ; /** * Location of the responsible individual or organization. * * @version $Id$ * @author Martin Desruisseaux * @author Toura�vane */ public class ImageDescription extends CoverageDescription implements org.opengis.metadata.content.ImageDescription |
/**
* Illumination elevation measured in degrees clockwise from the target plane at
* intersection of the optical line of sight with the Earths surface. For images from a
* scanning device, refer to the centre pixel of the image.
*/
private Number illuminationElevationAngle; |
/**
* Illumination elevation measured in degrees clockwise from the target plane at
* intersection of the optical line of sight with the Earth�s surface. For images from a
* scanning device, refer to the centre pixel of the image.
*/
private Number illuminationElevationAngle; |
private Number cloudCoverPercentage;
/**
* Image distributors code that identifies the level of radiometric and geometric
* processing that has been applied.
*/
private Identifier processingLevelCode; |
private Number cloudCoverPercentage;
/**
* Image distributor�s code that identifies the level of radiometric and geometric
* processing that has been applied.
*/
private Identifier processingLevelCode; |
/**
* Returns the illumination elevation measured in degrees clockwise from the target plane at
* intersection of the optical line of sight with the Earths surface. For images from a
* scanning device, refer to the centre pixel of the image.
*/
public Number getIlluminationElevationAngle() { |
/**
* Returns the illumination elevation measured in degrees clockwise from the target plane at
* intersection of the optical line of sight with the Earth�s surface. For images from a
* scanning device, refer to the centre pixel of the image.
*/
public Number getIlluminationElevationAngle() { |
/**
* Set the illumination elevation measured in degrees clockwise from the target plane at
* intersection of the optical line of sight with the Earths surface. For images from a
* scanning device, refer to the centre pixel of the image.
*/
public synchronized void setIlluminationElevationAngle(final Number newValue) { |
/**
* Set the illumination elevation measured in degrees clockwise from the target plane at
* intersection of the optical line of sight with the Earth�s surface. For images from a
* scanning device, refer to the centre pixel of the image.
*/
public synchronized void setIlluminationElevationAngle(final Number newValue) { |
}
/**
* Returns the image distributors code that identifies the level of radiometric and geometric
* processing that has been applied.
*/
public Identifier getProcessingLevelCode() { |
}
/**
* Returns the image distributor�s code that identifies the level of radiometric and geometric
* processing that has been applied.
*/
public Identifier getProcessingLevelCode() { |
}
/**
* Set the image distributors code that identifies the level of radiometric and geometric
* processing that has been applied.
*/
public synchronized void setProcessingLevelCode(final Identifier newValue) { |
}
/**
* Set the image distributor�s code that identifies the level of radiometric and geometric
* processing that has been applied.
*/
public synchronized void setProcessingLevelCode(final Identifier newValue) { |