上一页 1 ··· 8 9 10 11 12 13 14 15 下一页

.NET 文件夹拷贝

摘要: /// <summary> /// 文件夹拷贝 /// </summary> /// <param name="sPath"></param> /// <param name="dPath"></param> /// <returns></returns> public static string CopyTin(string sPath, string dPath) { string flag = "success"; try ... 阅读全文
posted @ 2012-05-10 14:41 imihiro 阅读(294) 评论(0) 推荐(0) 编辑

Static Class 存储配置信息

摘要: public static class Configuration { static string _shpFolder; static string _shpName; static Configuration() { _shpFolder = @"E:\CZShapes"; _shpName = "funPolygon"; } public static string ShpFolder { get { return _shpFolde... 阅读全文
posted @ 2012-05-10 14:22 imihiro 阅读(208) 评论(0) 推荐(0) 编辑

AE CreateFeatureClass 创建shp. 删除shp. 向shp中添加要素

摘要: /// <summary> /// 创建多边形shp /// </summary> /// <param name="pPolygon"></param> /// <param name="shpPath"></param> public static void CreatePolygonFeatureClass(IPolygon pPolygon, string shpfolder,string shpname) { IWorkspaceFactory pWorkSpaceFac. 阅读全文
posted @ 2012-05-10 13:02 imihiro 阅读(11091) 评论(0) 推荐(0) 编辑

AE ComException HRESULT, 空间分析语句不执行

摘要: 解决方式: 添加licenseControlHRESULT:0x80040706 创建shp时,缺乏必需字段空间分析语句不执行:检查是否有AE分析模块的许可,是否已过期 阅读全文
posted @ 2012-05-10 11:36 imihiro 阅读(331) 评论(0) 推荐(0) 编辑

FileStream, 创建txt、xml文件

摘要: /// <summary> /// 创建python文件 /// </summary> /// <param name="shpparam"></param> /// <param name="tinworkspace"></param> /// <param name="tinname"></param> /// <param name="savepath"></param> public st 阅读全文
posted @ 2012-05-09 17:30 imihiro 阅读(478) 评论(0) 推荐(0) 编辑

Python featureClass clip Tin

摘要: # Purpose: Adding features to a TIN.# Create the Geoprocessor objectimport arcgisscriptinggp = arcgisscripting.create()#Check out the 3D Analyst extensiongp.CheckOutExtension ("3D")try: # Set the workspace (to avoid having to type in the full path to the data e # gp.workspace = "D:/Do 阅读全文
posted @ 2012-05-09 16:29 imihiro 阅读(421) 评论(0) 推荐(0) 编辑

AE TIN的切割

摘要: 在ArcMap -->ToolBox-->TinCreation-->Edit Tin传入参数1:TIN传入参数2:FeatureClass选择好FeatureClass之后,有一个参数是SF_type SF_type的取值和产生TIN的效果:valueresult regioneffecthardclipPolygon regionIf polygon out cover, out part will also generate TinhardlinePolygon region Union Tin regionUnion region Tin 阅读全文
posted @ 2012-05-09 14:20 imihiro 阅读(363) 评论(0) 推荐(0) 编辑

ArcGIS GeoDataBase GeoDataset dataset

摘要: shp ,raster 对应 FeatrueClass多个空间参考相同的 feature class -->GeoDatasetGeodataset(Networkdataset) 必须存在于 GeoDataBase中。GeodataBase分为 Personal GDB 和 SDE。GDB是将实体文件存到mdb(access数据库中)。SDE则是将实体文件存到SQLServer或者Oracle中。 阅读全文
posted @ 2012-05-09 11:55 imihiro 阅读(757) 评论(0) 推荐(0) 编辑

AE Geoprocessor 实现 AnalysisTool Union功能

摘要: /// <summary> /// gp实现featureClass的 Analysis Union功能 /// </summary> /// <param name="shp1">featureclass</param> /// <param name="shp2">featureclass</param> public static void UnionShape(string shp1, string shp2) { Geoprocessor gp = new Geopro.. 阅读全文
posted @ 2012-05-09 11:17 imihiro 阅读(712) 评论(0) 推荐(0) 编辑

函数图象绘制 控件 ntgraph

摘要: http://wenku.baidu.com/view/c34e4507e87101f69e319509.html 阅读全文
posted @ 2012-05-08 21:19 imihiro 阅读(298) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 下一页