|
POST
|
Use: <SpatialReference xsi:type="esri:ProjectedCoordinateSystem"> <WKT>PROJCS["WGS_1984_Web_Mercator_Auxiliary_Sphere",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Mercator_Auxiliary_Sphere"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Standard_Parallel_1",0.0],PARAMETER["Auxiliary_Sphere_Type",0.0],UNIT["Meter",1.0],AUTHORITY["EPSG",3857]]</WKT> <WKID>3857</WKID> </SpatialReference> The WKT and WKID are both required.
... View more
08-05-2013
02:41 PM
|
0
|
0
|
3008
|
|
POST
|
Currently the only way to get this information is by parsing the xml returned by table.GetDefinition. This includes the complete definition of the feature class / table. In the next revision of the API it will be easier get the coordinate reference information. The release date has not been determined.
... View more
08-05-2013
12:17 PM
|
0
|
0
|
666
|
|
POST
|
The coordinate reference system for Cites and Cites2 is: GCS_North_American_1983 Unless you have run the sample code, there is no reason to delete any rows from Cities2 as it in empty. The sample code populates Cites2 using the coordinates from City. I'm reviewing your code.
... View more
08-05-2013
10:18 AM
|
0
|
0
|
3008
|
|
POST
|
Is the Feature Class in a Geometric Network, Network Dataset or Topology?
... View more
07-24-2013
10:56 AM
|
0
|
0
|
713
|
|
POST
|
This "date_field < date '2013-07-09 17:34:49' " should work. EnumRows attrQueryRows;
if ((hr = table.Search(L"*", L"UP_DATE > date '2007-05-23 11:13:59'", true, attrQueryRows)) != S_OK)
{
wcout << "An error occurred while performing the attribute query." << endl;
ErrorInfo::GetErrorDescription(hr, errorText);
wcout << errorText << "(" << hr << ")." << endl;
return -1;
}
... View more
07-17-2013
09:34 AM
|
0
|
0
|
678
|
|
POST
|
The existence of a freelist will not block anything. Are there any .lock files present? If server is running there should be.
... View more
06-25-2013
07:27 AM
|
0
|
0
|
3726
|
|
POST
|
It is in the Unix read me file, but is missing from all of the others. It's been added in for the next release.
... View more
06-18-2013
02:03 PM
|
0
|
0
|
2162
|
|
POST
|
These classes are for public use, but are not complete with the 1.3 release. It is not possible to create a table or feature class using these classes. We will not be dropping them from the API and hope to fill out the rest of the functionality in a future release. They will documented in the next release.
... View more
05-22-2013
08:04 AM
|
0
|
0
|
1152
|
|
POST
|
The file geodatabase API does not support custom GCS or PCS. If you cannot find it in the list, it is likely that it is custom and not supported. If you post the projection information we will take a look.
... View more
05-22-2013
07:57 AM
|
0
|
0
|
1053
|
|
POST
|
ArcGIS identifies a File Geodatabase using two criteria. 1) The folder name must include .gdb 2) A file named "gdb" must be present within the directory. If both of these conditions are true then ArcGIS recognizes the directory as a file geodatabase. Verify that the folder name includes the .gdb extension and that the folder contains a "gdb" file. If not, something is missing from the USB drive. You can copy a gdb file from an existing file geodatabase and if nothing else is missing this should fix the problem.
... View more
05-16-2013
01:56 PM
|
2
|
0
|
4834
|
|
POST
|
The ArcObjects implementation reference is for 9.2 and is a bit out of date. The File Geodatabase API is based on the ArcGIS 10.0 file geodatabase implementation with some exceptions. Joins are not supported in the API while they are in ArcGIS. GROUP BY was not supported in the file geodatabase in 10.0. GROUP BY was added to ArcGIS at 10.1, but the API has not been updated. The SQL is invalid you cannot include OBJECTID in the select list. Only the grouping field and summary fields can be included. If you are looking for an list ordered by STATE_NAME and OBJECTID try: SELECT STATE_NAME, OBJECTID FROM cities ORDER BY BY STATE_NAME, OBJECTID There is a documentation error in the API documentation that notes GROUP BY, but it is an error and will be corrected in the next release of the API.
... View more
05-16-2013
09:31 AM
|
1
|
0
|
1554
|
|
POST
|
I just tested this with 10.1 and it's working for me. I added a 300 width field and calculated values into it and it sorts without an error. Can you post a copy of your data?
... View more
05-13-2013
11:26 AM
|
0
|
0
|
800
|
|
POST
|
SetWriteLock and FreeWriteLock modifies locking behavior. If they are not used, a write lock will be set and released for each insert or update. In a loading situation this is very slow. SetWriteLock sets a write lock until the free is called. This is much faster when doing bulk loads. As Vince indicates we need to see a short as possible piece of code that reproduces your issue.
... View more
05-02-2013
07:43 AM
|
0
|
0
|
2111
|
|
POST
|
You may want to see: http://forums.esri.com/Thread.asp?c=93&f=992&t=88487
... View more
05-01-2013
12:22 PM
|
0
|
0
|
2129
|
|
POST
|
If I'm reading your code correctly, you are trying to change the length of a character field. This is not supported. Currently the documentation doees not indicate what is and is not supported. I will enter a bug and correct this at the next release.
... View more
04-26-2013
11:48 AM
|
0
|
0
|
1839
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-16-2013 09:31 AM | |
| 1 | 12-21-2016 08:14 AM | |
| 1 | 07-29-2016 08:34 AM | |
| 1 | 04-15-2015 09:20 AM | |
| 1 | 12-19-2016 04:33 PM |
| Online Status |
Offline
|
| Date Last Visited |
04-24-2025
12:47 PM
|