Beispiel #1
0
 public ProjectFolder Clone()
 {
     ProjectFolder folder = new ProjectFolder();
     folder.ClutterIndexPath = this.m_clutterIndexPath;
     folder.ClutterMenuPath = this.m_clutterMenuPath;
     folder.HeightIndexPath = this.m_heightIndexPath;
     folder.BuildingIndexPath = this.m_buildingIndexPath;
     folder.VectorIndexPath = this.m_vectorIndexPath;
     folder.VectorMenuPath = this.m_vectorMenuPath;
     folder.ProjectionFilePath = this.m_projectionFilePath;
     folder.IsFileValid = this.m_IsFileValid;
     return folder;
 }
 public GeoUTMParamsImportProperty(ProjectFolder folder, IGeoProjection projectionReader) : base(folder, projectionReader)
 {
     this.m_LongitudeZone = 30;
     base.Projection.GaussProjParams.longitudeOrigin = -3.0;
     this.m_LongitudeZone = base.Projection.GaussProjParams.zone;
 }
 public GeoDistortionParamsImportProperty(ProjectFolder folder, IGeoProjection projectionReader) : base(folder, projectionReader)
 {
 }
Beispiel #4
0
 public IAGeoImportProperty(ProjectFolder folder, IGeoProjection projectionReader)
 {
     this.m_ProjectFolder = folder;
     this.m_IProjection = projectionReader;
 }
 public GeoUTMParamsCoordinateProperty(ProjectFolder folder, GeoForm form) : base(folder, form)
 {
 }