|
POST
|
Can you publish the code to see what you want to do in detail ?
... View more
08-23-2018
02:15 AM
|
0
|
0
|
570
|
|
POST
|
In general for understand the relation among them you can see Reading OMDs You can access OMDs from the Help system's table of contents (TOC) by clicking the Namespace reference node, expanding the node for the applicable assembly, expanding the node for the proper namespace named node, then clicking the applicable <Namespace> Object Model Diagram node for example for geodatabase : GeoDatabaseObjectModel
... View more
08-21-2018
02:03 AM
|
1
|
0
|
692
|
|
POST
|
In arcobjects you can see the difference between two transactional versions with this code: -list of oids : update in Versione A and no change in Default (no conflits …) List<int> f1 = FindVersionDifferences(aWorkspace, "Version A", "DEFAULT", featureClassName, esriDifferenceType.esriDifferenceTypeUpdateNoChange); -list of oids : delete in Versione A and no change in Default (no conflits …) List<int> f2 = FindVersionDifferences(aWorkspace, "Version A", "DEFAULT", featureClassName, esriDifferenceType.esriDifferenceTypeDeleteNoChange); -list of oids : insert in Versione A (no conflits) List<int> f3 = FindVersionDifferences(aWorkspace, "Version A", "DEFAULT", featureClassName, esriDifferenceType.esriDifferenceTypeInsert); -list of oids : update in Versione A and update in Default (conflits) List<int> f4 = FindVersionDifferences(aWorkspace, "Version A", "DEFAULT", featureClassName, esriDifferenceType.esriDifferenceTypeUpdateUpdate); -list of oids : update in Versione A and delete in Default (conflits) List<int> f5 = FindVersionDifferences(aWorkspace, "Version A", "DEFAULT", featureClassName, esriDifferenceType.esriDifferenceTypeUpdateDelete); -list of oids : delete in Versione A and update in Default (conflits) List<int> f6 = FindVersionDifferences(aWorkspace, "Version A", "DEFAULT", featureClassName, esriDifferenceType.esriDifferenceTypeDeleteUpdate); you also get 6 lists between Version B and Default and compare lists for see difference between Version A and B for example change in A and in change B and no change in Default: var c = f1_VersionA_Default.Intersect(f1_VersionB_Deafult); c is list of oids changed in A and changed in B but not in Default and so on … public List<int> FindVersionDifferences(IWorkspace workspace, String childVersionName, String parentVersionName, String tableName, esriDifferenceType differenceType)
{
// Get references to the child and parent versions.
IVersionedWorkspace versionedWorkspace=(IVersionedWorkspace)workspace;
IVersion childVersion=versionedWorkspace.FindVersion(childVersionName);
IVersion parentVersion=versionedWorkspace.FindVersion(parentVersionName);
// Cast to the IVersion2 interface to find the common ancestor.
//IVersion2 childVersion2=(IVersion2)childVersion;
//IVersion commonAncestorVersion=childVersion2.GetCommonAncestor(parentVersion);
// Cast the child version to IFeatureWorkspace and open the table.
IFeatureWorkspace childFWS=(IFeatureWorkspace)childVersion;
ITable childTable=childFWS.OpenTable(tableName);
// Cast the common ancestor version to IFeatureWorkspace and open the table.
//IFeatureWorkspace commonAncestorFWS=(IFeatureWorkspace)commonAncestorVersion;
//ITable commonAncestorTable=commonAncestorFWS.OpenTable(tableName);
IFeatureWorkspace commonAncestorFWS = (IFeatureWorkspace)parentVersion;
ITable commonAncestorTable=commonAncestorFWS.OpenTable(tableName);
// Cast to the IVersionedTable interface to create a difference cursor.
IVersionedTable versionedTable=(IVersionedTable)childTable;
IDifferenceCursor differenceCursor=versionedTable.Differences
(commonAncestorTable, differenceType, null);
// Create output variables for the IDifferenceCursor.Next method and a FID set.
//IFIDSet fidSet=new FIDSetClass();
IRow differenceRow=null;
int objectID= - 1;
List<int> l = new List<int>();
// Step through the cursor, showing the ID of each modified row.
differenceCursor.Next(out objectID, out differenceRow);
while (objectID != - 1)
{
l.Add(objectID);
differenceCursor.Next(out objectID, out differenceRow);
}
// fidSet.Reset();
// return fidSet;
return l;
}
... View more
08-02-2018
03:28 AM
|
0
|
0
|
1529
|
|
POST
|
What's the error ? Set level of log 'verbose' arcgis server and see if you have further details see also Error: The server is not ready for publishing. Please check if the Publishing Tools on the server are started
... View more
07-31-2018
01:23 AM
|
0
|
0
|
1588
|
|
POST
|
Extra info: you need paste the following script in your application prior to loading the ArcGIS API for JavaScript <script> var dojoConfig = { has: { "esri-featurelayer-webgl": 1 } }; </script> In fact your sample I see that service isn't called with f=pbf
... View more
07-26-2018
02:49 AM
|
0
|
0
|
1890
|
|
DOC
|
Brad, I have made a similar tool only for arcgis pro: I have added also spatial filter. You can try see if it download attachments GitHub - nicogis/DownloadService: Download data from services of arcgis server or host service
... View more
07-10-2018
11:52 AM
|
0
|
0
|
7546
|
|
POST
|
Yes, I have developed this add-in but Google Maps APIs Terms of Service doesn't permit (10.4d) You could use BingStreetside Here my code (updated version ArcGIS Pro 3.0)
... View more
06-01-2018
07:25 AM
|
2
|
1
|
28573
|
|
POST
|
10.1 is retired from january 2018 ... Product cycles
... View more
05-11-2018
01:05 AM
|
0
|
0
|
2164
|
|
POST
|
Hi Randall, I agree but you could receive this error with a simple request rest query with returnIdsOnly ( there is no limit on the number of object IDs returned in the ID array response ) I have generated about 8000000 oids In some server with high number of services I had 'Unable to process request. Error handling service request :Cannot obtain a free instance.; nested exception is: java.lang.OutOfMemoryError: GC overhead limit exceeded'. ( GC overhead limit exceeded – Plumbr ) so I had also the need change 'app server maximum heap size' for allocate more memory.
... View more
05-09-2018
12:47 AM
|
0
|
0
|
3955
|
|
POST
|
You can change two parameters in admin ags: The heap size controls the maximum file size that can be sent to and from the GIS server so if an user perform a query with result sets in excess of 64MB you have an error and need increase this value. In app server heap size set the max memory (Xmx) that allocate for app server java (javaw.exe process provide basic application server functionality and the ability to host web services). If this process force to perform garbage collection frequently you have possible indicator for increase this parameter. You can see that a javaw.exe process is associated with ArcGIS Server by looking at the Command Line column in Windows Task Manager. If the path includes the ArcGIS installation directory, you know it's a process associated with ArcGIS Server. You can derive further information about each process by examining its full command. For details on heap size and dimension of heap size you can see this links: https://codecurmudgeon.com/wp/2012/05/java-memory-settings-jvm-heap-size/ https://stackoverflow.com/questions/1651225/how-to-choose-the-jvm-heap-size
... View more
05-03-2018
07:21 AM
|
2
|
2
|
3955
|
|
POST
|
You can use http://www.arcgis.com/home/item.html?id=b59665cb906a435da3f8c45332d7cfdf ArcGIS Pro 2.1 introduced a geoprocessing tool that will also convert densified lines into one or more separate circular arcs by fitting circular arcs to the straight-line segment sequences. This new gp tool can be found in the Editing toolbox and is called Simplify By Straight Lines And Circular Arcs. http://pro.arcgis.com/en/pro-app/tool-reference/editing/simplifybystraightlinesandcirculararcs.htm
... View more
04-17-2018
03:33 AM
|
0
|
0
|
996
|
|
DOC
|
in C:\Python27\[ArcGISx6410.2 or ArcGIS10.2]\Lib\site-packages have you the folder 'requests' ? Yes this tool download all features/rows (if your where is empty) No, only from Rest Esri.
... View more
04-11-2018
09:02 AM
|
0
|
0
|
12158
|
|
POST
|
If I see this link I do not see any differences with 10.5.1
... View more
04-09-2018
01:40 AM
|
0
|
0
|
1825
|
|
POST
|
try and see this link https://github.com/Esri/arcobjects-sdk-community-samples/tree/master/Net/Geoprocessing/GPExecuteToolsAsync
... View more
04-05-2018
08:39 AM
|
0
|
0
|
3136
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 06-20-2024 11:20 AM | |
| 1 | 05-25-2017 10:11 AM | |
| 1 | 06-20-2023 12:09 AM | |
| 1 | 10-14-2022 05:14 AM | |
| 1 | 06-14-2023 02:00 AM |
| Online Status |
Offline
|
| Date Last Visited |
Wednesday
|