I have estimated and reclassify my kernel densities and I would to calculate the area of each value. How could I do it?
My Projected Coordinate System is WGS84 World Mercator. My pixel size is 10000 x 10000. Linear unit: Meter (1).
I have estimated and reclassify my kernel densities and I would to calculate the area of each value. How could I do it?
My Projected Coordinate System is WGS84 World Mercator. My pixel size is 10000 x 10000. Linear unit: Meter (1).
A kernel function represents a Gaussian distribution of weighted or unweighted density base on characteristics of the specified kernel (eg., sigma, distance, alternative distributions) so, area is a fairly vague term. Commonly the "area" of a KDE is articulated as the percent volume or isopleth contour, at least in the wildlife resource selection literature. Once a given volume is output, the area is just the total cell area of the percent volume. There is a function, "raster.vol", in the spatialEco R package or if using ArcGIS in the Home Range Tools that will output percent volumes.
As far as I can understand from your question, this is a technical issue. As such this answer will point to some tools/processes that may help you to calculate the area of each class. Nevertheless, you should use an equal-area coordinate system to get correct results. Thus, at start the data must be re-projected.
I suggest two approaches to calculate the area for each class: a raster and a vector approach. I personally prefer the raster approach. Yet it also depend on other data types involved in post processing.