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 = new ShapefileWorkspaceFactoryClass();
            IFeatureWorkspace pFeatureWorkSpace = pWorkSpaceFac.OpenFromFile(shpfolder,0) as IFeatureWorkspace;


            //创建字段集2
            IFeatureClassDescription fcDescription = new FeatureClassDescriptionClass();
            IObjectClassDescription ocDescription = (IObjectClassDescription)fcDescription;//创建必要字段
            IFields fields = ocDescription.RequiredFields;
            int shapeFieldIndex = fields.FindField(fcDescription.ShapeFieldName); 
            IField field = fields.get_Field(shapeFieldIndex);
            IGeometryDef geometryDef = field.GeometryDef; 
            IGeometryDefEdit geometryDefEdit = (IGeometryDefEdit)geometryDef; 
          //geometryDefEdit.GeometryType_2 = esriGeometryType.esriGeometryPoint;
          //geometryDefEdit.SpatialReference_2 = spatialReference;


            geometryDefEdit.GeometryType_2 = esriGeometryType.esriGeometryPolygon;
            ISpatialReferenceFactory pSpatialRefFac = new SpatialReferenceEnvironmentClass();
            IProjectedCoordinateSystem pcsSys = pSpatialRefFac.CreateProjectedCoordinateSystem((int)esriSRProjCS4Type.esriSRProjCS_Xian1980_3_Degree_GK_Zone_39);
            geometryDefEdit.SpatialReference_2 = pcsSys;


            IFieldChecker fieldChecker = new FieldCheckerClass();
            IEnumFieldError enumFieldError = null;
            IFields validatedFields = null; //将传入字段 转成 validatedFields
            fieldChecker.ValidateWorkspace = (IWorkspace)pFeatureWorkSpace;
            fieldChecker.Validate(fields, out enumFieldError, out validatedFields);


            pFeatureWorkSpace.CreateFeatureClass(shpname, validatedFields, ocDescription.InstanceCLSID, ocDescription.ClassExtensionCLSID, esriFeatureType.esriFTSimple, fcDescription.ShapeFieldName, "");

        }


//如果已存在,那么删除
            IFeatureClass pFCChecker = pFeatureWorkSpace.OpenFeatureClass(shpname);
            if (pFCChecker != null)
            {
                IDataset pds = pFCChecker as IDataset;
                pds.Delete();
            }


/// <summary>
        /// 向多边形shp中添加要素
        /// </summary>
        /// <param name="pPolygon">多边形</param>
        /// <param name="pFeatureClass">多边形shp</param>
        public static void AddFeatureToFeatureClass(IPolygon pPolygon,IFeatureClass pFeatureClass)
        {
            IFeature pFeature = pFeatureClass.CreateFeature();
            pFeature.Shape = pPolygon;
            pFeature.Store();                
        }


public void IFeatureClass_CreateFeature_Example(IFeatureClass featureClass)  
         {       
             //Function is designed to work with polyline data     
           if (featureClass.ShapeType != ESRI.ArcGIS.Geometry.esriGeometryType.esriGeometryPolyline) { return; }
        //create a geometry for the features shape       
             ESRI.ArcGIS.Geometry.IPolyline polyline = new ESRI.ArcGIS.Geometry.PolylineClass();    
             ESRI.ArcGIS.Geometry.IPoint point = new ESRI.ArcGIS.Geometry.PointClass();       
             point.X = 0; point.Y = 0;      
             polyline.FromPoint = point;
             point = new ESRI.ArcGIS.Geometry.PointClass();        
             point.X = 10; point.Y = 10;        polyline.ToPoint = point;
             IFeature feature = featureClass.CreateFeature();
        //Apply the constructed shape to the new features shape       
             feature.Shape = polyline;
             ISubtypes subtypes = (ISubtypes)featureClass;       
             IRowSubtypes rowSubtypes = (IRowSubtypes)feature;    
             if (subtypes.HasSubtype)// does the feature class have subtypes?        
             {  rowSubtypes.SubtypeCode = 1; //in this example 1 represents the Primary Pipeline subtype       
             }
        // initalize any default values that the feature has       
                 rowSubtypes.InitDefaultValues();
        //Commit the default values in the feature to the database       
                 feature.Store();
        //update the value on a string field that indicates who installed the feature.  
                 feature.set_Value(feature.Fields.FindField("InstalledBy"), "K Johnston");
        //Commit the updated values in the feature to the database     
                 feature.Store();   
             }

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值