07 2021 档案
摘要:excel之CMMI-FP功能点估算辅助生成DET、RET、FP 功能点估算:功能点估算本身是对一个项目功能分解后按照一定规则将所有功能点量化得到一个项目预算的方法。 场景:功能点分解后,详细功能点几千条,根据功能点去详细计算FP会很麻烦,所以在excel中使用公式辅助 FP:这里计算的FP是指未调
阅读全文
摘要:arcgis js 3.x 之弹框拖动后添加引导线 效果: 原理: 1.先创建一个graphicLayer放到地图里面 2.通过map.infoWindow.openPopups获取到点的经纬度和弹框的屏幕坐标 3.通过map.toMap(new ScreenPoint(x,y)将屏幕坐标转换为经纬
阅读全文
摘要:arcmap加载netcdf(.nc)数据 流程: 时间轴查看: 转载自:https://blog.csdn.net/ceibake/article/details/86473744
阅读全文
摘要:ol3之测试项目 代码: <!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="ht
阅读全文
摘要:ol3之加载arcgis wms图层 服务: 图层创建代码: var arcgiswmschina = new ol.layer.Image({ source: new ol.source.ImageWMS({ ratio: 1, url: 'http://localhost:18080/arcgi
阅读全文
摘要:arcmap之jpg图片转tif(定义参考系) 场景:现有一张jpg格式的影像图,需要将其在地图上做服务加载。 工具:arcmap>地理配准 步骤: 1.在arcmap上添加一张影像底图。 2.将图片拖动到arcmap中 3.打开地理配准工具 4.添加校准点 5.在图片上点下,然后在底图对应位置点一
阅读全文
摘要:ColorThief之获取图片主色 插件:ColorThief $ npm i --save colorthief 引用: <script type="text/javascript" src="../../dist/colorthief/dist/color-thief.min.js"></scr
阅读全文
摘要:jquery之表单加载图片并预览 效果: html: <input id="getImg" type="file" value="上传" onchange="changepic(this)"> <img src="#" id="img3" STYLE="display:none;width:120p
阅读全文
摘要:ol3之添加点、线 添加图层: let source = new ol.source.Vector(); let layer = new ol.layer.Vector({ source: source, }); this.map.addLayer(layer); 添加点: var iconFeat
阅读全文