上一页 1 ··· 7 8 9 10 11 12 13 14 15 16 下一页
摘要: #方法一:cursor= arcpy.da.SearchCursor(aim_fc,["OID@","SHAPE@"]) for row in cursor: arcpy.CopyFeatures_management(row[1],gdbPath+"\\fc_"+str(row[0])) del cursor 方法二: https://www.cnblogs.com/yzhyi... 阅读全文
posted @ 2019-08-19 21:48 yzhyingcool 阅读(1999) 评论(0) 推荐(0) 编辑
摘要: ITableWindow3 tableWindow3 = new TableWindowClass { //Layer = layer_result, Application = m_application, FeatureLayer = layer_result, ShowSelected = f 阅读全文
posted @ 2019-08-05 21:57 yzhyingcool 阅读(474) 评论(0) 推荐(0) 编辑
摘要: void IDockableWindowDef.OnCreate(object hook) { m_application = hook as IApplication; m_hookHelper = new HookHelperClass(); m_hookHelper.Hook = h... 阅读全文
posted @ 2019-08-04 21:47 yzhyingcool 阅读(640) 评论(0) 推荐(0) 编辑
摘要: 小叙背景 Windows系统下,默认的字符集为ANSI,该字符编码方式在不同语言环境下采用不同的编码方案,在中文系统下ANSI编码是GBK。ANSI由ASCII扩展而来,ANSI下无论何种具体的编码方案,其前128个编码均为固定ASCII字符,这128个字符为英文环境下的大小写字母、数字、常用符号与 阅读全文
posted @ 2019-07-28 10:07 yzhyingcool 阅读(5753) 评论(0) 推荐(0) 编辑
摘要: 很基础,不赘述。 1.在catalog(目录)新建一个PersonalGeoDatabase(个人地理数据库),导入需要处理的Shapefile文件。 坐标系统,存储路径与命名根据自己需求设定 2.直接标注的shape_area,修改的时候可以随图形改动而自动更新面积; 如果是标注单位为亩,保留两位 阅读全文
posted @ 2019-07-24 17:31 yzhyingcool 阅读(2735) 评论(0) 推荐(0) 编辑
摘要: ArcGis 字段计算器表达式可以保存为一个扩展名为.cal的文件,该文件的实质是一个文本文件,编码方式为 UTF-16-LE。 官方的说明是“ArcGIS 应用程序使用 UTF-16-LE 编码读写 .cal 文件。只要输出使用 UTF-16-LE 编码编写,其他应用程序(如记事本)可用于创建或修 阅读全文
posted @ 2019-07-13 21:47 yzhyingcool 阅读(2220) 评论(0) 推荐(1) 编辑
摘要: 以前用过这个类做字段计算,许久不用有些忘却,记录一下使用方式 public static void CalculateField(IFeatureLayer featureLayer,IField field,string expression) { Geoprocessor gp = new Ge 阅读全文
posted @ 2019-07-04 23:35 yzhyingcool 阅读(712) 评论(0) 推荐(0) 编辑
摘要: 补充指出官方帮助的一个问题。 该方法用于向环、线。面等几何中添加节点。官方帮助里是这样描述的:Adds a vertex to a Path, Ring, Polyline, or Polygon; or adds a reference to the input point to a Multip 阅读全文
posted @ 2019-06-28 14:27 yzhyingcool 阅读(925) 评论(0) 推荐(0) 编辑
摘要: 很简单,不翻译了。 If you are using COM components on your .NET code, you might be already aware of the Marshal.ReleaseComObject and Marshal.FinalReleaseComObj 阅读全文
posted @ 2019-06-21 16:26 yzhyingcool 阅读(823) 评论(1) 推荐(0) 编辑
摘要: 相接(Touch)面执行切割后 新面与原相接面会缺少公共节点。 该方法只适用于规则的多边形,欢迎提出改进意见、bug及其解决 更新方法: 阅读全文
posted @ 2019-06-21 11:50 yzhyingcool 阅读(874) 评论(2) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 16 下一页