Class PixelDensity
- All Implemented Interfaces:
AutoCloseable
Concretely it's a value with the following units: px² / uom². Here, 'uom' mean the unit of measure of the coordinate reference in which the pixel density is expressed. It is typically meters.
More information on this, and hints on its usages can be fount in the related article: Retrieving height data.
A typical way to create a pixel density is by converting it from a sample distance. Imagine for example that you want to sample elevation data along a line, and get an elevation value every meter. In that case, you can use the fromSampleDistance
method to create a pixel density where the distance between every pixel corresponds to 1 meter.
- Since:
- 2023.0
-
Constructor Summary
ConstructorDescriptionPixelDensity
(CoordinateReference reference, double value) Construct a PixelDensity object. -
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
protected void
finalize()
static PixelDensity
fromSampleDistance
(double distanceInMeters, Coordinate sampleLocation, CoordinateReference pixelDensityReference) Creates a pixel density from a sample distance.Returns the pixel density coordinate reference.double
getValue()
Returns the pixel density value.
-
Constructor Details
-
Method Details
-
finalize
protected void finalize() -
close
public void close()- Specified by:
close
in interfaceAutoCloseable
-
getValue
public double getValue()Returns the pixel density value.- Returns:
- the pixel density value.
-
getReference
Returns the pixel density coordinate reference.- Returns:
- the pixel density coordinate reference.
-
fromSampleDistance
@NotNull public static PixelDensity fromSampleDistance(double distanceInMeters, @NotNull Coordinate sampleLocation, @NotNull CoordinateReference pixelDensityReference) throws IllegalArgumentException Creates a pixel density from a sample distance.The resulting PixelDensity, expressed in the given coordinate reference, is such that the distance between pixels corresponds roughly with the provided distance in meters at the given location.
- Parameters:
distanceInMeters
- the desired distance between two adjacent samples, in meterssampleLocation
- the point at which the distance between samples must be equal to distanceInMeterspixelDensityReference
- the reference in which sampleLocation, and the resulting PixelDensity, is expressed- Returns:
- a pixel density that meets the requirements
- Throws:
IllegalArgumentException
- if pixelDensityReference is neither a grid nor a geodetic reference.
-