|
POST
|
Try keeping the traversability section of the trace configuration the way you normally would for an upstream trace, and enter a Filter to stop at overhead fuses.
... View more
08-17-2022
08:19 AM
|
1
|
1
|
2129
|
|
POST
|
The time difference here is alarming and unexpected. Do you have fiddler installed? I'm wondering if you could examine the call to update subnetwork that is generated by the Pro SDK and see if it matches what happens when you manually call it? Is the Pro SDK updating multiple subnetworks? --Rich
... View more
08-17-2022
08:17 AM
|
0
|
1
|
5092
|
|
POST
|
Sean, Have you watched this video from the 2022 DevSummit? This session provides a survey of the different options for writing custom tools and applications against the utility network- Pro, Runtime, Enterprise, and JavaScript. --Rich
... View more
08-15-2022
10:45 AM
|
1
|
2
|
1372
|
|
POST
|
Branch versioning does not support multiple concurrent editors against a single version. When you are updating a subnetwork with a direct REST call it's creating a second editing session. That's the source of the schema lock errors. Have you tried using the Pro SDK to update the subnetworks rather than REST?
... View more
08-12-2022
01:35 PM
|
1
|
1
|
5125
|
|
POST
|
While I don't work on the geoprocessing team, I have not heard of any plans. There really shouldn't be any problem working with the default ("memory") memory geodatabase. If you're concerned about memory usage, you could always delete the tables that you have created when you are finished with them. Creation is a bit tricky at the moment, because the code to do so is different depending on whether or not you have run a geoprocessing tool using "memory" already. Here's the workaround we shared at DevSummit: Geodatabase geodatabase; try { geodatabase = new Geodatabase(new MemoryConnectionProperties()); } catch { geodatabase = SchemaBuilder.CreateGeodatabase(newMemoryConnectionProperties()); } (We're fixing this at 3.1)
... View more
07-29-2022
11:52 AM
|
0
|
0
|
1311
|
|
POST
|
Dkuida, The Pro SDK allows you to create multiple memory geodatabases, each with an arbitrary name, as you have shown in your code above. Geoprocessing, on the other hand, only supports one memory geodatabase, called "memory", which can be created with either of these two lines: MemoryConnectionProperties() MemoryConnectionProperties("memory") Ken's reply shows how to create and use this memory geodatabase with geoprocessing. --Rich
... View more
07-29-2022
11:24 AM
|
0
|
0
|
616
|
|
POST
|
Chained edit operations are typically used when the results of one call to Execute are needed for a subsequent call. Maybe I'm missing something, but that doesn't seem to be the case here. Could you try restructuring the code like this: Create an edit operation For each feature in the selection set Create a copy, and call editOp.Create Call editOp.Execute once at the end
... View more
07-27-2022
10:41 AM
|
0
|
1
|
1365
|
|
POST
|
Hi Brett, Just to confirm- you're using the EditOperation class to duplicate the features, right? Could you send us the EditOperation code that you use in your tool? Thanks, --Rich
... View more
07-27-2022
09:25 AM
|
0
|
2
|
1375
|
|
POST
|
Yes. Attribute rules are written using a scripting language called Arcade, which provides a function called GetNextSequenceValue(). More information on attribute rules can be found starting here. --Rich
... View more
07-13-2022
09:35 AM
|
0
|
2
|
2128
|
|
POST
|
I'll add that you should take a look at attribute rules. These are scripts that you can configure on a geodatabase that run in response to edit events on specific feature classes or subtypes. Doing a spatial query and assigning a value to an attribute is exactly what they are designed to do. Attribute Rules also work cross-platform, and will fire outside of ArcGIS Pro (e.g., runtime and server) --Rich
... View more
07-12-2022
10:21 AM
|
1
|
1
|
2158
|
|
POST
|
This snippet shows how to calculate the Sum and Average of a set of fields.
... View more
06-13-2022
12:06 PM
|
0
|
0
|
611
|
|
POST
|
Hi Shabina, Table.Search doesn't support functions such as "Min()". Check out the Table.CalculateStatistics method instead. API class reference Conceptual doc I hope this helps, --Rich
... View more
06-10-2022
09:48 AM
|
0
|
1
|
645
|
|
POST
|
Hi Karthik, You can create a Geodatabase object from a feature service by creating a ServiceConnectionProperties object. You can then instantiate a Geodatabase using the Geodatabase(ServiceConnectionProperties) constructor. Once you have a Geodatabase you can proceed as described above. I hope this helps, --Rich
... View more
05-24-2022
10:39 AM
|
0
|
1
|
3567
|
|
POST
|
Hi Ken, Your code just makes the edit and adds it to the undo/redo stack. If you want to save your edits, call Project.Current.SaveEditsAsync() --Rich
... View more
05-19-2022
02:34 PM
|
0
|
1
|
1385
|
|
POST
|
Does your webmap include subtype group layers? You can publish a webmap with subtype group layers and use it with Pro or Runtime, but the Map Viewer does not yet support them. --Rich
... View more
05-19-2022
10:44 AM
|
1
|
0
|
1752
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 3 weeks ago | |
| 2 | a month ago | |
| 1 | 07-17-2025 08:47 AM | |
| 1 | 08-12-2022 01:35 PM | |
| 1 | 06-28-2018 04:25 PM |
| Online Status |
Offline
|
| Date Last Visited |
3 weeks ago
|