上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 28 下一页

2019年5月14日

SDO_RELATE和SDO_GEOM.RELATE

摘要: SDO_RELATE需要事先建立索引,而SDO_GEOM.RELATE不用。 SDO_RELATE返回True或False, SDO_GEOM.RELATE除可返回True或False外,还可返回关系(当mask设为'determine'时)。 select z.id1,z.id2, SDO_REL 阅读全文

posted @ 2019-05-14 10:37 mol1995 阅读(1888) 评论(0) 推荐(0) 编辑

cesium 基础

摘要: scaleByDistance : new Cesium.NearFarScalar(1.5e2, 1.5, 8.0e6, 0.0),--(近值,近端放大率,远值,远端放大率) 给定距离视点的近值和远值,以及对应的两个近端放大率和远端放大率。当距离在近值和远值之间时,放大/缩小倍数在两个放大两率之间 阅读全文

posted @ 2019-05-14 08:36 mol1995 阅读(1544) 评论(0) 推荐(0) 编辑

2019年5月13日

操作SDO_GEOMETRY字段

摘要: 读取SDO_GEOMETRY字段 select to_char(regexp_replace(sdo_util.to_gmlgeometry(t.intsxn_geom),'</?[^>]*>|nbsp;|&','')) as ORDINATES from SALES_INTERSECTION_ZO 阅读全文

posted @ 2019-05-13 19:11 mol1995 阅读(572) 评论(0) 推荐(0) 编辑

2019年5月8日

世界地理信息

摘要: https://www.naturalearthdata.com/ 阅读全文

posted @ 2019-05-08 14:43 mol1995 阅读(103) 评论(0) 推荐(0) 编辑

2019年4月19日

cesium初始化参数

摘要: var viewer = new Cesium.Viewer('cesiumContainer',{ animation:false, //动画控制不显示 //baseLayerPicker:false,//底图背景选择框 geocoder:false,//右上角查找放大镜 timeline:fal 阅读全文

posted @ 2019-04-19 15:42 mol1995 阅读(1809) 评论(0) 推荐(0) 编辑

2019年3月23日

to_char 函数将小数点前面的0舍掉的解决办法

摘要: to_char(val,'0.9') 9 代表一个数字 0 强制显示0 $ 放置一个$符 L 放置一个浮动本地货币符 . 显示小数点 , 显示千位指示符 最终只能嵌套两层 regexp_replace解决,内层处理正数,将.\d替换为0.\d;外层处理负数,将-.\d替换为-0. select re 阅读全文

posted @ 2019-03-23 19:53 mol1995 阅读(668) 评论(0) 推荐(0) 编辑

2019年3月15日

instr 函数从后往前计数 instr(spell,' ',-1)

摘要: update CY set last=substr(spell,instr(spell,' ',-1)); 阅读全文

posted @ 2019-03-15 09:02 mol1995 阅读(545) 评论(0) 推荐(0) 编辑

2019年3月14日

WordVBA常用项

摘要: 将光标所在段落选中 Selection.MoveUp unit:=wdParagraphSelection.MoveDown unit:=wdParagraph, Extend:=wdExtend ' 选择当前行 Selection.HomeKey unit:=wdLine Selection.En 阅读全文

posted @ 2019-03-14 17:29 mol1995 阅读(358) 评论(0) 推荐(0) 编辑

2019年3月2日

整体读入cmd结果,而不是分行读入,效率极高

摘要: public static long GetDirectorySize(string path) { long res = 0; System.Diagnostics.Process p = new System.Diagnostics.Process(); p.StartInfo.FileName 阅读全文

posted @ 2019-03-02 14:53 mol1995 阅读(271) 评论(0) 推荐(0) 编辑

获取文件夹总大小方法2_获取cmd命令结果,效率最高

摘要: public static long GetDirectorySize(string path) { long res = 0; System.Diagnostics.Process p = new System.Diagnostics.Process(); p.StartInfo.FileName 阅读全文

posted @ 2019-03-02 14:52 mol1995 阅读(676) 评论(0) 推荐(0) 编辑

上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 28 下一页

导航