今度見る
Create JPEG (hi-resolution) from ActiveView Snippet
Why does Exporting Document to JPEG using ArcObjects in Layout View result in bad picture quality?
ESRI.ArcGIS.Geometry.IPoint pt = new ESRI.ArcGIS.Geometry.Point(); pt.PutCoords(-35708, -53655); axMapControl1.CenterAt(pt); axMapControl1.Refresh();
ちなみに以下の方法で座標を設定したら正しく動作しなかった
ESRI.ArcGIS.Geometry.IPoint pt = new ESRI.ArcGIS.Geometry.Point(-35708, -53655);
更にMAPと空間データの座標刑が違う場合はstackoverflow Converting Lat / long to PointClassを参照
念の為
ISpatialReferenceFactory srFactory = new SpatialReferenceEnvironmentClass(); IGeographicCoordinateSystem gcs = srFactory.CreateGeographicCoordinateSystem((int)esriSRGeoCSType.esriSRGeoCS_WGS1984); ISpatialReference sr1 = gcs; IPoint point = new PointClass() as IPoint; point.PutCoords(-92.96000, 44.9227); IGeometry geometryShape; geometryShape = point; geometryShape.SpatialReference = sr1; geometryShape.Project(mapControl.SpatialReference); mapControl.DrawShape(geometryShape);
// 地図のEPSGが2451の場合
地図座標をピクセルに変換
ESRI.ArcGIS.Geometry.IPoint pt = new ESRI.ArcGIS.Geometry.Point(); pt.PutCoords(-35708, -53655); ESRI.ArcGIS.Display.IScreenDisplay screenDisplay = axMapControl1.ActiveView.ScreenDisplay; int x; int y; screenDisplay.DisplayTransformation.FromMapPoint(pt, out x, out y);
ピクセルを地図座標に変換
ESRI.ArcGIS.Display.IScreenDisplay screenDisplay = axMapControl1.ActiveView.ScreenDisplay; ESRI.ArcGIS.Geometry.IPoint point = screenDisplay.DisplayTransformation.ToMapPoint(100, 100);
ESRI.ArcGIS.Geodatabase.IWorkspaceFactory workspaceFactory = new ESRI.ArcGIS.DataSourcesGDB.SqlWorkspaceFactoryClass(); ESRI.ArcGIS.Geodatabase.IFeatureWorkspace featureWorkspace = (ESRI.ArcGIS.Geodatabase.IFeatureWorkspace)workspaceFactory1.OpenFromFile(@"Spatialiteフルパス", 0); ESRI.ArcGIS.Geodatabase.IFeatureClass featureClass = featureWorkspace.OpenFeatureClass("テーブル名"); ESRI.ArcGIS.Carto.IFeatureLayer featureLayer = new ESRI.ArcGIS.Carto.FeatureLayerClass(); featureLayer.FeatureClass = featureClass; featureLayer.Name = "レイヤ名"; axMapControl1.AddLayer(featureLayer);
GeoTIFFのExtentはGDALのユーティリティgdalinfoで表示可能。
gdalinfoのサイト
Windows上で動作するコンパイル済みのGDALモジュールはOsgeoのwikiのダウンロードサイトにあるリンクからたどった
Gisinternalsよりダウンロード
今回は1.9.2 vc2008 32bit版(release-1500-gdal-1-9-2-mapserver-6-2-0.zip)をダウンロード
圧縮ファイル内のbinディレクトリにあるdllとbin\gdal\appsにあるgdalinfo.exeをドイツのディレクトリにおいてコマンドからGEOTIFFのパスを渡すとgeotiffのExtenを含めて各種の情報を表示
OpenLayersでOSMの地図を表示していたのがだ、なぜか表示されなくなった。
7月にMapQuestが使えなくなり、OSMに切り替えたのだがOSMもとは・・・
OpenLayersのsampleをサイトを見ると表示されている。
表示される
layer_base = new OpenLayers.Layer.OSM();
表示される
layer_base = new OpenLayers.Layer.OSM( "Simple OSM Map");
HRESULT:0x80040201 | “Failed to load a resource (string, icon, bitmap, etc).” | LOADING_RESOURCE |
HRESULT:0x80040202 | The index passed was not within the valid range. | INDEX_OUT_OF_RANGE |
HRESULT:0x80040203 | The operation is not supported by this implementation. | NOT_SUPPORTED |
HRESULT:0x80040204 | There is not enough storage space to complete the operation. | NOT_ENOUGH_SPACE |
HRESULT:0x80040205 | The user does not have permission to execute the operation. | NO_PERMISSION |
HRESULT:0x80040206 | “Signals that an implementation specific error has occurred and that the client should inspect the error object for additional errors. For example, SDE API errors.” | IMPLEMENTATION |
HRESULT:0x80040207 | An invalid SQL statement was used. | INVALID_SQL |
HRESULT:0x80040208 | A networking error occurred. | NETWORK |
HRESULT:0x80040209 | A date conversion error has occurred. | DATE_CONVERSION |
HRESULT:0x8004020A | The object has been deleted and is no longer valid. | OBJECT_IS_DELETED |
HRESULT:0x8004020B | The workspace is of the wrong type. | WORKSPACE_NOT_COMPATIBLE |
HRESULT:0x8004020C | Modifications to the object are not allowed. | OBJECT_IS_READONLY |
HRESULT:0x8004020D | Object is busy. | OBJECT_IN_USE |
HRESULT:0x8004020E | Maximum number of objects reached. | OBJECT_MAX_REACHED |
HRESULT:0x8004020F | Object is currently locked. | OBJECT_IS_LOCKED |
HRESULT:0x80040210 | Invalid envelope encountered. | INVALID_ENVELOPE |
HRESULT:0x80040211 | File read/write error occurred. | FILE_IO |
HRESULT:0x80040212 | A product licensing error occurred. | LICENSE_FAILURE |
HRESULT:0x80040213 | An underlying database error occurred. | DBMS_ERROR |
HRESULT:0x80040214 | An error occurred trying to coerce data from one type to another. | COERCING |
HRESULT:0x80040215 | A general data binding error occurred. | BINDING |
HRESULT:0x80040216 | Cannot acquire a schema lock because of an existing lock. | SCHEMA_LOCK_CONFLICT |
HRESULT:0x80040217 | Must be the owner to do this operation. | MUST_BE_OWNER |
HRESULT:0x80040218 | Object has no schema locks. | OBJECT_NOT_LOCKED |
HRESULT:0x80040219 | Connection to Esri OLE DB provider is invalid. | ESRI_PROVIDER_CONNECT_INVALID |
HRESULT:0x8004021A | SDE Connection dialog is cancelled. | CONNECTION_CANCELLED |
HRESULT:0x8004021B | This release of the Geodatabase is not up to date. | INVALID_RELEASE |
HRESULT:0x8004021C | Geodatabase System Tables not found. | NO_SYSTEM_TABLES |
HRESULT:0x8004021D | Conflicting connection parameters. | CONNECT_PARAMETERS_CONFLICT |
HRESULT:0x8004021E | Geodatabase FieldInfo system table inconsistent. | FIELDINFO_SYSTEM_TABLE_INCONSISTENCY |
HRESULT:0x8004021F | The application is not licensed to edit this type of data . | NO_EDIT_LICENSE |
HRESULT:0x80040220 | The application is not licensed to create or modify schema for this type of data. | NO_SCHEMA_LICENSE |
HRESULT:0x80040221 | The application does not have the required license for this operation. | NO_OPERATION_LICENSE |
HRESULT:0x80040222 | The current operation cannot be undone. | OPERATION_CANNOT_BE_UNDONE |
HRESULT:0x80040223 | The current operation requires an edit operation. | EDIT_OPERATION_REQUIRED |
HRESULT:0x80040224 | The reconcile operation cannot be undone. | RECONCILE_CANNOT_BE_UNDONE |
HRESULT:0x80040225 | The object is not initialized. | OBJECT_NOT_INITIALIZED |
HRESULT:0x80040226 | The integer requires a 64-bit representation. | INTEGER_REQUIRES_64BITS |
HRESULT:0x80040227 | Syntax error. | SYNTAX_ERROR |
HRESULT:0x80040228 | License not intialized. | LICENSE_NOT_INITIALIZED |
HRESULT:0x80040229 | Maximum table size has been exceeded. | TABLE_SIZE_EXCEEDED |
HRESULT:0x8004022A | Cannot access secured data. | SECURED_DATA_NO_ACCESS |
HRESULT:0x8004022B | An SQL statement containing comment and/or semicolon was used. | INVALID_SQLQUERY |
HRESULT:0x8004022C | The name is invalid. | INVALID_NAME |
HRESULT:0x8004022D | Cannot acquire a lock. | LOCK_CONFLICT |
HRESULT:0x8004022E | Upgrade will need write access to the geodatabase to successfully complete. | UPGRADE_NEEDS_WRITE_ACCESS |
HRESULT:0x8004022F | FIDs in FIDSet must not be negative. | NEGATIVE_FID |
HRESULT:0x80040230 | This version of the Geodatabase client is incompatible with the dataset and cannot open it. | INCOMPATIBLE_CLIENT_VERSION |
HRESULT:0x80040231 | This functionality is only supported on a Geodatabase release of ArcGIS 10.0 or greater. | NEW_SCHEMA_REQUIRED |
HRESULT:0x80040232 | The connection format cannot be made forward compatible. | NON_FORWARD_COMPATIBLE_CONNECTION |
HRESULT:0x80040251 | The workspace is not connected. | WORKSPACE_NOT_CONNECTED |
HRESULT:0x80040252 | The workspace is already connected. | WORKSPACE_ALREADY_CONNECTED |
HRESULT:0x80040253 | The server was not found. | SERVER_NOT_FOUND |
HRESULT:0x80040254 | “The server was found, but is not available at this time.” | SERVER_NOT_AVAILABLE |
HRESULT:0x80040255 | The server does not allow anymore connections at this time. | SERVER_MAX_CONNECTIONS |
HRESULT:0x80040256 | The user and/or password is invalid. | USER_INVALID |
HRESULT:0x80040257 | The user does not have access to the workspace. | USER_NOACCESS |
HRESULT:0x80040258 | The database was not found. | DATABASE_NOT_FOUND |
HRESULT:0x80040259 | “The database was found, but is not available at this time.” | DATABASE_NOT_AVAILABLE |
HRESULT:0x8004025A | The workspace already exists. | WORKSPACE_ALREADY_EXISTS |
HRESULT:0x8004025B | Unable to instantiate workspace extension component. | WORKSPACE_EXTENSION_CREATE_FAILED |
HRESULT:0x8004025C | Unable to initialize workspace extension. | WORKSPACE_EXTENSION_INIT_FAILED |
HRESULT:0x8004025D | Failed sending dataset created notification to workspace extension. | WORKSPACE_EXTENSION_DATASET_CREATE_FAILED |
HRESULT:0x8004025E | Failed sending dataset renamed notification to workspace extension. | WORKSPACE_EXTENSION_DATASET_RENAME_FAILED |
HRESULT:0x8004025F | Failed sending dataset deleted notification to workspace extension. | WORKSPACE_EXTENSION_DATASET_DELETE_FAILED |
HRESULT:0x80040260 | Illegal duplicate workspace extension name. | WORKSPACE_EXTENSION_DUP_NAME |
HRESULT:0x80040261 | Illegal duplicate workspace extension guid. | WORKSPACE_EXTENSION_DUP_GUID |
HRESULT:0x80040262 | Altering workspace extension registration requires Geodatabase DBA priveleges. | WORKSPACE_EXTENSION_NO_REG_PRIV |
HRESULT:0x80040263 | Workspace or data source is read only. | WORKSPACE_READONLY |
HRESULT:0x80040264 | The dataset is not supported at the workspace level. | DATASET_NOT_SUPPORTED_AT_WORKSPACE_LEVEL |
HRESULT:0x80040265 | Workspace does not support Keyset Table. | WORKSPACE_NO_KEYSETTABLEMANAGER |
HRESULT:0x80040266 | Keyset table was not returned. | WORKSPACE_NO_KEYSETTABLE |
HRESULT:0x80040267 | Returned Keyset id is invalid. | WORKSPACE_INVALID_KEYSETID |
HRESULT:0x80040268 | A missing or bad connection property was encountered. | WORKSPACEFACTORY_BAD_CONNECTIONPROPERTY |
HRESULT:0x80040269 | Workspace extensions are not supported. | WORKSPACE_EXTENSION_NOT_SUPPORTED |
HRESULT:0x8004026A | Failed sending dataset modified notification to workspace extension. | WORKSPACE_EXTENSION_DATASET_MODIFY_FAILED |
HRESULT:0x8004026B | Workspace has no spatial type. | WORKSPACE_NO_SPATIAL_TYPE |
HRESULT:0x8004026B | The historical marker already exists. | HISTORICAL_MARKER_ALREADY_EXISTS |
HRESULT:0x80040301 | The dataset was not found. | DATASET_NOT_FOUND |
HRESULT:0x80040302 | The dataset name is invalid. | DATASET_INVALID_NAME |
HRESULT:0x80040303 | The dataset already exists. | DATASET_ALREADY_EXISTS |
HRESULT:0x80040304 | Cannot rename the dataset with objects already open. | DATASET_CANNOT_RENAME |
HRESULT:0x80040305 | Invalid dataset type. | DATASET_INVALID_TYPE |
HRESULT:0x80040306 | Cannot delete the dataset. | DATASET_CANNOT_DELETE |
HRESULT:0x80040307 | Cannot find the specified feature dataset extension type. | DATASET_EXTENSION_TYPE_NOT_FOUND |
HRESULT:0x80040308 | The paste operation on the dataset is not supported in the target release of the Geodatabase. | DATASET_PASTE_NOT_SUPPORTED_IN_RELEASE |
HRESULT:0x80040309 | Cannot rename the dataset. | DATASET_CANNOT_RENAME_NOT_SUPPORTED |
HRESULT:0x8004030A | Unable to instantiate dataset extension component. | DATASET_EXTENSION_CREATE_FAILED |
HRESULT:0x8004030B | Unable to initialize dataset extension. | DATASET_EXTENSION_INIT_FAILED |
HRESULT:0x8004030C | Cannot create a low precision dataset in a high precision database. | CANNOT_CREATE_LOW_PREC_DATASET_IN_HIGH_PREC_DB |
HRESULT:0x8004030D | Cannot create a high precision dataset in a low precision database. | CANNOT_CREATE_HIGH_PREC_DATASET_IN_LOW_PREC_DB |
HRESULT:0x8004030E | The dataset type is not present in the database. | DATASET_TYPE_NOT_PRESENT |
HRESULT:0x8004030F | Cannot copy a feature class without all associated controllers. | CANNOT_COPY_CLASS_WITHOUT_ALL_CONTROLLERS |
HRESULT:0x80040310 | The dataset type is not supported in this release of the Geodatabase. | DATASET_TYPE_NOT_SUPPORTED_IN_RELEASE |
HRESULT:0x80040311 | The dataset has an invalid definition. | DATASET_INVALID_DEFINITION |
HRESULT:0x80040312 | The dataset has an invalid id. | DATASET_INVALID_ID |
HRESULT:0x80040313 | Cannot rename a dataset that is being edited. | CANNOT_RENAME_WHILE_EDITING |
HRESULT:0x80040314 | Cannot update the schema of a dataset that is being edited. | CANNOT_MODIFY_SCHEMA_WHILE_EDITING |
HRESULT:0x80040315 | The dataset is unknown to this version of the Geodatabase client and cannot be opened. | INCOMPATIBLE_CLIENT_CANNOT_OPEN_DATASET |
HRESULT:0x80040351 | The table was not found. | TABLE_NOT_FOUND |
HRESULT:0x80040352 | The table name is invalid. | TABLE_INVALID_NAME |
HRESULT:0x80040353 | The table already exists. | TABLE_ALREADY_EXISTS |
HRESULT:0x80040354 | The table does not have an ObjectID field. | TABLE_NO_OID_FIELD |
HRESULT:0x80040355 | The configuration keyword is invalid. | TABLE_INVALID_KEYWORD |
HRESULT:0x80040356 | The table is not multiversioned. | TABLE_NOT_VERSIONED |
HRESULT:0x80040357 | Cannot create a table with a duplicate column. | TABLE_DUPLICATE_COLUMN |
HRESULT:0x80040358 | A column was specified that does not exist. | TABLE_COLUMN_NOT_FOUND |
HRESULT:0x80040359 | Cannot access this table because it is in use. | TABLE_IN_USE |
HRESULT:0x8004035A | The maximum record length has been exceeded. | TABLE_RECORD_LENGTH_EXCEEDED |
HRESULT:0x8004035B | The table is multiversioned. | TABLE_VERSIONED |
HRESULT:0x8004035C | The table is moving edits to base. | TABLE_MOVINGEDITSTOBASE |
HRESULT:0x8004035D | The table has archiving enabled. | TABLE_ARCHIVING |
HRESULT:0x8004035E | The table does not have archiving enabled. | TABLE_NOT_ARCHIVING |
HRESULT:0x8004035F | The table is historical and is read-only. | TABLE_READONLY_HISTORICAL |
HRESULT:0x80040360 | The table does not have attachments. | TABLE_NO_ATTACHMENTS |
HRESULT:0x80040361 | Table attachments not supported in this release of the Geodatabase. | TABLE_ATTACHMENTS_NOT_SUPPORTED |
HRESULT:0x80040362 | This feature class is based upon a table view and thus cannot be analyzed. | TABLE_CANNOT_ANALYZE_TABLE_VIEW |
HRESULT:0x80040363 | The table does not have a Global ID field. | TABLE_NO_GLOBALID_FIELD |
HRESULT:0x80040364 | Attachments are not supported on attachment tables. | ATTACHMENTS_ON_ATTACHMENT_TABLE_NOT_SUPPORTED |
HRESULT:0x80040365 | Table is not empty. | TABLE_NOT_EMPTY |
HRESULT:0x80040366 | Attachments only supported on geodatabases. | ATTACHMENTS_ONLY_ON_GEODATABASES |
HRESULT:0x80040401 | The feature class was not found. | FEATURECLASS_NOT_FOUND |
HRESULT:0x80040402 | The feature class’s extent could not be retrieved or is invalid. | FEATURECLASS_BAD_EXTENT |
HRESULT:0x80040403 | Invalid feature class name. | FEATURECLASS_INVALID_NAME |
HRESULT:0x80040404 | The feature class already exists. | FEATURECLASS_ALREADY_EXISTS |
HRESULT:0x80040405 | The feature class is currently in load-only mode. | FEATURECLASS_LOAD_MODE |
HRESULT:0x80040406 | The feature class is in a geometric network and cannot be deleted. | FEATURECLASS_NETWORK_CANNOT_DELETE |
HRESULT:0x80040407 | The feature class’ default subtype code cannot be retrieved or is invalid. | FEATURECLASS_BAD_DEFAULT_SUBTYPE_CODE |
HRESULT:0x80040408 | The feature class does not have a specified subtype field. | FEATURECLASS_NO_SUBTYPE_FIELD |
HRESULT:0x80040409 | The orphan junction featureclass cannot be renamed. | FEATURECLASS_NETWORK_CANNOT_RENAME |
HRESULT:0x8004040A | The feature class already has the specified subtype. | FEATURECLASS_SUBTYPE_EXISTS |
HRESULT:0x8004040B | The feature dataset is not editable. | FEATURECLASS_FD_NOT_EDITABLE |
HRESULT:0x8004040C | The subtype field on a feature class cannot be renamed. | FEATURECLASS_SUBTYPE_FIELD_CANNOT_RENAME |
HRESULT:0x8004040D | The specified subtype code is either too large or small to represent. | SUBTYPE_CODE_INVALID |
HRESULT:0x8004040E | The specified subtype code does not exist. | SUBTYPE_CODE_DOES_NOT_EXIST |
HRESULT:0x8004040F | The value of the subtype code is NULL. | SUBTYPE_CODE_IS_NULL |
HRESULT:0x80040410 | The value of the subtype code is not a long or short integer. | SUBTYPE_CODE_NOT_INTEGER |
HRESULT:0x80040411 | The feature class does not have a shape column. | FEATURECLASS_NO_SHAPE_COLUMN |
HRESULT:0x80040412 | The feature class is in a topology and cannot be deleted. | FEATURECLASS_TOPOLOGY_CANNOT_DELETE |
HRESULT:0x80040413 | The subtype code is associated with a topology rule. | SUBTYPE_CODE_HAS_ASSOCIATED_TOPOLOGY_RULE |
HRESULT:0x80040414 | The subtype code is in use and cannot be deleted. | SUBTYPE_IN_USE_CANNOT_DELETE |
HRESULT:0x80040415 | The subtype code cannot be added. | SUBTYPE_CANNOT_ADD |
HRESULT:0x80040416 | The spatial cache’s extent is empty or has not been set. | SPATIAL_CACHE_EMPTY_EXTENT |
HRESULT:0x80040417 | The feature class is already a member of the specified controller. | FEATURECLASS_MEMBER_OF_CONTROLLER |
HRESULT:0x80040418 | The feature class participates in a geometric network that could not be opened. | FEATURECLASS_CANT_OPEN_GEOMETRICNETWORK |
HRESULT:0x80040419 | The feature class participates in a topology that could not be opened. | FEATURECLASS_CANT_OPEN_TOPOLOGY |
HRESULT:0x8004041A | The feature class is in a network dataset and cannot be deleted. | FEATURECLASS_NETWORK_DATASET_CANNOT_DELETE |
HRESULT:0x8004041B | Insufficient privileges to perform the operation. | FEATURECLASS_INSUFFICIENT_PRIVILEGE |
HRESULT:0x80040451 | The planargraph was not found. | PLANARGRAPH_NOT_FOUND |
HRESULT:0x80040501 | The geometric network was not found. | GEOMETRICNETWORK_NOT_FOUND |
HRESULT:0x80040502 | Error adding a feature to a network. | ADD_FEATURE_TO_NETWORK |
HRESULT:0x80040503 | Error creating a logical network. | CREATE_LOGICAL_NETWORK |
HRESULT:0x80040504 | The geometric network already exists. | GEOMETRICNETWORK_ALREADY_EXISTS |
HRESULT:0x80040505 | Geometry corresponding to edge element may not be zero length. | ZERO_LENGTH_EDGE_ELEMENT |
HRESULT:0x80040506 | Cannot rename a geometric network. | GEOMETRICNETWORK_CANNOT_RENAME |
HRESULT:0x80040507 | Inconsistent elements in the geometric network. | GEOMETRICNETWORK_ELEMENT_INCONSISTENCY |
HRESULT:0x80040508 | Feature classes in a geometric network must have homogeneous support for Zs on geometry. | NETWORK_FEATURES_HAVE_HOMOGENEOUS_Z_SUPPORT |
HRESULT:0x80040509 | There is no error table associated with the geometric network. | NO_ASSOCIATED_ERROR_TABLE |
HRESULT:0x8004050A | There is no point geometry associated with the feature element. | FEATURE_ELEMENT_MISSING_POINT_GEOMETRY |
HRESULT:0x8004050B | Feature classes in a geometric network must have homogeneous support for Ms on geometry. | NETWORK_FEATURES_HAVE_HOMOGENEOUS_M_SUPPORT |
HRESULT:0x8004050C | An existing class has the same name as the orphan junction feature class. | CLASS_EXISTS_WITH_ORPHAN_JUNCTION_CLASS_NAME |
HRESULT:0x8004050D | The geometric network name is invalid. | GEOMETRICNETWORK_INVALID_NAME |
HRESULT:0x8004050E | The specified field cannot be part of a weight association. | INVALID_FIELD_FOR_WEIGHT_ASSOCIATION |
HRESULT:0x8004050F | The specified class cannot be part of a weight association. | INVALID_CLASS_FOR_WEIGHT_ASSOCIATION |
HRESULT:0x80040510 | The connected feature does not exist. | CONNECTED_FEATURE_DOES_NOT_EXIST |
HRESULT:0x80040511 | Error opening a logical network. | OPEN_LOGICAL_NETWORK |
HRESULT:0x80040512 | A network feature has a network element whose id is larger than the maximum eid value in the PROPS table. | NETWORK_ELEMENT_ID_BEYOND_MAX |
HRESULT:0x80040513 | Edge endpoint is not coincident with junction. | EDGE_ENDPOINT_NOT_COINCIDENT |
HRESULT:0x80040514 | Cannot delete populated feature class from a geometric network. | CANNOT_DELETE_POPULATED_FEATURE_CLASS |
HRESULT:0x80040515 | Cannot delete the orphan junction class from a geometric network. | CANNOT_DELETE_ORPHAN_JUNCTION_CLASS |
HRESULT:0x80040516 | Empty geometric network is not allowed. | EMPTY_GEOMETRICNETWORK_IS_NOT_ALLOWED |
HRESULT:0x80040551 | The dataset does not support editing. | DATASET_UNEDITABLE |
HRESULT:0x80040552 | Error starting an edit session. | START_EDITING |
HRESULT:0x80040553 | Error saving an edit session. | SAVE_EDIT_SESSION |
HRESULT:0x80040554 | Error stopping an edit session with save edits. | STOP_EDITING_WITH_SAVE |
HRESULT:0x80040555 | Error stopping an edit session with discard edits. | STOP_EDITING_WITH_DISCARD |
HRESULT:0x80040556 | This operation is not allowed while editing. | NOT_ALLOWED_WHILE_EDITING |
HRESULT:0x80040557 | Error in cleaning coverage during save. | COULD_NOT_CLEAN_COVERAGE |
HRESULT:0x80040558 | No valid InteGrateable Feature layers within Feature Dataset. | NO_INTEGRATEABLE_LAYERS |
HRESULT:0x80040559 | Invalid Topology. | INVALID_TOPOLOGY |
HRESULT:0x8004055A | Operation only allowed while editing. | NOT_EDITING |
HRESULT:0x8004055B | Error in encoding INFO item during save. | COULD_NOT_ENCODE_INFO_ITEM |
HRESULT:0x8004055C | Node must intersect an arc feature. | NODE_NOT_ON_ARC |
HRESULT:0x8004055D | Cannot remove last label from polygon. | CANNOT_REMOVE_LAST_LABEL |
HRESULT:0x8004055E | Cannot move label out of polygon. | CANNOT_MOVE_LABEL_OUT_OF_POLYGON |
HRESULT:0x8004055F | “Label no longer within valid polygon, deleting.” | INVALID_POLYGON_LABEL_DELETED |
HRESULT:0x80040560 | Operations that break coverage topology are not supported. | CANNOT_BREAK_TOPOLOGY |
HRESULT:0x80040561 | Coverage labels cannot be created in the universe polygon. | CANNOT_CREATE_UNIVERSE_LABEL |
HRESULT:0x80040562 | Coverage labels in the universe polygon cannot be moved. | CANNOT_MOVE_UNIVERSE_LABELS |
HRESULT:0x80040563 | Invalid geometry. | INVALID_GEOMETRY |
HRESULT:0x80040564 | Corupted Coverage. | CORUPTED_COVERAGE |
HRESULT:0x80040565 | Duplicate Field Names within Table. | DUPLICATE_FIELD_NAMES |
HRESULT:0x80040566 | Cannot edit features with Z values. | CANNOT_EDIT_ZS |
HRESULT:0x80040567 | “No newly added features, after PolygonSplitLines.” | NO_POLYGONS_CREATED |
HRESULT:0x80040568 | Unable to save edits because an incorrect edit operation could not be completely rolled back. | ABORT_EDITS_FAILED |
HRESULT:0x80040569 | Unable to save edits because of failure in flushing edits to the database. | FLUSH_EDITS_FAILED |
HRESULT:0x8004056A | Unable to edit the table or feature class because it has a unique index on a non OID field. | CANNOT_EDIT_TABLE_WITH_UNIQ_USER_INDEX |
HRESULT:0x8004056B | Unable to edit the dataset because it contains a table or feature class with a unique index on a non OID field. | CANNOT_EDIT_DATASET_WITH_UNIQ_USER_INDEX |
HRESULT:0x8004056C | Cannot rebuild polygons from current topology elements. | CANNOT_REBUILD_POLYGONS |
HRESULT:0x8004056D | User transaction not allowed at this time. | USERTRANSACTION_NOT_ALLOWED |
HRESULT:0x8004056E | The object cannot be edited using the current edit session mode. | NOT_EDITABLE_EDITSESSIONMODE |
HRESULT:0x8004056F | Cannot edit compressed data. | CANNOT_EDIT_COMPRESSED_DATASET |
HRESULT:0x80040570 | Cannot update compressed data. | CANNOT_UPDATE_COMPRESSED_DATASET |
HRESULT:0x80040571 | Cannot use compressed data for this operation. | COMPRESSED_DATASET_NOT_SUPPORTED |
HRESULT:0x80040572 | Invalid operation for edit session mode. | INVALID_OPERATION_FOR_EDITSESSIONMODE |
HRESULT:0x80040573 | FileGDB compression is not installed. | COMPRESSED_DATASET_NOT_INSTALLED |
HRESULT:0x80040574 | The modified geometry must be a copy. | MODIFIED_GEOMETRY_MUST_BE_COPY |
HRESULT:0x80040575 | The modified geometry must be a copy. | PENDING_BACKGROUND_PROCESSES |
HRESULT:0x80040576 | Cannot Start/Stop editing while there is pending Feature/Record set input.. | PENDING_GEOPROCESSING_INPUT |
HRESULT:0x80040601 | This property does not have a SubType. | PROPERTY_NO_SUBTYPE |
HRESULT:0x80040602 | The property was not found. | PROPERTY_NOT_FOUND |
HRESULT:0x80040651 | A general error when something is wrong with a Field. | FIELD_INVALID |
HRESULT:0x80040652 | The name of the Field is unacceptable. | FIELD_INVALID_NAME |
HRESULT:0x80040653 | An expected Field was not found or could not be retrieved properly. | FIELD_NOT_FOUND |
HRESULT:0x80040654 | The Field already exists. | FIELD_ALREADY_EXISTS |
HRESULT:0x80040655 | The Field type is invalid or unsupported for the operation. | FIELD_INVALID_TYPE |
HRESULT:0x80040656 | “The Field type does not support the current operation. For example, attempting to set OID field to NULL.” | FIELD_UNSUPPORTED_OPERATION |
HRESULT:0x80040657 | The GeometryType property of the Field is invalid or unsupported for this operation. | FIELD_INVALID_GEOMETRY_TYPE |
HRESULT:0x80040658 | The Field is not editable. | FIELD_NOT_EDITABLE |
HRESULT:0x80040659 | The Field is not nullable. | FIELD_NOT_NULLABLE |
HRESULT:0x8004065A | The Field corresponds to a weight and may not be deleted. | FIELD_CANNOT_DELETE_WEIGHT_FIELD |
HRESULT:0x8004065B | The Field is required and may not be deleted. | FIELD_CANNOT_DELETE_REQUIRED_FIELD |
HRESULT:0x8004065C | The Field is a subtype field and may not be deleted. | FIELD_CANNOT_DELETE_SUBTYPE_FIELD |
HRESULT:0x8004065D | The Field is the last remaining field and may not be deleted. | FIELD_CANNOT_DELETE_LAST_FIELD |
HRESULT:0x8004065E | The Field is the keyword the destination DBMS. | FIELD_IS_KEYWORD |
HRESULT:0x8004065F | The field cannot be deleted because it is being used as a relationship key. | FIELD_CANNOT_DELETE_RELKEY_FIELD |
HRESULT:0x80040660 | The shape field is missing the geometry def. | FIELD_MISSING_GEOMETRY_DEF |
HRESULT:0x80040661 | The field is used as a relationship key. | FIELD_IS_RELKEY_FIELD |
HRESULT:0x80040662 | The field is used by Editor Tracking. | FIELD_USED_BY_EDITOR_TRACKING |
HRESULT:0x80040663 | The field is used to define subtypes. | FIELD_IS_SUBTYPE_FIELD |
HRESULT:0x80040664 | The field is used to define a network ancillary role. | FIELD_IS_NETWORK_ANCILLARY_FIELD |
HRESULT:0x80040665 | The field corresponds to a weight. | FIELD_IS_WEIGHT_FIELD |
HRESULT:0x80040666 | The field is an enabled field associated with a network element. | FIELD_IS_ENABLED_FIELD |
HRESULT:0x80040667 | The field is required. | FIELD_IS_REQUIRED_FIELD |
HRESULT:0x80040701 | A general error when something is wrong with the Fields collection. | FIELDS_INVALID |
HRESULT:0x80040702 | An expected Fields collection was not found or could not be retrieved properly. | FIELDS_NOT_FOUND |
HRESULT:0x80040703 | The Fields collection did not contain an expected geometry field. | FIELDS_NO_GEOMETRY |
HRESULT:0x80040704 | The Fields collection did not contain an expected OID field. | FIELDS_NO_OID |
HRESULT:0x80040705 | The Fields collection contained multiple OID fields. | FIELDS_MULTIPLE_OIDS |
HRESULT:0x80040706 | The Fields collection contained multiple geometry fields. | FIELDS_MULTIPLE_GEOMETRIES |
HRESULT:0x80040707 | Another field within the class already has this model name. | FIELDS_MODEL_NAME_ALREADY_EXISTS |
HRESULT:0x80040708 | The Fields collection contained multiple raster fields. | FIELDS_MULTIPLE_RASTERS |
HRESULT:0x80040709 | The Fields collection contained multiple GlobalID fields. | FIELDS_MULTIPLE_GLOBALIDS |
HRESULT:0x8004070A | The Fields collection is empty. | FIELDS_EMPTY |
HRESULT:0x80040751 | The operation requires a different index type. | INDEX_WRONG_TYPE |
HRESULT:0x80040752 | The index already exists. | INDEX_ALREADY_EXISTS |
HRESULT:0x80040753 | The index was not found. | INDEX_NOT_FOUND |
HRESULT:0x80040754 | This type of index is not allowed. | INDEX_NOT_ALLOWED |
HRESULT:0x80040801 | Unable to find a required metadata table. | METADATA_TABLE_NOT_FOUND |
HRESULT:0x80040802 | A required Field in a metadata table could not be located. | METADATA_FIELD_NOT_FOUND |
HRESULT:0x80040803 | An error occurred adding an entry to the ESRI_DATASETS table. | METADATA_ADDING_DATASET |
HRESULT:0x80040804 | An error occurred while adding an entry to the FEATUREDATASET_CLASSES or the FEATURECLASSES table. | METADATA_ADDING_FEATURECLASS |
HRESULT:0x80040805 | The CLSID read from the FEATURECLASSES table was bad (unable to convert using ::CLSIDFromString). | METADATA_BAD_CLSID |
HRESULT:0x80040851 | The operation does not support this spatial relationship. | SPATIALREL_NOT_SUPPORTED |
HRESULT:0x80040852 | The spatial relationship is unknown or not defined. | SPATIALREL_UNKNOWN |
HRESULT:0x80040853 | The operation does not support this feature type. | FEATURETYPE_NOT_SUPPORTED |
HRESULT:0x80040854 | The feature type is unknown or not defined. | FEATURETYPE_UNKNOWN |
HRESULT:0x80040855 | The operation does not support this dataset type. | DATASETTYPE_NOT_SUPPORTED |
HRESULT:0x80040856 | The dataset type is unknown or not defined. | DATASETTYPE_UNKNOWN |
HRESULT:0x80040857 | The operation does not support this draw style. | DRAWSTYLE_NOT_SUPPORTED |
HRESULT:0x80040858 | The draw style is unknown or not defined. | DRAWSTYLE_UNKNOWN |
HRESULT:0x80040859 | The operation does not support this draw phase. | DRAWPHASE_NOT_SUPPORTED |
HRESULT:0x8004085A | The draw phase is unknown or not defined. | DRAWPHASE_UNKNOWN |
HRESULT:0x80040901 | No support for this geometry type. | GEOMETRY_TYPE_NOT_SUPPORTED |
HRESULT:0x80040902 | Multipart edge feature geometries not supported. | MULTIPART_EDGE_FEATURE_NOT_SUPPORTED |
HRESULT:0x80040903 | Geometry has no M values. | GEOMETRY_HAS_NO_M_VALUES |
HRESULT:0x80040904 | Geometry has no Z values. | GEOMETRY_HAS_NO_Z_VALUES |
HRESULT:0x80040905 | Geometry has null Z values. | GEOMETRY_HAS_NULL_Z_VALUES |
HRESULT:0x80040906 | Geometry is not simple. | GEOMETRY_NOT_SIMPLE |
HRESULT:0x80040907 | Geometry cannot have Z values. | GEOMETRY_CANNOT_HAVE_Z_VALUES |
HRESULT:0x80040908 | Spatial reference (projection) related error. | GEOMETRY_SPATIAL_REFERENCE |
HRESULT:0x80040909 | Geometry is missing required spatial reference. | GEOMETRY_MISSING_SPATIAL_REFERENCE |
HRESULT:0x8004090A | Polylines with vertical segments cannot be stored in pre-10.0 geodatabase feature classes. | CANT_STORE_VERTICAL_SEGMENT |
HRESULT:0x80040951 | The row object does not support the IRowSetup interface. | ROW_NO_SETUPINTERFACE |
HRESULT:0x80040952 | A requested row object could not be located. | ROW_NOT_FOUND |
HRESULT:0x80040953 | The row does not have an OID. | ROW_NO_OID |
HRESULT:0x80040954 | Cannot determine the row’s ObjectClass. | ROW_NO_OBJCLASS |
HRESULT:0x80040955 | The row contains a bad value. | ROW_BAD_VALUE |
HRESULT:0x80040956 | A row with this OID already exists. | ROW_ALREADY_EXISTS |
HRESULT:0x80040957 | Cannot compare incompatible types. | COMPARE_TYPE_MISMATCH |
HRESULT:0x80040958 | Cannot call Store on a recycled row while editing. | CANNOT_STORE_RECYCLED_ROW_IN_EDIT_SESSION |
HRESULT:0x80041001 | The feature object does not have annotation. | FEATURE_NO_ANNO |
HRESULT:0x80041002 | The feature object does not have a valid shape. | FEATURE_BAD_SHAPE |
HRESULT:0x80041003 | The feature falls outside the defined spatial reference. | FEATURE_OUTSIDE_SPATIALREF |
HRESULT:0x80041004 | The feature is mutually exclusive. Cannot update shape. | FEATURE_SHAPE_UPDATE_BLOCKED |
HRESULT:0x80041005 | Failed to update feature’s area/length field in response to shape update. | FEATURE_AREA_LENGTH_UPDATE_FAILED |
HRESULT:0x80041006 | On Delete Message returned failure. | ON_DELETE_MESSAGE_FAILED |
HRESULT:0x80041007 | Failed to delete part objects for composite object. | DELETE_PART_OBJECTS_FAILED |
HRESULT:0x80041008 | Failed to delete relationships for object. | DELETE_RELATIONSHIPS_FAILED |
HRESULT:0x80041009 | On Changed message returned failure. | ON_CHANGED_MESSAGE_FAILED |
HRESULT:0x8004100A | Failed to move related features. | MOVE_RELATED_FEATURES_FAILED |
HRESULT:0x8004100B | Failed to rotate related features. | ROTATE_RELATED_FEATURES_FAILED |
HRESULT:0x8004100C | The feature has been deleted. | FEATURE_DELETED |
HRESULT:0x8004100D | The value type is incompatible. | FEATURE_VALUE_TYPE_MISMATCH |
HRESULT:0x8004100E | The required custom complex junction was not implemented. | CUSTOM_COMPLEX_JUNCTION_NOT_IMPLEMENTED |
HRESULT:0x8004100F | A requested feature object could not be located. | FEATURE_NOT_FOUND |
HRESULT:0x80041010 | The split operation is not supported on the selected feature’s geometry type. | SPLIT_NOT_SUPPORTED_ON_GEOMETRY_TYPE |
HRESULT:0x80041011 | Splitting a polygon requires a polyline splitter. | SPLITTING_POLYGONS_REQUIRES_POLYLINE |
HRESULT:0x80041012 | Splitting a polyline requires a point splitter. | SPLITTING_POLYLINES_REQUIRES_POINT |
HRESULT:0x80041013 | Split point results in a zero length polyline. | SPLIT_POINT_YIELDS_ZERO_LENGTH_POLYLINE |
HRESULT:0x80041014 | Cutting polyline results in zero area polygon. | CUTTER_YIELDS_ZERO_AREA_POLYGON |
HRESULT:0x80041015 | The feature does not have any associated geometry. | FEATURE_NO_GEOMETRY |
HRESULT:0x80041016 | A required interface on the feature was not found. | REQUIRED_INTERFACE_NOT_FOUND |
HRESULT:0x80041017 | A required connection point on a complex junction was not found. | REQUIRED_CONNECTION_POINT_NOT_FOUND |
HRESULT:0x80041018 | The geometry for a complex junction connection point is invalid. | INVALID_CONNECTION_POINT_GEOMETRY |
HRESULT:0x80041019 | The feature has empty geometry. | FEATURE_EMPTY_GEOMETRY |
HRESULT:0x80041051 | “This type of cursor does not support this operation. For example, calling UpdateRow on a read-only cursor.” | CURSOR_WRONG_TYPE |
HRESULT:0x80041052 | The cursor is in an invalid state. | CURSOR_INVALID |
HRESULT:0x80041053 | The cursor has completed and is at the end. | CURSOR_FINISHED |
HRESULT:0x80041054 | The cursor cannot aquire a lock against the data. | CURSOR_LOCKED |
HRESULT:0x80041055 | The cursor has been invalidated because the edit operation has stopped. | CURSOR_INVALIDATED |
HRESULT:0x80041101 | The ID of the version is bad. | VERSION_BAD_NAME |
HRESULT:0x80041102 | “The current version does not support editing (base, consistent, or closed).” | VERSION_UNEDITABLE |
HRESULT:0x80041103 | This operation is not allowed using conflicting versions. | VERSION_HAS_CONFLICTS |
HRESULT:0x80041104 | The version already exists. | VERSION_ALREADY_EXISTS |
HRESULT:0x80041105 | The version has been redefined to reference a new database state. | VERSION_REDEFINED |
HRESULT:0x80041106 | The version could not be located. | VERSION_NOT_FOUND |
HRESULT:0x80041107 | The version’s internal state ID is invalid. | VERSION_INVALID_STATE |
HRESULT:0x80041108 | Operation only allowed by the owner of the version. | VERSION_NOT_OWNER |
HRESULT:0x80041109 | Operation only allowed on versions without children. | VERSION_HAS_CHILDREN |
HRESULT:0x8004110A | The version has not been reconciled. | VERSION_NOT_RECONCILED |
HRESULT:0x8004110B | Operation not allowed because the version is protected. | VERSION_IS_PROTECTED |
HRESULT:0x8004110C | Operation not allowed because the version is in use. | VERSION_IN_USE |
HRESULT:0x8004110D | Operation not allowed while the version is being edited. | VERSION_BEING_EDITED |
HRESULT:0x8004110E | Operation not allowed while the version is being reconciled. | VERSION_BEING_RECONCILED |
HRESULT:0x8004110F | Unable to reconcile: the target version is currently being reconciled against. | RECONCILE_VERSION_NOT_AVAILABLE |
HRESULT:0x80041110 | Post not allowed after undoing a reconcile. | VERSION_RECONCILE_LOST |
HRESULT:0x80041111 | Unable to reconcile : Failed filtering conflicts. | FAILED_FILTERING_CONFLICTS |
HRESULT:0x80041112 | Unable to reconcile : Reconcile version is not an ancestor. | RECONCILE_VERSION_NOT_ANCESTOR |
HRESULT:0x80041113 | Version cannot be reconciled. | VERSION_CANNOT_BE_RECONCILED |
HRESULT:0x80041114 | Version cannot be reconciled. | VERSION_NOT_HISTORICAL |
HRESULT:0x80041115 | The version can only be reconciled with its parent. | VERSION_REQUIRES_PARENT_RECONCILE |
HRESULT:0x80041151 | DataSource could not be locked. | DATASOURCE_LOCK_FAILED |
HRESULT:0x80041152 | DataSource lock could not be released. | DATASOURCE_RELEASELOCK_FAILED |
HRESULT:0x80041153 | DataSource is being used in another application. | DATASOURCE_INUSE_ELSEWHERE |
HRESULT:0x80041201 | The xy units are invalid. | INVALID_UNITS |
HRESULT:0x80041202 | The spatial index grid size is invalid. | INVALID_GRID_SIZE |
HRESULT:0x80041203 | The spatial references do not match. | SPATIALREF_MISMATCH |
HRESULT:0x80041204 | Invalid spatial reference. | SPATIALREF_INVALID |
HRESULT:0x80041205 | The M domain is invalid. | INVALID_M_DOMAIN |
HRESULT:0x80041206 | The spatial reference cannot be altered. | CANNOT_ALTER_SPATIALREF |
HRESULT:0x80041207 | No spatial reference exists. | NO_SPATIALREF |
HRESULT:0x80041208 | High precision spatial reference not supported. | HIGH_PRECISION_SR_NOT_SUPPORTED |
HRESULT:0x80041209 | Low precision spatial reference not supported. | LOW_PRECISION_SR_NOT_SUPPORTED |
HRESULT:0x8004120A | The precision cannot be altered. | CANNOT_ALTER_PRECISION |
HRESULT:0x8004120B | The spatial reference precision models do not match. | SPATIALREF_PRECISION_MISMATCH |
HRESULT:0x8004120C | The resolution value must be larger than zero. | NEGATIVE_RESOLUTION |
HRESULT:0x8004120D | The resolution value does not match permissible values. | RESOLUTION_DOES_NOT_MATCH_PERMISSIBLE_VALUE |
HRESULT:0x8004120E | The XY domain is invalid. | INVALID_XY_DOMAIN |
HRESULT:0x8004120F | Every grid size must be at least three times larger than the preceding grid size. | GRID_SIZE_TOO_SMALL |
HRESULT:0x80041210 | The Z domain is invalid. | INVALID_Z_DOMAIN |
HRESULT:0x80041211 | The spatial reference z values do not match. | SPATIALREF_Z_MISMATCH |
HRESULT:0x80041251 | The spatial filter is invalid. | SPATIALFILTER_INVALID |
HRESULT:0x80041252 | The geometry property of the spatial filter is invalid. | SPATIALFILTER_INVALID_GEOMETRY |
HRESULT:0x80041253 | The spatial relation property of the spatial filter is invalid. | SPATIALFILTER_INVALID_SPATIAL_RELATION |
HRESULT:0x80041301 | Selection sets do not match. | SELECTION_MISMATCH |
HRESULT:0x80041302 | Selection type is invalid. | SELECTION_INVALID_TYPE |
HRESULT:0x80041303 | No selectable layers. | SELECTION_NO_SELECTABLE_LAYERS |
HRESULT:0x80041351 | Unable to instantiate object class instance COM component. | OBJECTCLASS_COULD_NOT_CREATE_CLASS_INSTANCE |
HRESULT:0x80041352 | Unable to instantiate object class extension COM component. | OBJECTCLASS_COULD_NOT_CREATE_CLASS_EXTENSION |
HRESULT:0x80041353 | Unable to initialize object class extension COM component. | OBJECTCLASS_COULD_NOT_INITIALIZE_CLASS_EXTENSION |
HRESULT:0x80041354 | Objects in this object class cannot be updated outside of an edit session. | OBJECTCLASS_REQUIRES_AN_EDIT_SESSION |
HRESULT:0x80041355 | An object class with this model name already exists. | OBJECTCLASS_MODEL_NAME_ALREADY_EXISTS |
HRESULT:0x80041356 | The feature dataset is not editable. | CLASS_FD_NOT_EDITABLE |
HRESULT:0x80041357 | The class extension property set could not be loaded. | COULD_NOT_LOAD_CLASS_EXTENSION_PROPERTIES |
HRESULT:0x80041358 | The object class is not registered in the Geodatabase. | OBJECTCLASS_NOT_REGISTERED |
HRESULT:0x80041359 | The class participates in a controller dataset. | OBJECTCLASS_IN_CONTROLLER_DATASET |
HRESULT:0x80041501 | SDE Error. | SE_FAILURE |
HRESULT:0x80041502 | SDE Error. | SE_INVALID_LAYERINFO_OBJECT |
HRESULT:0x80041503 | SDE Error. | SE_NO_ANNOTATION |
HRESULT:0x80041504 | SDE Error. | SE_FINISHED |
HRESULT:0x80041505 | SDE Error. | SE_SDE_NOT_STARTED |
HRESULT:0x80041506 | SDE Error. | SE_UNCHANGED |
HRESULT:0x80041508 | SDE Error. | SE_CONNECTIONS_EXCEEDED |
HRESULT:0x80041509 | SDE Error. | SE_LOGIN_NOT_ALLOWED |
HRESULT:0x8004150A | SDE Error. | SE_INVALID_USER |
HRESULT:0x8004150B | SDE Error. | SE_NET_FAILURE |
HRESULT:0x8004150C | SDE Error. | SE_NET_TIMEOUT |
HRESULT:0x8004150D | SDE Error. | SE_OUT_OF_SVMEM |
HRESULT:0x8004150E | SDE Error. | SE_OUT_OF_CLMEM |
HRESULT:0x8004150F | SDE Error. | SE_OUT_OF_CONTEXT |
HRESULT:0x80041510 | SDE Error. | SE_NO_ACCESS |
HRESULT:0x80041511 | SDE Error. | SE_TOO_MANY_LAYERS |
HRESULT:0x80041512 | SDE Error. | SE_NO_LAYER_SPECIFIED |
HRESULT:0x80041513 | SDE Error. | SE_LAYER_LOCKED |
HRESULT:0x80041514 | SDE Error. | SE_LAYER_EXISTS |
HRESULT:0x80041515 | SDE Error. | SE_LAYER_NOEXIST |
HRESULT:0x80041516 | SDE Error. | SE_LAYER_INUSE |
HRESULT:0x80041518 | SDE Error. | SE_ROW_NOEXIST |
HRESULT:0x8004151A | SDE Error. | SE_ROW_EXISTS |
HRESULT:0x8004151B | SDE Error. | SE_LAYER_MISMATCH |
HRESULT:0x8004151C | SDE Error. | SE_NO_PERMISSIONS |
HRESULT:0x8004151D | SDE Error. | SE_INVALID_NOT_NULL |
HRESULT:0x8004151E | SDE Error. | SE_INVALID_SHAPE |
HRESULT:0x8004151F | SDE Error. | SE_INVALID_LAYER_NUMBER |
HRESULT:0x80041520 | SDE Error. | SE_INVALID_ENTITY_TYPE |
HRESULT:0x80041521 | SDE Error. | SE_INVALID_SEARCH_METHOD |
HRESULT:0x80041522 | SDE Error. | SE_INVALID_ETYPE_MASK |
HRESULT:0x80041523 | SDE Error. | SE_BIND_CONFLICT |
HRESULT:0x80041524 | SDE Error. | SE_INVALID_GRIDSIZE |
HRESULT:0x80041525 | SDE Error. | SE_INVALID_LOCK_MODE |
HRESULT:0x80041526 | SDE Error. | SE_ETYPE_NOT_ALLOWED |
HRESULT:0x80041528 | SDE Error. | SE_INVALID_NUM_OF_PTS |
HRESULT:0x80041529 | SDE Error. | SE_TABLE_NOEXIST |
HRESULT:0x8004152A | SDE Error. | SE_ATTR_NOEXIST |
HRESULT:0x8004152B | SDE Error. | SE_LICENSE_FAILURE |
HRESULT:0x8004152C | SDE Error. | SE_OUT_OF_LICENSES |
HRESULT:0x8004152D | SDE Error. | SE_INVALID_COLUMN_VALUE |
HRESULT:0x8004152F | SDE Error. | SE_INVALID_SQL |
HRESULT:0x80041530 | SDE Error. | SE_LOG_NOEXIST |
HRESULT:0x80041531 | SDE Error. | SE_LOG_NOACCESS |
HRESULT:0x80041532 | SDE Error. | SE_LOG_NOTOPEN |
HRESULT:0x80041533 | SDE Error. | SE_LOG_IO_ERROR |
HRESULT:0x80041534 | SDE Error. | SE_NO_SHAPES |
HRESULT:0x80041535 | SDE Error. | SE_NO_LOCKS |
HRESULT:0x80041536 | SDE Error. | SE_LOCK_CONFLICT |
HRESULT:0x80041537 | SDE Error. | SE_OUT_OF_LOCKS |
HRESULT:0x80041538 | SDE Error. | SE_DB_IO_ERROR |
HRESULT:0x80041539 | SDE Error. | SE_STREAM_IN_PROGRESS |
HRESULT:0x8004153A | SDE Error. | SE_INVALID_COLUMN_TYPE |
HRESULT:0x8004153B | SDE Error. | SE_TOPO_ERROR |
HRESULT:0x8004153C | SDE Error. | SE_ATTR_CONV_ERROR |
HRESULT:0x8004153D | SDE Error. | SE_INVALID_COLUMN_DEF |
HRESULT:0x8004153E | SDE Error. | SE_INVALID_SHAPE_BUF_SIZE |
HRESULT:0x8004153F | SDE Error. | SE_INVALID_ENVELOPE |
HRESULT:0x80041540 | SDE Error. | SE_TEMP_IO_ERROR |
HRESULT:0x80041541 | SDE Error. | SE_GSIZE_TOO_SMALL |
HRESULT:0x80041542 | SDE Error. | SE_LICENSE_EXPIRED |
HRESULT:0x80041543 | SDE Error. | SE_TABLE_EXISTS |
HRESULT:0x80041544 | SDE Error. | SE_INDEX_EXISTS |
HRESULT:0x80041545 | SDE Error. | SE_INDEX_NOEXIST |
HRESULT:0x80041546 | SDE Error. | SE_INVALID_POINTER |
HRESULT:0x80041547 | SDE Error. | SE_INVALID_PARAM_VALUE |
HRESULT:0x80041548 | SDE Error. | SE_ALL_SLIVERS |
HRESULT:0x80041549 | SDE Error. | SE_TRANS_IN_PROGRESS |
HRESULT:0x8004154A | SDE Error. | SE_IOMGR_NO_DBMS_CONNECT |
HRESULT:0x8004154B | SDE Error. | SE_DUPLICATE_ARC |
HRESULT:0x8004154C | SDE Error. | SE_INVALID_ANNO_OBJECT |
HRESULT:0x8004154D | SDE Error. | SE_PT_NO_EXIST |
HRESULT:0x8004154E | SDE Error. | SE_PTS_NOT_ADJACENT |
HRESULT:0x8004154F | SDE Error. | SE_INVALID_MID_PT |
HRESULT:0x80041550 | SDE Error. | SE_INVALID_END_PT |
HRESULT:0x80041551 | SDE Error. | SE_INVALID_RADIUS |
HRESULT:0x80041552 | SDE Error. | SE_LOAD_ONLY_LAYER |
HRESULT:0x80041553 | SDE Error. | SE_LAYERS_NOT_FOUND |
HRESULT:0x80041554 | SDE Error. | SE_FILE_IO_ERROR |
HRESULT:0x80041555 | SDE Error. | SE_BLOB_SIZE_TOO_LARGE |
HRESULT:0x80041556 | SDE Error. | SE_CORRIDOR_OUT_OF_BOUNDS |
HRESULT:0x80041557 | SDE Error. | SE_SHAPE_INTEGRITY_ERROR |
HRESULT:0x80041558 | SDE Error. | SE_NOT_IMPLEMENTED_YET |
HRESULT:0x80041559 | SDE Error. | SE_CAD_EXISTS |
HRESULT:0x8004155A | SDE Error. | SE_INVALID_TRANSID |
HRESULT:0x8004155B | SDE Error. | SE_INVALID_LAYER_NAME |
HRESULT:0x8004155C | SDE Error. | SE_INVALID_LAYER_KEYWORD |
HRESULT:0x8004155D | SDE Error. | SE_INVALID_RELEASE |
HRESULT:0x8004155E | SDE Error. | SE_VERSION_TBL_EXISTS |
HRESULT:0x8004155F | SDE Error. | SE_COLUMN_NOT_BOUND |
HRESULT:0x80041560 | SDE Error. | SE_INVALID_INDICATOR_VALUE |
HRESULT:0x80041561 | SDE Error. | SE_INVALID_CONNECTION |
HRESULT:0x80041562 | SDE Error. | SE_INVALID_DBA_PASSWORD |
HRESULT:0x80041563 | SDE Error. | SE_PATH_NOT_FOUND |
HRESULT:0x80041564 | SDE Error. | SE_SDEHOME_NOT_SET |
HRESULT:0x80041565 | SDE Error. | SE_NOT_TABLE_OWNER |
HRESULT:0x80041566 | SDE Error. | SE_PROCESS_NOT_FOUND |
HRESULT:0x80041567 | SDE Error. | SE_INVALID_DBMS_LOGIN |
HRESULT:0x80041568 | SDE Error. | SE_PASSWORD_TIMEOUT |
HRESULT:0x80041569 | SDE Error. | SE_INVALID_SERVER |
HRESULT:0x8004156A | SDE Error. | SE_IOMGR_NOT_AVAILABLE |
HRESULT:0x8004156B | SDE Error. | SE_SERVICE_NOT_FOUND |
HRESULT:0x8004156C | SDE Error. | SE_INVALID_STATS_TYPE |
HRESULT:0x8004156D | SDE Error. | SE_INVALID_DISTINCT_TYPE |
HRESULT:0x8004156E | SDE Error. | SE_INVALID_GRANT_REVOKE |
HRESULT:0x8004156F | SDE Error. | SE_INVALID_SDEHOME |
HRESULT:0x80041570 | SDE Error. | SE_INVALID_STREAM |
HRESULT:0x80041571 | SDE Error. | SE_TOO_MANY_STREAMS |
HRESULT:0x80041572 | SDE Error. | SE_OUT_OF_MUTEXES |
HRESULT:0x80041573 | SDE Error. | SE_CONNECTION_LOCKED |
HRESULT:0x80041574 | SDE Error. | SE_CONNECTION_IN_USE |
HRESULT:0x80041575 | SDE Error. | SE_NOT_A_SELECT_STATEMENT |
HRESULT:0x80041576 | SDE Error. | SE_FUNCTION_SEQUENCE_ERROR |
HRESULT:0x80041577 | SDE Error. | SE_WRONG_COLUMN_TYPE |
HRESULT:0x80041578 | SDE Error. | SE_PTABLE_LOCKED |
HRESULT:0x80041579 | SDE Error. | SE_PTABLE_IN_USE |
HRESULT:0x8004157A | SDE Error. | SE_STABLE_LOCKED |
HRESULT:0x8004157B | SDE Error. | SE_STABLE_IN_USE |
HRESULT:0x8004157C | SDE Error. | SE_INVALID_FILTER_TYPE |
HRESULT:0x8004157D | SDE Error. | SE_NO_CAD |
HRESULT:0x8004157E | SDE Error. | SE_INSTANCE_NOT_AVAILABLE |
HRESULT:0x8004157F | SDE Error. | SE_INSTANCE_TOO_EARLY |
HRESULT:0x80041580 | SDE Error. | SE_INVALID_SYSTEM_UNITS |
HRESULT:0x80041581 | SDE Error. | SE_INVALID_UNITS |
HRESULT:0x80041582 | SDE Error. | SE_INVALID_CAD_OBJECT |
HRESULT:0x80041583 | SDE Error. | SE_VERSION_NOEXIST |
HRESULT:0x80041584 | SDE Error. | SE_INVALID_SPATIAL_CONSTRAINT |
HRESULT:0x80041585 | SDE Error. | SE_INVALID_STREAM_TYPE |
HRESULT:0x80041586 | SDE Error. | SE_INVALID_SPATIAL_COLUMN |
HRESULT:0x80041587 | SDE Error. | SE_NO_SPATIAL_MASKS |
HRESULT:0x80041588 | SDE Error. | SE_IOMGR_NOT_FOUND |
HRESULT:0x80041589 | SDE Error. | SE_SYSTEM_IS_CLIENT_ONLY |
HRESULT:0x8004158A | SDE Error. | SE_MULTIPLE_SPATIAL_COLS |
HRESULT:0x8004158B | SDE Error. | SE_INVALID_SHAPE_OBJECT |
HRESULT:0x8004158C | SDE Error. | SE_INVALID_PARTNUM |
HRESULT:0x8004158D | SDE Error. | SE_INCOMPATIBLE_SHAPES |
HRESULT:0x8004158E | SDE Error. | SE_INVALID_PART_OFFSET |
HRESULT:0x8004158F | SDE Error. | SE_INCOMPATIBLE_COORDREFS |
HRESULT:0x80041590 | SDE Error. | SE_COORD_OUT_OF_BOUNDS |
HRESULT:0x80041591 | SDE Error. | SE_LAYER_CACHE_FULL |
HRESULT:0x80041592 | SDE Error. | SE_INVALID_COORDREF_OBJECT |
HRESULT:0x80041593 | SDE Error. | SE_INVALID_COORDSYS_ID |
HRESULT:0x80041594 | SDE Error. | SE_INVALID_COORDSYS_DESC |
HRESULT:0x80041595 | SDE Error. | SE_INVALID_ROW_ID_LAYER |
HRESULT:0x80041596 | SDE Error. | SE_PROJECTION_ERROR |
HRESULT:0x80041597 | SDE Error. | SE_ARRAY_BYTES_EXCEEDED |
HRESULT:0x80041598 | SDE Error. | SE_POLY_SHELLS_OVERLAP |
HRESULT:0x80041599 | SDE Error. | SE_TOO_FEW_POINTS |
HRESULT:0x8004159A | SDE Error. | SE_INVALID_PART_SEPARATOR |
HRESULT:0x8004159B | SDE Error. | SE_INVALID_POLYGON_CLOSURE |
HRESULT:0x8004159C | SDE Error. | SE_INVALID_OUTER_SHELL |
HRESULT:0x8004159D | SDE Error. | SE_ZERO_AREA_POLYGON |
HRESULT:0x8004159E | SDE Error. | SE_POLYGON_HAS_VERTICAL_LINE |
HRESULT:0x8004159F | SDE Error. | SE_OUTER_SHELLS_OVERLAP |
HRESULT:0x800415A0 | SDE Error. | SE_SELF_INTERSECTING |
HRESULT:0x800415A1 | SDE Error. | SE_INVALID_EXPORT_FILE |
HRESULT:0x800415A2 | SDE Error. | SE_READ_ONLY_SHAPE |
HRESULT:0x800415A3 | SDE Error. | SE_INVALID_DATA_SOURCE |
HRESULT:0x800415A4 | SDE Error. | SE_INVALID_STREAM_SPEC |
HRESULT:0x800415A5 | SDE Error. | SE_INVALID_ALTER_OPERATION |
HRESULT:0x800415A6 | SDE Error. | SE_INVALID_SPATIAL_COL_NAME |
HRESULT:0x800415A7 | SDE Error. | SE_INVALID_DATABASE |
HRESULT:0x800415A8 | SDE Error. | SE_SPATIAL_SQL_NOT_INSTALLED |
HRESULT:0x800415A9 | SDE Error. | SE_NORM_DIM_INFO_NOT_FOUND |
HRESULT:0x800415AA | SDE Error. | SE_NORM_DIM_TAB_VALUE_NOT_FOUND |
HRESULT:0x800415AB | SDE Error. | SE_UNSUPPORTED_NORMALIZED_OPERATION |
HRESULT:0x800415AC | SDE Error. | SE_INVALID_REGISTERED_LAYER_OPTION |
HRESULT:0x800415AD | SDE Error. | SE_READ_ONLY |
HRESULT:0x800415AE | SDE Error. | SE_NO_SDE_ROWID_COLUMN |
HRESULT:0x800415AF | SDE Error. | SE_READ_ONLY_COLUMN |
HRESULT:0x800415B0 | SDE Error. | SE_INVALID_VERSION_NAME |
HRESULT:0x800415B1 | SDE Error. | SE_STATE_NOEXIST |
HRESULT:0x800415B2 | SDE Error. | SE_INVALID_STATEINFO_OBJECT |
HRESULT:0x800415B3 | SDE Error. | SE_VERSION_HAS_MOVED |
HRESULT:0x800415B4 | SDE Error. | SE_STATE_HAS_CHILDREN |
HRESULT:0x800415B5 | SDE Error. | SE_PARENT_NOT_CLOSED |
HRESULT:0x800415B6 | SDE Error. | SE_VERSION_EXISTS |
HRESULT:0x800415B7 | SDE Error. | SE_TABLE_NOT_MULTIVERSION |
HRESULT:0x800415B8 | SDE Error. | SE_STATE_USED_BY_VERSION |
HRESULT:0x800415B9 | SDE Error. | SE_INVALID_VERSIONINFO_OBJECT |
HRESULT:0x800415BA | SDE Error. | SE_INVALID_STATE_ID |
HRESULT:0x800415BB | SDE Error. | SE_SDETRACELOC_NOT_SET |
HRESULT:0x800415BC | SDE Error. | SE_ERROR_LOADING_SSA |
HRESULT:0x800415BD | SDE Error. | SE_TOO_MANY_STATES |
HRESULT:0x800415BE | SDE Error. | SE_STATES_ARE_SAME |
HRESULT:0x800415BF | SDE Error. | SE_NO_ROWID_COLUMN |
HRESULT:0x800415C0 | SDE Error. | SE_NO_STATE_SET |
HRESULT:0x800415C1 | SDE Error. | SE_SSA_FUNCTION_ERROR |
HRESULT:0x800415C2 | SDE Error. | SE_INVALID_REGINFO_OBJECT |
HRESULT:0x800415C3 | SDE Error. | SE_NO_COMMON_LINEAGE |
HRESULT:0x800415C4 | SDE Error. | SE_STATE_INUSE |
HRESULT:0x800415C5 | SDE Error. | SE_STATE_TREE_INUSE |
HRESULT:0x800415C6 | SDE Error. | SE_INVALID_RASTER_COLUMN |
HRESULT:0x800415C7 | SDE Error. | SE_RASTERCOLUMN_EXISTS |
HRESULT:0x800415C8 | SDE Error. | SE_INVALID_MVTABLE_INDEX |
HRESULT:0x800415C9 | SDE Error. | SE_INVALID_STORAGE_TYPE |
HRESULT:0x800415CA | SDE Error. | SE_AMBIGUOUS_NIL_SHAPE |
HRESULT:0x800415CB | SDE Error. | SE_INVALID_BYTE_ORDER |
HRESULT:0x800415CC | SDE Error. | SE_INVALID_GEOMETRY_TYPE |
HRESULT:0x800415CD | SDE Error. | SE_INVALID_NUM_MEASURES |
HRESULT:0x800415CE | SDE Error. | SE_INVALID_NUM_PARTS |
HRESULT:0x800415CF | SDE Error. | SE_BINARY_TOO_SMALL |
HRESULT:0x800415D0 | SDE Error. | SE_SHAPE_TEXT_TOO_LONG |
HRESULT:0x800415D1 | SDE Error. | SE_SHAPE_TEXT_ERROR |
HRESULT:0x800415D2 | SDE Error. | SE_TOO_MANY_PARTS |
HRESULT:0x800415D3 | SDE Error. | SE_TYPE_MISMATCH |
HRESULT:0x800415D4 | SDE Error. | SE_SQL_PARENTHESIS_MISMATCH |
HRESULT:0x800415D5 | SDE Error. | SE_NIL_SHAPE_NOT_ALLOWED |
HRESULT:0x800415D6 | SDE Error. | SE_INSTANCE_ALREADY_RUNNING |
HRESULT:0x800415D7 | SDE Error. | SE_UNSUPPORTED_OPERATION |
HRESULT:0x800415D8 | SDE Error. | SE_INVALID_EXTERNAL_LAYER_OPTION |
HRESULT:0x800415D9 | SDE Error. | SE_NORMALIZE_VALUE_NOT_FOUND |
HRESULT:0x800415DA | SDE Error. | SE_INVALID_QUERY_TYPE |
HRESULT:0x800415DB | SDE Error. | SE_NO_TRACE_LIBRARY |
HRESULT:0x800415DC | SDE Error. | SE_TRACE_ON |
HRESULT:0x800415DD | SDE Error. | SE_TRACE_OFF |
HRESULT:0x800415DE | SDE Error. | SE_SCL_SYNTAX_ERROR |
HRESULT:0x800415DF | SDE Error. | SE_TABLE_REGISTERED |
HRESULT:0x800415E0 | SDE Error. | SE_INVALID_REGISTRATION_ID |
HRESULT:0x800415E1 | SDE Error. | SE_TABLE_NOREGISTERED |
HRESULT:0x800415E2 | SDE Error. | SE_TOO_MANY_REGISTRATIONS |
HRESULT:0x800415E3 | SDE Error. | SE_DELETE_NOT_ALLOWED |
HRESULT:0x800415E6 | SDE Error. | SE_RASTERCOLUMN_INUSE |
HRESULT:0x800415E7 | SDE Error. | SE_RASTERCOLUMN_NOEXIST |
HRESULT:0x800415E8 | SDE Error. | SE_INVALID_RASTERCOLUMN_NUMBER |
HRESULT:0x800415E9 | SDE Error. | SE_TOO_MANY_RASTERCOLUMNS |
HRESULT:0x800415EA | SDE Error. | SE_INVALID_RASTER_NUMBER |
HRESULT:0x800415EB | SDE Error. | SE_NO_REQUEST_STATUS |
HRESULT:0x800415EC | SDE Error. | SE_NO_REQUEST_RESULTS |
HRESULT:0x800415ED | SDE Error. | SE_RASTERBAND_EXISTS |
HRESULT:0x800415EE | SDE Error. | SE_RASTERBAND_NOEXIST |
HRESULT:0x800415EF | SDE Error. | SE_RASTER_EXISTS |
HRESULT:0x800415F0 | SDE Error. | SE_RASTER_NOEXIST |
HRESULT:0x800415F1 | SDE Error. | SE_TOO_MANY_RASTERBANDS |
HRESULT:0x800415F2 | SDE Error. | SE_TOO_MANY_RASTERS |
HRESULT:0x800415F3 | SDE Error. | SE_VIEW_EXISTS |
HRESULT:0x800415F4 | SDE Error. | SE_VIEW_NOEXIST |
HRESULT:0x800415F5 | SDE Error. | SE_LOCK_EXISTS |
HRESULT:0x800415F6 | SDE Error. | SE_ROWLOCK_MASK_CONFLICT |
HRESULT:0x800415F7 | SDE Error. | SE_NOT_IN_RASTER |
HRESULT:0x800415F8 | SDE Error. | SE_INVALID_RASBANDINFO_OBJECT |
HRESULT:0x800415F9 | SDE Error. | SE_INVALID_RASCOLINFO_OBJECT |
HRESULT:0x800415FA | SDE Error. | SE_INVALID_RASTERINFO_OBJECT |
HRESULT:0x800415FB | SDE Error. | SE_INVALID_RASTERBAND_NUMBER |
HRESULT:0x800415FC | SDE Error. | SE_MULTIPLE_RASTER_COLS |
HRESULT:0x800415FD | SDE Error. | SE_TABLE_SCHEMA_IS_LOCKED |
HRESULT:0x800415FE | SDE Error. | SE_INVALID_LOGINFO_OBJECT |
HRESULT:0x800415FF | SDE Error. | SE_SQL_TOO_LONG |
HRESULT:0x80041600 | SDE Error. | SE_UNSUPPORTED_ON_VIEW |
HRESULT:0x80041601 | SDE Error. | SE_LOG_EXISTS |
HRESULT:0x80041602 | SDE Error. | SE_SDE_WARNING |
HRESULT:0x80041603 | SDE Error. | SE_ETYPE_CHANGED |
HRESULT:0x80041604 | SDE Error. | SE_NO_ROWS_DELETED |
HRESULT:0x80041605 | SDE Error. | SE_TOO_MANY_DISTINCTS |
HRESULT:0x80041606 | SDE Error. | SE_NULL_VALUE |
HRESULT:0x80041607 | SDE Error. | SE_NO_ROWS_UPDATED |
HRESULT:0x80041608 | SDE Error. | SE_NO_CPGCVT |
HRESULT:0x80041609 | SDE Error. | SE_NO_CPGHOME |
HRESULT:0x8004160A | SDE Error. | SE_DBMS_DOES_NOT_SUPPORT |
HRESULT:0x8004160B | SDE Error. | SE_ROWLOCKING_ENABLED |
HRESULT:0x8004160C | SDE Error. | SE_ROWLOCKING_NOT_ENABLED |
HRESULT:0x8004160D | SDE Error. | SE_LOG_IS_OPEN |
HRESULT:0x8004160E | SDE Error. | SE_SPATIALREF_EXISTS |
HRESULT:0x8004160F | SDE Error. | SE_SPATIALREF_NOEXIST |
HRESULT:0x80041610 | SDE Error. | SE_SPATIALREF_IN_USE |
HRESULT:0x80041611 | SDE Error. | SE_INVALID_SPATIALREFINFO_OBJECT |
HRESULT:0x80041612 | SDE Error. | SE_INVALID_FUNCTION_ID |
HRESULT:0x80041613 | SDE Error. | SE_MOSAIC_NOT_ALLOWED |
HRESULT:0x80041614 | SDE Error. | SE_PASSWORD_EXPIRED |
HRESULT:0x80041615 | SDE Error. | SE_NO_ARCSDE_LICENSE |
HRESULT:0x80041616 | SDE Error. | SE_NO_ARCSDE_LICENSE_NO_PERMISSION |
HRESULT:0x80041617 | SDE Error. | SE_NO_ARCSDE_LICENSE_SQLEXPRESS |
HRESULT:0x80041801 | The default value is not nullable. | DEFAULT_VALUE_NOT_NULLABLE |
HRESULT:0x80041802 | The default value is not valid in the domain. | DEFAULT_VALUE_INVALID |
HRESULT:0x80041851 | An object being transfered is in another Feature Dataset. | OBJECT_IN_ANOTHER_FEATUREDATASET |
HRESULT:0x80041852 | Only simple features are supported in the simple data converter. | ONLY_SIMPLE_FEATURES_SUPPORTED |
HRESULT:0x80041901 | The XML being loaded could not be parsed. | XML_PARSE_ERROR |
HRESULT:0x80041951 | Can only reshape one edge at a time. | TOPOLOGY_ILLEGAL_RESHAPE |
HRESULT:0x80041952 | The topology with the specified name already exists. | TOPOLOGY_ALREADY_EXISTS |
HRESULT:0x80041953 | The topology was not found. | TOPOLOGY_NOT_FOUND |
HRESULT:0x80041954 | The topology cannot be renamed. | TOPOLOGY_CANNOT_RENAME |
HRESULT:0x80041955 | The feature class in not simple. | INVALID_FEATURE_TYPE_FOR_TOPOLOGY |
HRESULT:0x80041956 | The feature class has an invalid geometry type. | INVALID_GEOMETRY_TYPE_FOR_TOPOLOGY |
HRESULT:0x80041957 | The topology rule in invalid or malformed. | INVALID_TOPOLOGY_RULE |
HRESULT:0x80041958 | The topology workspace extension was not found. | TOPOLOGY_WORKSPACE_EXTENSION_NOT_FOUND |
HRESULT:0x80041959 | The topology cluster tolerance cannot be reset. | CANNOT_RESET_CLUSTER_TOLERANCE |
HRESULT:0x8004195A | Topologies not supported in this release of the Geodatabase. | TOPOLOGIES_NOT_SUPPORTED_IN_RELEASE |
HRESULT:0x8004195B | Feature class weight is invalid. | TOPOLOGY_INVALID_WEIGHT |
HRESULT:0x8004195C | Topology errors cannot be directly modified. | CANNOT_MODIFY_TOPOLOGY_ERROR_FEATURE |
HRESULT:0x8004195D | Geodatabase TopoClasses system table inconsistent. | TOPOCLASSES_SYSTEM_TABLE_INCONSISTENCY |
HRESULT:0x8004195E | The specified cluster tolerance is invalid. | INVALID_CLUSTER_TOLERANCE |
HRESULT:0x8004195F | The feature class has an invalid geometry type for the topology rule. | INVALID_GEOMETRY_TYPE_FOR_TOPOLOGY_RULE |
HRESULT:0x80041960 | This operation is not supported on topology errors. | NOT_SUPPORTED_ON_TOPOLOGY_ERROR_FEATURE |
HRESULT:0x80041961 | System tables cannot be modified. | CANNOT_MODIFY_SYSTEM_MANAGED_TABLES |
HRESULT:0x80041962 | Topology edge is not selectable. | TOPOLOGY_EDGE_NOT_SELECTABLE |
HRESULT:0x80041963 | The class is already a member of the topology. | CLASS_ALREADY_MEMBER_OF_TOPOLOGY |
HRESULT:0x80041964 | An empty envelope was specified for the clean. | EMPTY_ENVELOPE_FOR_CLEAN |
HRESULT:0x80041965 | Invalid Topology ID. | INVALID_TOPOLOGY_ID |
HRESULT:0x80041966 | A failure was detected in the topology engine. | TOPOLOGY_ENGINE_FAILURE |
HRESULT:0x80041967 | A failure was detected in the topology engine overlay processor. | TOPOLOGY_ENGINE_OVERPROC_FAILURE |
HRESULT:0x80041968 | Invalid topology rule type. | INVALID_TOPOLOGY_RULE_TYPE |
HRESULT:0x80041969 | Cannot currently partially rebuild the topology graph. | NO_PARTIAL_REBUILD |
HRESULT:0x8004196A | Cannot add a registered as versioned class to the topology. | CANNOT_ADD_REGISTERED_CLASS_TO_TOPOLOGY |
HRESULT:0x8004196B | The number of errors generated during the topology analysis exceeds the specified threshold. | TOPOLOGY_ERROR_OVERFLOW |
HRESULT:0x8004196C | Cannot rename a network. | NETWORK_CANNOT_RENAME |
HRESULT:0x8004196D | Invalid network type. | NETWORK_INVALID_TYPE |
HRESULT:0x8004196E | Network already exists. | NETWORK_ALREADY_EXISTS |
HRESULT:0x8004196F | Network geometry invalid. | NETWORK_INVALID_GEOMETRY_TYPE |
HRESULT:0x80041970 | Network not found. | NETWORK_NOT_FOUND |
HRESULT:0x80041971 | Versioning not supported. | VERSIONING_NOT_SUPPORTED |
HRESULT:0x80041972 | The class must be in the same feature dataset as the topology. | CLASS_NOT_IN_TOPOLOGIES_FEATURE_DATASET |
HRESULT:0x80041973 | The topology does not contain any associated classes. | TOPOLOGY_HAS_NO_CLASSES |
HRESULT:0x80041974 | Feature class rank is invalid. | TOPOLOGY_INVALID_RANK |
HRESULT:0x80041975 | All available physical memory has been consumed. | OUT_OF_PHYSICAL_MEMORY |
HRESULT:0x80041976 | The topology operation was cancelled by the user. | TOPOLOGY_OPERATION_CANCELLED |
HRESULT:0x80041977 | The method is only supported on classes participating in a topology. | CLASS_NOT_IN_TOPOLOGY |
HRESULT:0x80041978 | The endpoint of an edge cannot be modified if it is shared by other topology elements. | MODIFY_EDGE_ENDPOINT |
HRESULT:0x80041979 | Cannot add a class that is not contained in a feature dataset to a topology. | CANNOT_ADD_STANDALONE_CLASS_TO_TOPOLOGY |
HRESULT:0x8004197A | Updates to feature classes in a topology require an edit session. | CLASS_IN_TOPOLOGY_REQUIRES_EDIT_SESSION |
HRESULT:0x8004197B | A topology rule cannot be added to a versioned topology. | CANNOT_ADD_RULE_TO_VERSIONED_TOPOLOGY |
HRESULT:0x8004197C | Cannot acquire a schema lock because of an existing lock; needed when validating outside edit session. | TOPOLOGY_SCHEMA_LOCK_CONFLICT |
HRESULT:0x8004197D | Cannot create a dirty area outside the topology’s spatial domain. | DIRTY_AREA_OUTSIDE_SPATIAL_DOMAIN |
HRESULT:0x8004197E | The topology name is invalid. | TOPOLOGY_INVALID_NAME |
HRESULT:0x8004197F | The temporary file system space employed by the topology engine is full. | TOPOLOGY_ENGINE_TEMP_SPACE_EXHAUSTED |
HRESULT:0x80041980 | The topology rule is inconsistent with other topology rules. | INCONSISTENT_TOPOLOGY_RULE |
HRESULT:0x80041981 | Unsupported topology rule type. | UNSUPPORTED_TOPOLOGY_RULE |
HRESULT:0x80041982 | Invalid topology rule type. | INVALID_TOPOLOGY_RULE_CLASS_ASSIGNMENT |
HRESULT:0x80041983 | The operation is not supported inside an edit session. | OPERATION_NOT_SUPPORTED_IN_EDIT_SESSION |
HRESULT:0x80041984 | A topology graph edit operation caused a feature geometry to become empty. | TOPOLOGY_EMPTY_GEOMETRY |
HRESULT:0x80041985 | The topology graph cannot be constructed on the specified extent because the requested precision is too high. | TOPOLOGY_EXTENT_TOO_LARGE |
HRESULT:0x80041986 | Z cluster tolerances are not supported in this release of the Geodatabase. | Z_CLUSTER_TOLERANCE_NOT_SUPPORTED_IN_RELEASE |
HRESULT:0x80041987 | The operation requires an edit session. | OPERATION_REQUIRES_EDIT_SESSION |
HRESULT:0x80041988 | The operation is not supported inside an edit session. | OPERATION_NOT_SUPPORTED_IN_EDIT_OPERATION |
HRESULT:0x80041989 | The operation cannot be applied because the topology graph has not been defined. | TOPOGRAPH_NOT_BUILT |
HRESULT:0x8004198A | The topo graph may be corrupt. Please rebuild it. | TOPOGRAPH_CORRUPT |
HRESULT:0x8004198B | Nodes representing vertical edges cannot be removed during a merge operation. | CANT_MERGE_VERTICALEDGES |
HRESULT:0x8004198C | The selected edges do not all belong to the same set of features. | INCONSISTANT_MERGE_PARENTS |
HRESULT:0x8004198D | The selected set of edges does not form a connected path. | EDGE_SET_NOT_CONNECTED |
HRESULT:0x8004198E | The topology rule is not supported in this release of the Geodatabase. | TOPOLOGY_RULE_NOT_SUPPORTED_IN_RELEASE |
HRESULT:0x8004198F | Can’t merge branching selected edges. | CANT_MERGE_BRANCHINGEDGES |
HRESULT:0x80041990 | Can’t merge edge for self-overlapping polyline feature. | NOT_PSEUDONODE |
HRESULT:0x80041991 | A class in the network dataset necessitates edits being run within an edit session. | CLASS_IN_NETWORK_REQUIRES_EDIT_SESSION |
HRESULT:0x80041992 | Cannot add a class that is registered as versioned to a topology that is not registered as versioned. | CANNOT_ADD_VERSIONED_CLASS_TO_NON_VERSIONED_TOPOLOGY |
HRESULT:0x80041993 | Cannot add a class that is not registered as versioned to a topology that is registered as versioned. | CANNOT_ADD_NON_VERSIONED_CLASS_TO_VERSIONED_TOPOLOGY |
HRESULT:0x80041994 | Schema edits to a versioned topology are not supported in this release of the geodatabase. | TOPOLOGIES_SCHEMA_CHANGES_NOT_SUPPORTED_IN_RELEASE |
HRESULT:0x80041995 | The terrain was not found. | TERRAIN_NOT_FOUND |
HRESULT:0x80042051 | The Name String syntax of is incorrect. | NAME_STRING_SYNTAX |
HRESULT:0x80042101 | The input XML is invalid for import into the specified object. | INVALID_IMPORT_XML |
HRESULT:0x80042102 | The required XML element was not found. | REQUIRED_XML_ELEMENT_NOT_FOUND |
HRESULT:0x80042103 | No dataset found to export. | XML_EXPORT_DATASET_NOT_FOUND |
HRESULT:0x80042151 | The object is not in Replicable format (please configure). | CLASS_NOT_REPLICABLE |
HRESULT:0x80042152 | Conflicts were detected during synchronization between replica pairs. | SYNCHRONIZATION_CONFLICTS |
HRESULT:0x80042153 | Cannot synchronize because the replica version has not be reconciled against the sync version. | CANNOT_SYNCHRONIZE |
HRESULT:0x80042154 | Replica data was not found. | REPLICA_NOT_FOUND |
HRESULT:0x80042155 | Error during reconcile. | RECONCILE_FAILED |
HRESULT:0x80042156 | Invalid Replica. | INVALID_REPLICA |
HRESULT:0x80042157 | Generation numbers out of order | GENERATION_OUT_OF_ORDER |
HRESULT:0x80042158 | Previous synchronization had conflicts | SYNCHRONIZATION_HAS_CONFLICTS |
HRESULT:0x80042159 | Replication not supported in this release | REPLICATION_NOT_SUPPORTED_IN_RELEASE |
HRESULT:0x8004215A | Replication not supported in this release | REPLICATION_NOT_SUPPORTED |
HRESULT:0x8004215B | Transmission does not contains changes previously sent | MISSING_ACKNOWLEDGEMENT |
HRESULT:0x8004215C | Transmission cannot be sent until acknowledgement of previously sent changes | CANNOT_SEND_TRANSMISSION |
HRESULT:0x8004215D | Another synchronization in progess has locked the replica | REPLICA_LOCKED |
HRESULT:0x8004215E | An operation in a replica dataset is invalid since a related replica dataset is referenced by the replica. | RELATED_DATASET_IS_REFERENCED_BY_REPLICA |
HRESULT:0x8004215F | Operation not supported on a read-only replica | READONLY_REPLICA |
HRESULT:0x80042160 | Old messages | OLD_MESSAGE |
HRESULT:0x80042161 | Replica in a SendingData state | REPLICA_IN_SENDING_DATA_STATE |
HRESULT:0x80042162 | Can only import acknowledgment messages | REPLICA_CAN_ONLY_IMPORT_ACKNOWLEDGMENT |
HRESULT:0x80042163 | Replica does not have any unacknowledged generations | REPLICA_NO_UNACKNOWLEDGED_GENERATIONS |
HRESULT:0x80042164 | Multi generations replicas are not supported in workspace | MULTIGEN_REPLICAS_NOT_SUPPORTED_IN_WORKSPACE |
HRESULT:0x80042165 | Cannot reexport changes from checkouts | CHECKOUTS_CANNOT_REEXPORT_CHANGES |
HRESULT:0x80042166 | Cannot reexport changes from data receiver replica | REPLICA_RECEIVER_CANNOT_REEXPORT_CHANGES |
HRESULT:0x80042167 | Cannot export changes from data receiver replica | REPLICA_RECEIVER_CANNOT_EXPORT_CHANGES |
HRESULT:0x80042168 | Cannot checkout a high precision data to a low precision dataset | CANNOT_CHECKOUT_HIGH_PREC_DATA_IN_LOW_PREC_DATASET |
HRESULT:0x80042169 | Cannot checkout a high precision data to a low precision dataset | CANNOT_REPLICATE_LOW_PRECISION_DATA |
HRESULT:0x8004216A | Invalid output xml file | REPLICA_INVALID_OUTPUT_XML_FILE |
HRESULT:0x8004216B | Cannot register replicas for existing datasets. | FDO_NO_MATCH_DATASETS_FOUND_FOR_REGISTER_REPLICAS |
HRESULT:0x8004216C | Cannot register non simple dataset in a replica. | NON_SIMPLE_DATASET_CANNOT_BE_REGISTERED_BY_REPLICA |
HRESULT:0x8004216D | Replica name contains invalid chars. | INVALID_REPLICA_NAME |
HRESULT:0x8004216E | Messages have already been acknowledged. | REPLICA_OLD_ACK |
HRESULT:0x8004216F | Messages have already been acknowledged. | REPLICA_SCHEMA_CHANGES_WRONG_DIRECTION |
HRESULT:0x80042170 | Cannot create empty replica. | CANNOT_CREATE_EMPTY_REPLICA |
HRESULT:0x80042171 | Cannot create empty replica. | INVALID_DATA_FOR_THIS_OPERATION |
HRESULT:0x80042172 | Sync version of a replica not yet reconciled and posted. | REPLICA_SYNC_VERSION_NOT_YET_POSTED |
HRESULT:0x80042173 | Child replica cannot be created in the same database as the source data. | CHILD_REPLICA_CANNOT_BE_CREATED_IN_PARENTDB |
HRESULT:0x80042174 | GlobalID column cannot be deleted if it is referenced by a replica. | GLOBALID_FIELD_REFERENCED_BY_REPLICA_CANNOT_BE_DELETED |
HRESULT:0x80042175 | Must be Replica owner to perform this operation. | MUST_BE_REPLICA_OWNER |
HRESULT:0x80042176 | Replica with the same name already exists. | REPLICA_NAME_ALEARDY_EXISTS |
HRESULT:0x80042177 | Cannot register empty replica. | CANNOT_REGISTER_EMPTY_REPLICA |
HRESULT:0x80042178 | Cannot unregister globalID. | FDO_UNREGISTER_GLOBALID_NOT_SUPPORTED |
HRESULT:0x80042179 | Cannot register nullable globalID. | FDO_REGISTER_NULLABLE_GLOBALID_NOT_SUPPORTED |
HRESULT:0x8004217A | Cannot register nullable globalID. | FDO_REGISTER_VERSIONED_GLOBALID_NOT_SUPPORTED |
HRESULT:0x8004217B | Cannot create a replica using archiving to a named version. | FDO_ONEWAY_REPLICA_USING_ARCHIVING_NOT_SUPPORTED_IN_NAMED_VERSIONS |
HRESULT:0x8004217C | Cannot create oneway replica parent readonly on local workspaces. | FDO_ONEWAY_REPLICA_PARENT_READONLY_NOT_SUPPORTED_IN_LOCAL_CHILD_WORKSPACES |
HRESULT:0x8004217D | Cannot synchronize a protected version by anyone other than the owner/dba of the version. | MUST_BE_VERSION_OWNER_TO_SYNC |
HRESULT:0x8004217E | Cannot register data as replicas in a transport FileGDB. Only xml transport file is supported. | FDO_DATA_CANNOT_BE_REGISTERED_AS_REPLICAS_IN_TRANSPORT_FGDB |
HRESULT:0x8004217F | Operation is not supported. Child and parent replica cannot exist in the same geodatabase. | CHILD_PARENT_REPLICA_CANNOT_EXIST_IN_SAME_GEODATABASE |
HRESULT:0x80042180 | Failed to set the target name. | FAILED_TO_SET_TARGET_NAME |
HRESULT:0x80042251 | There is no associated default turn evaluator. | NO_DEFAULT_TURN_EVALUATOR |
HRESULT:0x80042252 | Feature dataset network dataset containers are not supported. | FEATURE_DATASET_CONTAINERS_NOT_SUPPORTED |
HRESULT:0x80042253 | The network dataset name is invalid. | NETWORK_DATASET_INVALID_NAME |
HRESULT:0x80042254 | The network attribute name is invalid. | INVALID_NETWORK_ATTRIBUTE_NAME |
HRESULT:0x80042255 | The network source is invalid for the evaluator. | INVALID_NETWORK_SOURCE_FOR_EVALUATOR |
HRESULT:0x80042256 | The expression is invalid for the evaluator. | INVALID_EXPRESSION_FOR_EVALUATOR |
HRESULT:0x80042257 | Invalid constant for attribute data type. | INVALID_CONSTANT_FOR_NETWORK_ATTRIBUTE |
HRESULT:0x80042258 | Subtype specification is required (UsesSubtypes is True). | SUBTYPES_REQUIRED |
HRESULT:0x80042259 | Invalid network dataset schema. | INVALID_NETWORK_DATASET_SCHEMA |
HRESULT:0x8004225A | Network object evaluator error. | NETWORK_OBJECT_EVALUATOR_ERROR |
HRESULT:0x8004225B | Bad network edge orientation. | NETWORK_BAD_EDGE_ORIENTATION |
HRESULT:0x8004225C | The network dataset has an invalid access mode. | NETWORK_DATASET_INVALID_ACCESS |
HRESULT:0x8004225D | There is no associated default junction evaluator. | NO_DEFAULT_JUNCTION_EVALUATOR |
HRESULT:0x8004225E | There is no associated default edge evaluator. | NO_DEFAULT_EDGE_EVALUATOR |
HRESULT:0x8004225F | The network dataset does not support turns. | NETWORK_DATASET_NOTURNS |
HRESULT:0x80042260 | Network element evaluator error. | NETWORK_ELEMENT_EVALUATOR_ERROR |
HRESULT:0x80042261 | The dataset for the network source was not found. | NETWORK_SOURCE_DATASET_NOT_FOUND |
HRESULT:0x80042262 | The source is not valid for the network. | INVALID_NETWORK_SOURCE |
HRESULT:0x80042263 | The attribute is not valid for the network. | INVALID_NETWORK_ATTRIBUTE |
HRESULT:0x80042264 | The connectivity group name is invalid. | INVALID_CONNECTIVITY_GROUP_NAME |
HRESULT:0x80042265 | Subtype specification is not valid. | SUBTYPES_NOT_IN_USE |
HRESULT:0x80042266 | Network datasets are not supported in this release of the Geodatabase. | NETWORK_DATASETS_NOT_SUPPORTED_IN_RELEASE |
HRESULT:0x80042267 | The network dataset with the specified name already exists. | NETWORK_DATASET_ALREADY_EXISTS |
HRESULT:0x80042268 | A connectivity group was not specified for one or more subtypes. | SUBTYPES_UNSPECIFIED_CONN_GROUP |
HRESULT:0x80042269 | A connectivity policy was not specified for one or more subtypes. | SUBTYPES_UNSPECIFIED_CONN_POLICY |
HRESULT:0x8004226A | The geometry type for the feature class is not valid for the network source. | INVALID_NETWORK_SOURCE_GEOMETRY_TYPE |
HRESULT:0x8004226B | The feature type of the feature class is not valid for the network source. | INVALID_NETWORK_SOURCE_FEATURE_TYPE |
HRESULT:0x8004226C | The fromEdge is not connected to the AtJunction. | FSTAR_INVALID_FROM_EDGE |
HRESULT:0x8004226D | The evaluator object could not be created. | EVALUATOR_CREATE |
HRESULT:0x8004226E | The evaluator failed to initialize data. | EVALUATOR_INITIALIZE_DATA |
HRESULT:0x8004226F | The evaluator failed to initialize for queries. | EVALUATOR_INITIALIZE_QUERY |
HRESULT:0x80042270 | The evaluator failed to return a value. | EVALUATOR_QUERY |
HRESULT:0x80042271 | The network element id is invalid. | INVALID_NETWORK_ELEMENT_ID |
HRESULT:0x80042272 | The network edge direction is invalid. | INVALID_NETWORK_EDGE_DIRECTION |
HRESULT:0x80042273 | The network edge direction is invalid. | INVALID_NETWORK_TURN_TYPE |
HRESULT:0x80042274 | There is no turn present at this adjacency index. | TURN_NOT_PRESENT |
HRESULT:0x80042275 | Build is not supported on this network. | BUILD_NOT_SUPPORTED |
HRESULT:0x80042276 | The operation is not supported on a buildable network. | OPERATION_NOT_SUPPORTED_ON_BUILDABLE_NETWORK |
HRESULT:0x80042277 | The source name is invalid. | NETWORK_SOURCE_INVALID_NAME |
HRESULT:0x80042278 | The element type for the network source is not valid. | NETWORK_SOURCE_INVALID_ELEMENT_TYPE |
HRESULT:0x80042279 | There is no system junction source. | NO_SYSTEM_JUNCTION_SOURCE |
HRESULT:0x8004227A | The system junction source is bad. | BAD_SYSTEM_JUNCTION_SOURCE |
HRESULT:0x8004227B | The network element has not been initialized. | NETWORK_ELEMENT_NOT_INITIALIZED |
HRESULT:0x8004227C | Attributes cannot be added to network datasets with no sources. | ATTRIBUTES_WITHOUT_SOURCES |
HRESULT:0x8004227D | The hierarchy max range values are invalid. | INVALID_HIERARCHY_RANGES |
HRESULT:0x8004227E | Network attributes cannot be deleted. | CANNOT_DELETE_NETWORK_ATTRIBUTES |
HRESULT:0x8004227F | Network source directions not supported on this network source type. | SOURCE_DIRECTIONS_NOT_SUPPORTED |
HRESULT:0x80042280 | The network source with the specified name already exists. | NETWORK_SOURCE_ALREADY_EXISTS |
HRESULT:0x80042281 | The network source with the specified name does not exist. | NETWORK_SOURCE_NAME_DOESNT_EXIST |
HRESULT:0x80042282 | The network evaluator cannot be used as a default evaluator. | EVALUATOR_CANNOT_BE_DEFAULT_EVALUATOR |
HRESULT:0x80042283 | The network attribute is invalid for the evaluator. | INVALID_NETWORK_ATTRIBUTE_FOR_EVALUATOR |
HRESULT:0x80042284 | The network evaluator has not been validated. | EVALUATOR_NOT_VALIDATED |
HRESULT:0x80042285 | The network evaluator is not valid. | EVALUATOR_NOT_VALID |
HRESULT:0x80042286 | The network evaluator has not been initialized. | EVALUATOR_NOT_INITIALIZED |
HRESULT:0x80042287 | The network evaluator has a syntax error. | EVALUATOR_SYNTAX_ERROR |
HRESULT:0x80042288 | The network field evaluator is associated with a field than cannot be found. | FIELD_EVALUATOR_FIELD_NOT_FOUND |
HRESULT:0x80042289 | The attribute id value is invalid. | INVALID_NETWORK_ATTRIBUTE_ID |
HRESULT:0x8004228A | The network source fullname property is invalid. | NETWORK_SOURCE_INVALID_FULLNAME |
HRESULT:0x8004228B | The evaluator in use is not a constant evaluator. | NOT_CONSTANT_EVALUATOR |
HRESULT:0x8004228C | Cannot assign a directional evaluator to a junction source. | DIRECTIONAL_EVALUATOR_WITH_JUNCTION_SOURCE |
HRESULT:0x8004228D | The data element type is incorrect for the operation. | INCORRECT_DATA_ELEMENT_TYPE |
HRESULT:0x8004228E | The number or type of sources are invalid for shapefile-based network datasets. | INVALID_SOURCES_FOR_SHAPEFILE_NETWORK_DATASET |
HRESULT:0x8004228F | The network source has an inconsistent elevation field specification. | NETWORK_SOURCE_INCONSISTENT_ELEVATION_SPECIFICATION |
HRESULT:0x80042290 | The turn feature class does not participate in a network dataset. | TURN_NO_NETWORK |
HRESULT:0x80042291 | The geometry references too many edges for the turn feature class. | TURN_GEOM_TOO_MANY_VERTICES |
HRESULT:0x80042292 | The current edge sequence is not valid. | TURN_NOT_VALID |
HRESULT:0x80042293 | The geometry must have polyline geometry type. | TURN_GEOM_NOT_POLYLINE |
HRESULT:0x80042294 | A turn must include at least two edges. | TURN_GEOM_NOT_ENOUGH_VERTICES |
HRESULT:0x80042295 | The geometry cannot be a multipart line. | TURN_GEOM_MULTIPART |
HRESULT:0x80042296 | The first vertex could not be snapped to a network edge. | TURN_GEOM_NO_FIRST_FEATURE |
HRESULT:0x80042297 | The last vertex could not be snapped to a network edge. | TURN_GEOM_NO_LAST_FEATURE |
HRESULT:0x80042298 | The turn references a line feature that does not have network edge elements. | TURN_GEOM_NO_FEATURES |
HRESULT:0x80042299 | The edges are not adjacent in the network dataset. | TURN_GEOM_DISCONNECTED_FEATURES |
HRESULT:0x8004229A | The edges are not adjacent in the network dataset in this sequence. | TURN_GEOM_INVALID_SEQUENCE |
HRESULT:0x8004229B | A turn must include at least two edges. | TURN_NOT_ENOUGH_PARTS |
HRESULT:0x8004229C | A network edge element used in the middle of the turn sequence cannot also be used at the start or end of the sequence. | TURN_NDS_INTERIOR_EXTERIOR_CONFLICT |
HRESULT:0x8004229D | A turn cannot have any self-looping edge elements. | TURN_NDS_EXTERIOR_LOOP |
HRESULT:0x8004229E | No edge feature sources have been added to the current map. | TURN_NO_EDGE_SOURCES |
HRESULT:0x8004229F | The value for the Edge1End field in the turn feature class is invalid. | TURN_INVALID_EDGE1END |
HRESULT:0x800422A0 | The direction of the turn cannot be determined. | TURN_GEOM_AMBIGUOUS_FEATURES |
HRESULT:0x800422A1 | The network dataset cannot be opened as one of its network sources is missing. | NETWORK_MISSING_SOURCE |
HRESULT:0x800422A2 | Cannot assign a directional evaluator to a turn source. | DIRECTIONAL_EVALUATOR_WITH_TURN_SOURCE |
HRESULT:0x800422A3 | Cannot find the feature class associated with the network source. | NETWORK_SOURCE_MISSING_FEATURE_CLASS |
HRESULT:0x800422A4 | The network source must correspond to a simple feature class. | NETWORK_SOURCE_NOT_SIMPLE_FEATURE_CLASS |
HRESULT:0x800422A5 | The network source participates in multiple network datasets. | NETWORK_SOURCE_IN_MULTIPLE_NETWORKS |
HRESULT:0x800422A6 | Unable to instantiate the network evaluator component. | NETWORK_EVALUATOR_CREATE_FAILED |
HRESULT:0x800422A7 | Cannot assign a field evaluator as a default evalautor. | FIELD_EVALUATOR_AS_DEFAULT_EVALUATOR |
HRESULT:0x800422A8 | Cannot assign a non-directional evaluator with an edge feature source. | NODIRECTIONAL_EVALUATOR_WITH_EDGE_SOURCE |
HRESULT:0x800422A9 | The network source is missing for the evaluator. | MISSING_NETWORK_SOURCE_FOR_EVALUATOR |
HRESULT:0x800422AA | The geometry for a turn cannot start or end at a junction. | TURN_ILLEGAL_START_END_POS |
HRESULT:0x800422AB | System junction sources cannot be deleted. | CANNOT_DELETE_SYSTEM_JUNCTION_SOURCE |
HRESULT:0x800422AC | The value for one of the edge descriptors is invalid. | TURN_INVALID_EDGE_DESCRIPTOR |
HRESULT:0x800422AD | Turn support cannot be changed on an existing network dataset. | TURN_CANNOT_CHANGE_SUPPORT |
HRESULT:0x800422AE | The id value cannot be represented in 32 bits. | ID_OVERFLOW |
HRESULT:0x800422AF | The value for maximum edges per turn is invalid. | TURN_INVALID_MAX_EDGES |
HRESULT:0x800422B0 | The value for maximum edges per turn cannot be less than the existing value. | TURN_INVALID_CUR_MAX_EDGES |
HRESULT:0x800422B1 | The script control is unavailable. | NO_SCRIPT_CONTROL |
HRESULT:0x800422B2 | The vertices of the turn geometry must intersect each edge in the turn. | TURN_MISSING_EDGE |
HRESULT:0x800422B3 | The system junction class does not have the elevation field. | MISSING_SYSTEM_JUNCTION_CLASS_ELEV_FIELD |
HRESULT:0x800422B4 | The system junction class elevation field does not have long integer type. | BAD_TYPE_SYSTEM_JUNCTION_CLASS_ELEV_FIELD |
HRESULT:0x800422B5 | The schema update is invalid. | INVALID_SCHEMA_UPDATE |
HRESULT:0x800422B6 | The UseByDefault property on a network attribute is not supported in this Geodatabase release. | USE_BY_DEFAULT_NOT_SUPPORTED |
HRESULT:0x800422B7 | Signposts on network directions are not supported in this Geodatabase release. | SIGNPOSTS_NOT_SUPPORTED |
HRESULT:0x800422B8 | The network attribute with the specified name already exists. | NETWORK_ATTRIBUTE_ALREADY_EXISTS |
HRESULT:0x800422B9 | The network directions output length unit is invalid. | INVALID_DIRECTIONS_LENGTH_UNIT |
HRESULT:0x800422BA | The global turn delay categories are overlapping. | OVERLAPPING_NETWORK_GLOBAL_TURN_DELAY_CATEGORIES |
HRESULT:0x800422BB | The network attribute does not have cost usage. | NETWORK_ATTRIBUTE_NOT_COST_USAGE |
HRESULT:0x800422BC | The network attribute does not have time units. | NETWORK_ATTRIBUTE_NOT_TIME_UNITS |
HRESULT:0x800422BD | The network attribute evaluator is self referential. | NETWORK_ATTRIBUTE_REFERENCES_SELF |
HRESULT:0x800422BE | The operator used by the network function operator is not supported for this attribute data type. | NETWORK_FUNCTION_EVALUATOR_OPERATOR_NOT_SUPPORTED |
HRESULT:0x800422BF | The first argument to the network function evaluator is invalid. | NETWORK_FUNCTION_EVALUATOR_ARGUMENT1_INVALID |
HRESULT:0x800422C0 | The second argument to the network function evaluator is invalid. | NETWORK_FUNCTION_EVALUATOR_ARGUMENT2_INVALID |
HRESULT:0x800422C1 | The parameter used by this network function evaluator does not exist. | NETWORK_FUNCTION_EVALUATOR_PARAMETER_MISSING |
HRESULT:0x800422C2 | The parameter used by this network function evaluator is not numeric. | NETWORK_FUNCTION_EVALUATOR_PARAMETER_NOT_NUMERIC |
HRESULT:0x800422C3 | The function evaluator value calculation results in a numeric overflow. | NETWORK_FUNCTION_EVALUATOR_OVERFLOW |
HRESULT:0x800422C4 | The attribute referenced by the network function evaluator does not exist. | NETWORK_FUNCTION_EVALUATOR_MISSING_REFERENCED_NETWORK_ATTRIBUTE |
HRESULT:0x800422C5 | The attribute referenced by the network function evalutor is not numeric. | NETWORK_FUNCTION_EVALUATOR_REFERENCED_NETWORK_ATTRIBUTE_NOT_NUMERIC |
HRESULT:0x800422C6 | The network evaluator is not supported. | EVALUATOR_NOT_SUPPORTED |
HRESULT:0x800422C7 | INetworkForwardStarSetup.AddCachedAttribute has been deprecated and should not be called. | FORWARDSTAR_ADD_CACHED_ATTRIBUTE_DEPRECATED |
HRESULT:0x800422C8 | INetworkForwardStarSetup.RemoveAllCachedAttributes has been deprecated and should not be called. | FORWARDSTAR_REMOVE_CACHED_ATTRIBUTES_DEPRECATED |
HRESULT:0x800422C9 | The network attribute usage type is invalid for this operation. | INVALID_NETWORK_ATTRIBUTE_USAGE_TYPE |
HRESULT:0x800422CA | The network attribute adjustment type is invalid for the given range along this edge. | INVALID_NETWORK_EDGE_ATTRIBUTE_ADJUSTMENT |
HRESULT:0x800422CB | The provided network attribute adjustment value is invalid for this operation on this network attribute. | INVALID_NETWORK_ATTRIBUTE_ADJUSTMENT_VALUE |
HRESULT:0x800422CC | The range of positions is invalid for this operation. | INVALID_POSITION_RANGE |
HRESULT:0x800422CD | Network elevation model cannot be changed in the existing network dataset. | NETWORK_ELEVATION_MODEL_CANNOT_CHANGE |
HRESULT:0x800422CE | Connectivity by Z coordinates is not supported in this geodatabase release. | ZCOORDINATES_NOT_SUPPORTED_IN_RELEASE |
HRESULT:0x800422CF | Network source cannot be added to the 3D network dataset since it is not Z-aware. | NETWORK_SOURCE_INVALID_ELAVATION_MODEL |
HRESULT:0x800422D0 | The network edge does not have a covering hyperedge. | NETWORK_COVERING_HYPEREDGE_DOES_NOT_EXIST |
HRESULT:0x800422D1 | The evaluator is invalid for shapefile-based network datasets. | INVALID_EVALUATOR_FOR_SHAPEFILE_NETWORK_DATASET |
HRESULT:0x800422D2 | The usage type or unit type of the evaluator is invalid. | INVALID_USAGE_OR_UNIT_TYPE_FOR_EVALUATOR |
HRESULT:0x800422D3 | The traffic data is invalid. | INVALID_TRAFFIC_DATA |
HRESULT:0x800422D4 | The time slice field name is invalid. | INVALID_TIME_SLICE_FIELD_NAME |
HRESULT:0x800422D5 | Historical traffic data cannot be added to or deleted from the existing network dataset. | HISTORICAL_TRAFFIC_DATA_CANNOT_CHANGE |
HRESULT:0x800422D6 | The traffic data is not supported. | TRAFFIC_DATA_NOT_SUPPORTED |
HRESULT:0x800422D7 | Traffic data fallback or time neutral attribute is missing. | TRAFFIC_DATA_ATTRIBUTE_MISSING |
HRESULT:0x800422D8 | The network dataset does not have a time zone attribute. | NETWORK_DATASET_NO_TIME_ZONE |
HRESULT:0x800422D9 | The network dataset signpost table is not registered in the Geodatabase. | SIGNPOST_TABLE_NOT_REGISTERED |
HRESULT:0x800422DA | The network dataset build should be done outside of an edit session. | BUILD_INSIDE_EDIT_SESSION |
HRESULT:0x800422DB | The network dataset has already been built. | BUILDNETWORK_ALREADYBUILD |
HRESULT:0x800422DC | “For forward traversal, the AtJunction must be the FromEdge’s ToJunction.” | FSTAR_INVALID_FROM_EDGE_FORWARD |
HRESULT:0x800422DD | “For backward traversal, the AtJunction must be the FromEdge’s FromJunction.” | FSTAR_INVALID_FROM_EDGE_BACKWARD |
HRESULT:0x800422DE | No matching attribute record found. | NO_ATTRIBUTE_RECORD |
HRESULT:0x800422DF | The network dataset needs to be upgraded. | NETWORK_DATASET_NEEDS_UPGRADE |
HRESULT:0x800422E0 | The network dataset has already being upgraded. | NETWORK_DATASET_ALREADY_UPGRADED |
HRESULT:0x800422E1 | “The input time value is before January 1, 1970.” | INVALID_TIME_VALUE |
HRESULT:0x800422E2 | The time usage type is invalid. | INVALID_NETWORK_TIME_USAGE_TYPE |
HRESULT:0x800422E3 | Invalid time zone ObjectID. | INVALID_TIME_ZONE_OBJECTID |
HRESULT:0x800422E4 | Invalid time zone name. | INVALID_TIME_ZONE_NAME |
HRESULT:0x800422E5 | The length attribute used by the traffic data is missing. | TRAFFIC_DATA_LENGTH_ATTRIBUTE_MISSING |
HRESULT:0x800422E6 | The number of input array values must equal the number of time slices specified in the last call to StartEditing. | INVALID_TIME_SLICE_ARRAY |
HRESULT:0x800422E7 | Schema edits to a versioned network dataset are not supported. | NETWORK_SCHEMA_CHANGES_NOT_SUPPORTED |
HRESULT:0x800422E8 | The landmark source is not valid. | INVALID_NETWORK_LANDMARK_SOURCE |
HRESULT:0x800422E9 | The geometry type for the feature class is not valid for the network landmark source. | INVALID_NETWORK_LANDMARK_SOURCE_GEOMETRY_TYPE |
HRESULT:0x800422EA | Invalid or missing network landmark source field. | INVALID_NETWORK_LANDMARK_SOURCE_FIELD |
HRESULT:0x800422EB | A time zone network attribute is required for network datasets that use live traffic feeds. | TIME_ZONE_ATTRIBUTE_IS_REQUIRED |
HRESULT:0x80042401 | The cadastral fabric name is invalid. | CADASTRAL_FABRIC_INVALID_NAME |
HRESULT:0x80042402 | Cadastral fabrics are not supported in this release of the Geodatabase. | CADASTRAL_FABRICS_NOT_SUPPORTED_IN_RELEASE |
HRESULT:0x80042403 | A cadastral fabric with the specified name already exists. | CADASTRAL_FABRIC_ALREADY_EXISTS |
HRESULT:0x80042404 | A job with the specified name already exists for the cadastral fabric. | CADASTRAL_FABRIC_JOB_ALREADY_EXISTS |
HRESULT:0x80042405 | The status of the job is invalid for this procedure. | CADASTRAL_FABRIC_JOB_INVALID_STATUS |
HRESULT:0x80042406 | Schema error. Required fields are missing. | CADASTRAL_FABRIC_SCHEMA_CORRUPTION |
HRESULT:0x80042407 | Lock already exists for cadastral feature. | CADASTRAL_FABRIC_JOB_LOCK_ALREADY_EXISTS |
HRESULT:0x80042408 | System table is missing. | CADASTRAL_FABRIC_MISSING_SYSTEM_TABLE |
HRESULT:0x80042409 | Data is corrupted. | CADASTRAL_FABRIC_DATA_CORRUPTION |
HRESULT:0x8004240A | Job has already been committed. | CADASTRAL_FABRIC_JOB_ALREADY_COMMITTED |
HRESULT:0x8004240B | The cadastral job was not found. | CADASTRAL_FABRIC_JOB_NOT_FOUND |
HRESULT:0x8004240C | XML Packet failed to load. | CADASTRAL_FABRIC_PACKET_LOAD_FAILED |
HRESULT:0x8004240D | XML Packet is missing required data. | CADASTRAL_FABRIC_PACKET_MISSING_DATA |
HRESULT:0x8004240E | The specified cadastral job does not belong to the current fabric. | JOB_DOES_NOT_BELONG_TO_FABRIC |
HRESULT:0x8004240F | Edits to the fabric require an edit session. | CADASTRAL_FABRIC_PACKET_POST_REQUIRES_EDIT_SESSION |
HRESULT:0x80042410 | Cannot commit a cadastral job that contains unjoined parcels. | JOB_UNJOINED_PARCEL_PRESENT |
HRESULT:0x80042411 | The version of XML cannot be loaded. | CADASTRAL_FABRIC_XML_PARSER_NOT_FOUND |
HRESULT:0x80042412 | Cadastral feature already updated in default version. | CADASTRAL_FABRIC_OBJECT_ALREADY_MODIFIED |
HRESULT:0x80042413 | Cadastral feature is part of a job that is currently been edited. | CADASTRAL_FABRIC_JOB_CURRENTLY_EDITED |
HRESULT:0x80042414 | Source Datum does not match Cadastral Fabric Datum. | CADASTRAL_FABRIC_DATUM_MISMATCH |
HRESULT:0x80042415 | Cannot reconcile grandchild versions with fabric edits against default. | CADASTRAL_FABRIC_ILLEGAL_RECONCILE |
HRESULT:0x80042416 | Cannot commit the given job – no name supplied. | CADASTRAL_FABRIC_COMMIT_NO_NAME |
HRESULT:0x80042417 | Cannot commit the given job – not in default. | CADASTRAL_FABRIC_COMMIT_NOT_DEFAULT |
HRESULT:0x80042418 | Cannot commit the given job – the job is currently locked. | CADASTRAL_FABRIC_COMMIT_JOB_LOCKED |
HRESULT:0x80042419 | Cannot delete the given job – the job is not committed. | CADASTRAL_FABRIC_JOB_NOT_COMMITTED |
HRESULT:0x8004241A | Copy paste of a topology with a cadastral fabric dataset is not supported in this release. | CADASTRAL_FABRIC_COPY_WITH_TOPOLOGY_NOT_SUPPORTED_IN_RELEASE |
HRESULT:0x8004241B | The cadastral fabric operation was cancelled. | CADASTRAL_FABRIC_OPERATION_CANCELLED |
HRESULT:0x8004241C | The parcel fabric dataset has already being upgraded. | CADASTRAL_FABRIC_ALREADY_UPGRADED |
HRESULT:0x80042501 | Personal SDE can only have one editor. | PERSONAL_SDE_ONE_EDITOR |
HRESULT:0x80042502 | Failed to connect to Database Server. | CANNOT_CONNECT_TO_SERVER |
HRESULT:0x80042601 | The item was not found. | ITEM_NOT_FOUND |
HRESULT:0x80042602 | The item with path already exists. | ITEM_WITH_PATH_EXISTS |
HRESULT:0x80042603 | The item does not have a definition. | ITEM_DOES_NOT_HAVE_DEFINITION |
HRESULT:0x80042604 | The catalog path is invalid. | INVALID_CATALOG_PATH |
HRESULT:0x80042605 | A relationship already exists between these items. | ITEM_RELATIONSHIP_EXISTS |
HRESULT:0x80042606 | Cannot change the visibility of an existing item. | CANNOT_CHANGE_ITEM_VISIBILITY |
HRESULT:0x80042607 | Item relationship visibility must match the visibility of the related items. | RELATIONSHIP_VISIBILITY_INVALID |
HRESULT:0x80042608 | UpdateDataset cannot change this property. | CANNOT_CHANGE_ITEM_PROPERTY |
HRESULT:0x80042609 | Item relationship attributes are invalid. | RELATIONSHIP_ATTRIBUTES_INVALID |
HRESULT:0x8004260A | Cannot upgrade because there are other active connections. | OTHER_ACTIVE_CONNECTIONS |
HRESULT:0x8004260B | User does not have required priviliges to upgrade. | USER_DOES_NOT_HAVE_UPGRADE_PRIVILIGES |
HRESULT:0x8004260C | Instance is not upgradable. | INSTANCE_IS_NOT_UPGRADABLE |
HRESULT:0x8004260D | Instance does not support XML type. | INSTANCE_DOES_NOT_SUPPORT_XML_TYPE |
HRESULT:0x8004260E | The item relationship was not found. | ITEM_RELATIONSHIP_NOT_FOUND |
HRESULT:0x8004260F | The item associated with an item relationship was not found. | ITEM_RELATIONSHIP_ITEM_NOT_FOUND |
HRESULT:0x80042610 | The dataset definition is missing an expected controller membership. | DEFINITION_MISSING_CONTROLLER_MEMBERSHIP |
HRESULT:0x80042611 | The catalog item corresponds to an unknown type. | UNKNOWN_CATALOG_TYPE |
HRESULT:0x80042701 | The geodatabase doesn’t support unmanaged raster catalogs. | DOES_NOT_SUPPORT_UNMANAGED_RASTER_CATALOG |
HRESULT:0x80042801 | No spatial column present | QUERYDESCRIPTION_NOSPATIALCOLUMN |
HRESULT:0x80042802 | Invalid column. | QUERYDESCRIPTION_INVALIDCOLUMN |
HRESULT:0x80042803 | OID not a mapped column. | QUERYDESCRIPTION_OIDNOTMAPPEDCOLUMN |
HRESULT:0x80042804 | Column exists. | QUERYDESCRIPTION_COLUMNEXISTS |
HRESULT:0x80042805 | Invalid field type. | QUERYDESCRIPTION_INVALIDFIELDTYPE |
HRESULT:0x80042806 | Oid mapped column has null value. | QUERYTABLE_OIDMAPPEDCOLUMNHASNULL |
HRESULT:0x80042807 | Query description out of sync. | QUERYDESCRIPTION_OUTOFSYNC |
HRESULT:0x80042808 | Fields used for OID mapping missing. | QUERYDESCRIPTION_OIDFIELDSMISSING |
HRESULT:0x80042809 | Geometry type not supported. | QUERYDESCRIPTION_INVALIDGEOMETRYTYPE |
HRESULT:0x8004280A | Failed to parse the where clause. | QUERYCLASS_INVALIDWHERE |
HRESULT:0x8004280B | Oid value is unknown. | QUERYCLASS_OIDUNKNOWN |
HRESULT:0x8004280C | Query missing. | QUERYTABLE_QUERYMISSING |
HRESULT:0x8004280D | Workspace missing. | QUERYTABLE_WORKSPACEMISSING |
HRESULT:0x8004280E | Oid column has null value. | QUERYTABLE_OIDCOLUMNHASNULL |
HRESULT:0x8004280F | Geometry type is null geometry. | QUERYCLASS_NULLGEOMETRYTYPE |
HRESULT:0x80042810 | Srid is invalid. | QUERYCLASS_INVALIDSRID |
HRESULT:0x80042811 | Spatial reference is invalid. | QUERYCLASS_INVALIDSPATIALREFERENCE |
HRESULT:0x80042812 | Class name is invalid. | QUERYCLASS_INVALIDNAME |
HRESULT:0x80042851 | Unable to obtain origin primary key value. | RELCLASS_COULD_NOT_GET_ORIG_PRIM_KEY |
HRESULT:0x80042852 | Unable to obtain origin foreign key value. | RELCLASS_COULD_NOT_GET_ORIG_FOR_KEY |
HRESULT:0x80042853 | Unable to obtain destination primary key value. | RELCLASS_COULD_NOT_GET_DEST_PRIM_KEY |
HRESULT:0x80042854 | Unable to obtain destination foreign key value. | RELCLASS_COULD_NOT_GET_DEST_FOR_KEY |
HRESULT:0x80042855 | The relationship class is incompatible with an existing relationship class. | RELCLASS_INCOMPATIBLE_WITH_EXISTING_RELCLASS |
HRESULT:0x80042856 | Cannot reset foreign keys for an existing relationship row. | RELCLASS_CANNOT_RESET_FKEYS |
HRESULT:0x80042857 | Invalid foreign key value. | RELCLASS_INVALID_FKEY |
HRESULT:0x80042858 | QueryDef-based search returned an invalid cursor. | RELCLASS_INVALID_CURSOR |
HRESULT:0x80042859 | The relationship class was not found. | RELATIONSHIPCLASS_NOT_FOUND |
HRESULT:0x8004285A | Invalid relationship class name. | RELATIONSHIPCLASS_INVALID_NAME |
HRESULT:0x8004285B | The relationship class already exists. | RELATIONSHIPCLASS_ALREADY_EXISTS |
HRESULT:0x8004285C | Invalid relationship class specification. | RELATIONSHIPCLASS_INVALID_SPEC |
HRESULT:0x8004285D | Cannot open origin or destination class of this relationship class. | RELATIONSHIPCLASS_ORIGIN_DEST_NOT_FOUND |
HRESULT:0x8004285E | The replace command cannot be completed because the attributed relationship row’s origin and/or destination class object does not exist. Ensure that both of the related objects are present before attempting to execute the replace with command. | MISSING_ORIGIN_OR_DESTINATION_OBJECT |
HRESULT:0x80042901 | The connectivity rule is invalid/malformed. | INVALID_CONNECTIVITY_RULE |
HRESULT:0x80042902 | Validation not supported on non-SQL datasets. | VALIDATION_NOT_SUPPORTED |
HRESULT:0x80042903 | The cardinality specified for the connectivity rule is invalid. | INVALID_CARDINALITY |
HRESULT:0x80042904 | Default junctions not supported in this release of the Geodatabase. | DEFAULT_JUNCTIONS_NOT_SUPPORTED_IN_RELEASE |
HRESULT:0x80042905 | Altering this type of validation rule not supported. | ALTERING_RULE_NOT_SUPPORTED |
HRESULT:0x80042906 | Connectivity rules are not supported on simple features. | CONNECTIVITY_RULES_NOT_SUPPORTED |
HRESULT:0x80042907 | Cannot alter a non-existant rule. | CANNOT_ALTER_NON_EXISTANT_RULE |
HRESULT:0x80042908 | Validation rule not found. | RULE_NOT_FOUND |
HRESULT:0x80042951 | Zero-length polylines not allowed. | ZERO_LENGTH_POLYLINE |
HRESULT:0x80042952 | Closed polylines not allowed. | CLOSED_POLYLINE |
HRESULT:0x80042953 | Junction feature does not have network ancillary role. | NO_NETWORK_ANCILLARY_ROLE |
HRESULT:0x80042954 | Flipping polylines not allowed. | FLIPPED_POLYLINE |
HRESULT:0x80042955 | Splitting junction features not allowed. | CANNOT_SPLIT_JUNCTION |
HRESULT:0x80042956 | Invalid network ancillary role. | INVALID_NETWORK_ANCILLARY_ROLE |
HRESULT:0x80042957 | Cannot add an orphan junction on top of an existing junction. | CANNOT_ADD_ORPHAN_JUNCTION_ON_EXISTING_JUNCTION |
HRESULT:0x80042958 | The specified junction index is invalid. | INVALID_JUNCTION_INDEX |
HRESULT:0x80042959 | Unable to set the enabled field associated with a network element. | CANNOT_SET_ENABLED_FIELD |
HRESULT:0x8004295A | Unable to set the weight field associated with a network element. | CANNOT_SET_WEIGHT_FIELD |
HRESULT:0x8004295B | An invalid type of geometry is being set into a complex junction. | INVALID_GEOMETRY_FOR_COMPLEX_JUNCTION |
HRESULT:0x8004295C | An invalid geometry type is associated with a network feature class. | INVALID_GEOMETRY_TYPE_FOR_NETWORK_FEATURE_CLASS |
HRESULT:0x8004295D | The network feature does not have an associated network element. | NO_ASSOCIATED_NETWORK_ELEMENT |
HRESULT:0x8004295E | The edge feature has the same from and to junctions. | IDENTICAL_FROM_TO_JUNCTIONS |
HRESULT:0x8004295F | The edge feature is missing either a from or to junction. | EDGE_MISSING_ENDPOINT_JUNCTION |
HRESULT:0x80042960 | The connected edge feature has invalid connectivity. | CONNECTED_EDGE_INVALID_CONNECTIVITY |
HRESULT:0x80042961 | A connected feature has inconsistent connectivity and cannot be corrected. | INVALID_CONNECTIVITY_CANNOT_BE_CORRECTED |
HRESULT:0x80042962 | Invalid network feature class. | INVALID_NETWORK_FEATURE_CLASS |
HRESULT:0x80043001 | The domain was not found. | DOMAIN_NOT_FOUND |
HRESULT:0x80043002 | The domain is used by an attribute rule. | DOMAIN_USED_BY_ATTRIBUTE_RULE |
HRESULT:0x80043003 | The domain is used as a default domain. | DOMAIN_USED_AS_DEFAULT_DOMAIN |
HRESULT:0x80043004 | Domain name already in use. | DOMAIN_NAME_ALREADY_EXISTS |
HRESULT:0x80043005 | The value of the domain exceeds the length of the field. | DOMAIN_VALUE_EXCEEDS_FIELD_LENGTH |
HRESULT:0x80043006 | The existing domain owner does not match that of the updated domain. | DOMAIN_OWNER_DOESNT_MATCH |
HRESULT:0x80043007 | The existing domain field type does not match that of the updated domain. | DOMAIN_FIELD_TYPE_DOESNT_MATCH |
HRESULT:0x80043008 | The domain type is not supported. | DOMAIN_TYPE_NOT_SUPPORTED |
HRESULT:0x80043009 | The value being added to the coded value domain already exists. | CODED_VALUE_DOMAIN_VALUE_ALREADY_EXISTS |
HRESULT:0x8004300A | Client cocreated domains may not be locked. | CANNOT_LOCK_COCREATED_DOMAIN |
HRESULT:0x8004300B | The domain is already used by another workspace. | DOMAIN_USED_BY_OTHER_WORKSPACE |
HRESULT:0x8004300C | The domain field type does not match that of the field it is being assigned to. | DOMAIN_FIELD_TYPE_MISMATCH |
HRESULT:0x8004300D | Domain may not be locked as the user is not the owner. | CANNOT_LOCK_DOMAIN_AS_NOT_OWNER |
HRESULT:0x8004300E | The specified default domain was not found. | DEFAULT_DOMAIN_NOT_FOUND |
HRESULT:0x8004300F | The domain record was not found. | DOMAIN_RECORD_NOT_FOUND |
HRESULT:0x80043010 | The existing domain type does not match that of the updated domain. | DOMAIN_TYPE_DOESNT_MATCH |
HRESULT:0x80043011 | The name of an entry in the coded value domain is empty. | CODED_VALUE_DOMAIN_NAME_EMPTY |
HRESULT:0x80043012 | The value is not compatible with the field types associated with the coded value domain. | CODED_VALUE_DOMAIN_VALUE_NOT_COMPATIBLE |
HRESULT:0x80043013 | The value type is inconsistent with other associated value types in the coded value domain. | CODED_VALUE_DOMAIN_VALUE_INCONSISTENT |
HRESULT:0x80043014 | The field type is not compatible with the associated value types in the coded value domain. | CODED_VALUE_DOMAIN_FIELD_TYPE_NOT_COMPATIBLE |
HRESULT:0x80043015 | The domain cannot be deleted. | CANNOT_DELETE_DOMAIN |
HRESULT:0x80043016 | The domain name is invalid. | DOMAIN_INVALID_NAME |
HRESULT:0x80043017 | The domain definition is different from the domain of the same name in the workspace. | DOMAIN_DOES_NOT_MATCH_WORKSPACE |
HRESULT:0x80043018 | The domain is incompatible with the existing default value. | DOMAIN_INCOMPATIBLE_WITH_DEFAULT_VALUE |
HRESULT:0x80043019 | The process has timed out while waiting for traffic update downloads. | TRAFFIC_DOWNLOAD_TIMEOUT |
HRESULT:0x8004301A | An error was encountered connecting to the dynamic traffic data. Verify that the network dataset’s Traffic Feed property is correctly set and that you have access to this location. | REFRESH_DYNAMIC_TRAFFIC_ERROR |
HRESULT:0x80043051 | Invalid name object. | INVALID_NAME_OBJE |
ArcObjectsはレイヤの扱いが直観的ではなく忘れやすい。
以下ではポリゴン、EPSG=2451のメモリレイヤを作成してMapControlに追加
try { IFields fields = new Fields(); IFieldsEdit fieldsEdit = (IFieldsEdit)fields; IField field = new Field(); IFieldEdit fieldEdit = (IFieldEdit)field; fieldEdit.Name_2 = "OID"; fieldEdit.Type_2 = esriFieldType.esriFieldTypeOID; fieldsEdit.AddField(fieldEdit); field = new Field(); fieldEdit = (IFieldEdit)field; fieldEdit.Name_2 = "NAME"; fieldEdit.Length_2 = 10; fieldEdit.Type_2 = esriFieldType.esriFieldTypeString; fieldsEdit.AddField(fieldEdit); field = new Field(); fieldEdit = (IFieldEdit)field; fieldEdit.Name_2 = "GEOM"; fieldEdit.Type_2 = esriFieldType.esriFieldTypeGeometry; IGeometryDef geometryDef = new GeometryDef(); IGeometryDefEdit geometryDefEdit = (IGeometryDefEdit)geometryDef; geometryDefEdit.GeometryType_2 = esriGeometryType.esriGeometryPolygon; ISpatialReferenceFactory spatialReferenceFactory = new SpatialReferenceEnvironmentClass(); ISpatialReference spatialReference = spatialReferenceFactory.CreateProjectedCoordinateSystem((int)2451); ISpatialReferenceResolution spatialReferenceResolution = (ISpatialReferenceResolution)spatialReference; spatialReferenceResolution.ConstructFromHorizon(); ISpatialReferenceTolerance spatialReferenceTolerance = (ISpatialReferenceTolerance)spatialReference; spatialReferenceTolerance.SetDefaultXYTolerance(); geometryDefEdit.SpatialReference_2 = (ISpatialReference)spatialReference; fieldEdit.GeometryDef_2 = geometryDefEdit; fieldsEdit.AddField(fieldEdit); Type factoryType = Type.GetTypeFromProgID("esriDataSourcesGDB.InMemoryWorkspaceFactory"); IWorkspaceFactory workspaceFactory = (IWorkspaceFactory)Activator.CreateInstance(factoryType); IWorkspaceName workspaceName = workspaceFactory.Create("", "MyWorkspace", null, 0); IName name = (IName)workspaceName; IFeatureWorkspace featureWorkspace = (IFeatureWorkspace)name.Open(); IFeatureClass featureClass = featureWorkspace.CreateFeatureClass( "NewPolygon", fields, null, null, esriFeatureType.esriFTSimple, "GEOM", ""); IFeatureLayer featureLayer = new FeatureLayer(); featureLayer.FeatureClass = featureClass; featureLayer.Name = "mempoly"; axMapControl1.AddLayer(featureLayer); } catch (Exception e) { System.Diagnostics.Debug.WriteLine(e.Message); }
参考にしたサイト
InMemoryWorkspaceFactory CoClass
Creating a featureclass in memory and adding to the map error
IFeatureWorkspace.CreateFeatureClass Example
ArcObjectsではFeatureの選択はすべてのレイヤをレイヤを串刺しに選択されてしまう。
特定のレイヤだけを選択の対象とするには、選択対象以外のレイヤを選択不可にする。
for(int i = 0; i < cnt ; i++) { ILayer curLayer = axMapControl1.get_Layer(i); if(curLayer.Name == "ポリゴン") { if (curLayer is IFeatureLayer) { featureLayer = (IFeatureLayer)curLayer; featureLayer.Selectable = false; break; } } }