geoserver
爱吃西瓜的小松鼠
这个作者很懒,什么都没留下…
展开
-
在Geoserver里面实现对地图图层信息的提取。
这里分为两部分。第一部分,我们看具体代码:package org.geoserver.gs.wps;//wps选择方法@DescribeProcess( title = "Amount of information", description = "Computes the number of amount of information" )@Component...原创 2019-04-16 11:35:44 · 1081 阅读 · 0 评论 -
实现一个信息量的计算公式
这个功能用来插入到geoserver中import java.math.BigDecimal;public class App{ public static double getSN(double Ni,double Si,double N,double S){ if(Si==0||S==0||N==0)return 0.0; ...原创 2019-04-16 11:38:33 · 6030 阅读 · 0 评论