我是靠谱客的博主 纯情荔枝,最近开发中收集的这篇文章主要介绍计算两个几个形状 Geometry 的面积占比,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1.使用locationtech自带方法(默认墨卡托坐标)

assert geometry1 != null;
assert geometry != null;Geometry intersection = geometry1.intersection(geometry);
double proportion = 0;
if (intersection != null) {
    //面积占比
    proportion = intersection.getArea() / geometry.getArea();
}
System.out.printf("面积占比为:",proportion);

2.坐标转换成墨卡托坐标

import org.geotools.geometry.jts.JTS;
import org.geotools.referencing.CRS;
import org.locationtech.jts.geom.Geometry;
import org.locationtech.jts.geom.Polygon;
import org.opengis.referencing.FactoryException;
import org.opengis.referencing.crs.CoordinateReferenceSystem;
import org.opengis.referencing.operation.MathTransform;

    /**
     * 计算出多边形面积,如果为点或者线的话,结算结果为0(Ploygon不为0)
     *
     * @param geometry 多边形对象
     * @return 面积 单位(平方米)
     */
    private double getArea(Geometry geometry) throws FactoryException, TransformException {
        
         // Pseudo-Mercator(墨卡托投影)
        String decode57 = "EPSG:3857";
        // WGS84(一般项目中常用的是CSR:84和EPSG:4326)
        String decode84 = "EPSG:4326";
        CoordinateReferenceSystem sourceCRS = CRS.decode(decode84);
        CoordinateReferenceSystem targetCRS = CRS.decode(decode57);

        MathTransform transform = CRS.findMathTransform(sourceCRS, targetCRS, false);
        Geometry geometryMercator = JTS.transform(geometry, transform);
        return geometryMercator.getArea();
    }

最后

以上就是纯情荔枝为你收集整理的计算两个几个形状 Geometry 的面积占比的全部内容,希望文章能够帮你解决计算两个几个形状 Geometry 的面积占比所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(38)

评论列表共有 0 条评论

立即
投稿
返回
顶部