2018年12月10日

c# udp通讯实现

摘要: public class launcherJson { public string dispatcher_ip; // dispatcher地址 public int dispatcher_port; // dispatcher端口 5999 public string launcher_ip; ... 阅读全文

posted @ 2018-12-10 16:15 jobgeo 阅读(204) 评论(0) 推荐(0)

2018年10月8日

使用rapidjson输出json文件

摘要: rapidjson::Value geo(rapidjson::kObjectType); insertKeyValue(geo, "type", "LineString", allocator); QPointF p1 = pos.gta_to_wgs84(QPointF(road.Node1.P 阅读全文

posted @ 2018-10-08 16:43 jobgeo 阅读(918) 评论(0) 推荐(0)

2018年9月19日

geometries几何图形转存为geojson文件

摘要: 1 # 输出json文件 2 features = [] 3 for line in pts: 4 (x0,y0,x1,y1) = line 5 6 geo = {'type': 'LineString', 'coordinates': [ [x0, y0], [x1, y1] ] } 7 8 ... 阅读全文

posted @ 2018-09-19 15:11 jobgeo 阅读(355) 评论(0) 推荐(0)

2018年9月18日

win10下anaconda3安装dlib与face_recognition

摘要: 1. 下载安装 anaconda3 x64版本 2. 安装cmake x64位版本 3.运行anaconda_navigation 4.新建python3.6环境 5.点击“Open Terminal”进入该Python环境下的dos窗口 6. (learn36) C:\Users\xxxx>pip 阅读全文

posted @ 2018-09-18 16:35 jobgeo 阅读(3550) 评论(0) 推荐(0)

2018年8月27日

Python3安装geohash

摘要: Geohash是一个可以对地理位置信息进行加密和解密的系统,https://en.wikipedia.org/wiki/Geohash Python安装geohash库后,可调用decode()和encode()函数。按照一般的步骤进行安装(pip install geohash),在确认安装成功后 阅读全文

posted @ 2018-08-27 17:39 jobgeo 阅读(1490) 评论(0) 推荐(0)

2018年8月17日

nds坐标获取瓦片编号

摘要: Eiffel Tower 2.2945° 48.858222° 27374451 582901293 0x1a1b373 0x22be5e2d nds使用的是WGS84坐标系统(the World Geodetic System dating from 1984),就是平常我们说的经纬度。当我们说一 阅读全文

posted @ 2018-08-17 13:28 jobgeo 阅读(2090) 评论(1) 推荐(0)

2018年8月16日

python os.path模块常用方法详解

摘要: 今天在做一个图片灰度转换时,发现os.path.isfile判断居然出错,才发现传入的是文件名称,应该是文件的路径,在此记录一下 def convert_rgb_to_gray(rgb_img_dir, gray_img_dir): for file in os.listdir(rgb_img_di 阅读全文

posted @ 2018-08-16 16:14 jobgeo 阅读(281) 评论(0) 推荐(0)

2017年7月6日

【转载】Arcengine IElement 的节点编辑

摘要: 原文地址 : http://blog.csdn.net/wangtao510/article/details/52789440 IElement的编辑用到两个关键接口:IElementEditVertices,ISelectTracker; 首先你得自定义一个 Tool; 在Tool 的 onCli 阅读全文

posted @ 2017-07-06 20:56 jobgeo 阅读(840) 评论(0) 推荐(0)

ArcSDE+Oracle+Arcmap+ArcServer_10.2版本安装全教程

摘要: 先占个位置,这两周在做这个事情,忙完就整理一个完整的安装教程。。。 阅读全文

posted @ 2017-07-06 20:55 jobgeo 阅读(354) 评论(0) 推荐(0)

2017年7月4日

CreateMemoryFeatureClass

摘要: 1 public static IFeatureClass CreateMemoryFeatureClass( 2 ISpatialReference spatialReference, esriGeometryType geometryType, string name = "Temp") 3 { 4 // 创... 阅读全文

posted @ 2017-07-04 21:04 jobgeo 阅读(380) 评论(0) 推荐(0)

导航