/// <summary> /// Set a mask on the gp object to buffer the output to the specified distance /// </summary> /// <param name="workspace">IFeatureWorkspace</param> /// <param name="geomList">List of geometries to create the mask</param> /// <param name="gp">IGeoProcessor2</param> /// <param name="fcName">Name of feature class</param> private string SetGPMask(IFeatureWorkspace workspace, List <IGeometry> geomList, IGeoProcessor2 gp, string fcName) { IFeatureClass maskFc = CreateMaskFeatureClass(workspace, SelectedSurfaceSpatialRef, fcName + "_" + RunCount.ToString()); foreach (IGeometry geom in geomList) { //create a new point feature IFeature ipFeature = maskFc.CreateFeature(); ipFeature.Shape = geom; ipFeature.Store(); } IDataset ds = (IDataset)maskFc; string path = ds.Workspace.PathName + "\\" + ds.BrowseName; gp.SetEnvironmentValue("mask", path); return(path); }
public static String[] GetFeatures(IWorkspace workspace, ref IGeoProcessor2 gp, String wildCard = "", String featureType = "") { try { gp.SetEnvironmentValue("workspace", workspace.PathName); wildCard = (string.IsNullOrEmpty(wildCard) ? wildCard : wildCard + "*"); var features = gp.ListFeatureClasses(wildCard, featureType, ""); String feature; var featList = new List <String>(); while ((feature = features.Next()) != string.Empty) { featList.Add(Path.Combine(workspace.PathName, feature)); } return(featList.ToArray()); } catch (Exception) { return(GetRootFeatures(workspace)); } }
/// <summary> /// Set a mask on the gp object to buffer the output to the specified distance /// </summary> /// <param name="workspace">IFeatureWorkspace</param> /// <param name="geomList">List of geometries to create the mask</param> /// <param name="gp">IGeoProcessor2</param> private string SetGPMask(IFeatureWorkspace workspace, List<IGeometry> geomList, IGeoProcessor2 gp, string fcName) { IFeatureClass maskFc = CreateMaskFeatureClass(workspace, fcName + "_" + RunCount.ToString()); foreach (IGeometry geom in geomList) { //create a new point feature IFeature ipFeature = maskFc.CreateFeature(); ipFeature.Shape = geom; ipFeature.Store(); } IDataset ds = (IDataset)maskFc; string path = ds.Workspace.PathName + "\\" + ds.BrowseName; gp.SetEnvironmentValue("mask", path); return path; }