|
POST
|
Am working with a (SQLite) runtime Geodatabase with an app that relies on the presence of several attribute indexes to provide good performance. Is there a way in the ArcGIS runtime .net SDK to detect the presence of an index so I can take some action if its not there? Thanks, Ed
... View more
02-21-2017
05:38 AM
|
0
|
1
|
906
|
|
POST
|
Actually, in some cases yes. I copied the feature class into another Geodatabase and the ArcCatalog reported count matched the expected count. However if I copied the entire Geodatabase to another Geodatabase it did not resolve the issue. In my case I was able to re-populate the class from scratch. So I truncated the contents. Found the count to be 0 (thank goodness) and executed steps to reload the class. After which the reported and actual feature counts matched. Thanks for the reply! Ed
... View more
07-29-2016
08:24 AM
|
0
|
1
|
2175
|
|
POST
|
Dan - Thanks much for the suggestion. Sounded reasonable so I tried it, including the option to delete features with NULL geometries. No difference though. Also closed and re-opened ArcCatalog after the "repair" to make sure nothing was cached. Still the same "double" count. Ed
... View more
07-25-2016
02:09 PM
|
0
|
4
|
2175
|
|
POST
|
Have got a file geodatabase with a number of classes. One of them, named P_Service, when clicked on in ArcCatalog reports there are 167,876 when in fact there are 83,938 features. At least when I click "Move to End" there are 83,938 features present. And that's what I expect, 83,938. Any reason why ArcCatalog would be telling me the class has got twice as many records as are actually present? Any comments/suggestions would be much appreciated. Thx Ed
... View more
07-25-2016
01:40 PM
|
0
|
6
|
3074
|
|
POST
|
I'm adding an ArcGISDynamicMapServiceLayer layer to my map that points to a LocalMapService based on a map package that contains a standalone table. I can get references to all the feature layers using GetAllDetailsAsync, but this doesn't seem to return a reference to the standalone table. I could easily be missing something. Any insights would be much appreciated. Thanks, Ed
... View more
05-27-2016
02:55 PM
|
0
|
0
|
2349
|
|
POST
|
Have tried using PerfQAnalyzer to look at performance and it looks useful. However, I'm looking for documentation that would help make sure I'm interpreting the results correctly and I can't find this. Anyone know of where I might find a document that would describe how to interpret PerQAnalyzer results? Thanks, Ed
... View more
08-12-2015
03:25 PM
|
0
|
0
|
3618
|
|
POST
|
Ahhh! Yes, I see now. Thanks much for the clarification! Ed
... View more
05-18-2015
07:30 AM
|
0
|
0
|
1161
|
|
POST
|
Hello - I've found that RequestShapeAsync returns geometries as expected for all DrawShape types.. except for LineSegment. I'm expecting this to operate like a Polyline except that it returns with a polyline geometry after the user's second mouse click -- resulting in a two point line segment. But what I seem to get is nothing. No geometry seems to be created at all. Any suggestions would be much appreciated. Thanks, Ed
... View more
05-17-2015
01:35 PM
|
0
|
2
|
4459
|
|
POST
|
So, it might not be the best way to do this, but a way I found to permit moving a point feature is to convert the geometry to an envelope right before the call to: Editor.EditGeometryAsync and when the edit is complete restore the geometry of the graphic to a point using Envelope.GetCenter(). Yes, the symbology of the graphic becomes an envelope during the actual editing of the geometry (the move) but it reverts to the original once the edit is complete. Ed
... View more
05-14-2015
06:51 PM
|
0
|
1
|
1011
|
|
POST
|
Hello - Am trying to allow editing (specifically a MoveGeometry) for a selected point graphic. This seems to work OK for selected polyline or polygon, but not points. Here's what I try to do - which is entirely based on an Esri code sample: var editConfig = Editor.EditorConfiguration; switch (m_selectedGraphic.Geometry.GeometryType) { case GeometryType.Polygon: case GeometryType.Polyline: editConfig.AllowAddVertex = true; editConfig.AllowDeleteVertex = true; editConfig.AllowMoveGeometry = true; editConfig.AllowMoveVertex = true; editConfig.AllowRotateGeometry = true; editConfig.AllowScaleGeometry = true; break; case GeometryType.Point: case GeometryType.Multipoint: editConfig.AllowAddVertex = false; editConfig.AllowDeleteVertex = false; editConfig.AllowMoveGeometry = true; editConfig.AllowMoveVertex = false; editConfig.AllowRotateGeometry = false; editConfig.AllowScaleGeometry = false; break; } var resultGeometry = m_selectedGraphic.Geometry; var progress = new Progress(); progress.ProgressChanged += (a, b) => { }; var g = m_selectedGraphic; g.IsVisible = false; var r = await Editor.EditGeometryAsync(g.Geometry, null, progress); HERE an error is thrown saying that the operation is not supported on the geometry type (Point). Is there some other way to edit point features? Any suggestions would be much appreciated. Thanks, Ed
... View more
05-12-2015
10:35 AM
|
0
|
2
|
4831
|
|
POST
|
Have been looking through the documentation and sample for guidance for creating a line symbol with decorations (such as an arrowhead or hash mark) at the beginning and ending of a new polyline. No luck so far. Any suggestions would be much appreciated. Thanks, Ed
... View more
05-11-2015
03:40 PM
|
0
|
0
|
3887
|
|
POST
|
Sorry for what seems to be a simple question, but am looking for the method within the JavaScript API that indicates whether a given graphic from the map graphic layer is selected or not. Any info would be much appreciated. Thx, Ed
... View more
02-28-2015
03:04 PM
|
0
|
1
|
4246
|
|
POST
|
OK. Think I found my problem. Not really an ArcGIS Pro thing. Just that the Windows $PATH variable got over the maximum 2,048 character limit and Windows started losing track of where it kept its family treasures. Reducing the $PATH variable to below this size has returned things back to normal (fingers crossed). Wonder if this was also the root of my ArcGIS Pro installation not working? (May try again later) Ed
... View more
10-25-2014
11:10 AM
|
1
|
4
|
2449
|
|
POST
|
Should installing ArcGIS Pro have any impact on my ArcGIS 10.2.1 installation? I tried installing ArcGIS Pro. Found I couldn't get it to work and un-installed it. Now my ArcMap installation seems to be behaving oddly... slower and pausing between operations. Am thinking I need to uninstall/re-install my ArcGIS. Is this my imagination? Any insights would be much appreciated. Thx, Ed
... View more
10-25-2014
10:28 AM
|
0
|
7
|
6614
|
|
POST
|
Found the problem. I was not getting the value for UserSubID correctly when setting barriers and flags. When corrected the routine now works fine. Ed
... View more
10-16-2014
10:04 AM
|
0
|
0
|
1140
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 2 weeks ago | |
| 1 | 05-14-2026 07:31 AM | |
| 1 | 05-11-2026 02:55 PM | |
| 1 | 01-07-2026 12:34 PM | |
| 1 | 01-04-2026 05:14 PM |
| Online Status |
Offline
|
| Date Last Visited |
Wednesday
|