|
POST
|
Jamal West wrote: I shouldn't need to manually add the layer via sdk given that the ExecuteToolAsync is supposed to add the layer when it creates it. Using that means I have to generate the filename on the c#side or return it from my python tool. Do you know how to return it? In python I know how to generate unique file names, not in c# or the arcgis pro sdk. Agreed! Just showing you the way I know how. Yes I do think you can get the results from a python script over to the .NET, but the only way I personally would know how is if the python script is executed from the .NET solution. I think I have done this, let me take a look and think it over.
... View more
08-02-2019
11:06 AM
|
0
|
6
|
3629
|
|
POST
|
"a" is the path to the new layer created from the execution of the tool. await QueuedTask.Run(() =>
{
Map map = MapView.Active.Map;
LayerFactory.Instance.CreateLayer(new Uri(a), map);
});
... View more
08-02-2019
10:45 AM
|
0
|
13
|
3629
|
|
IDEA
|
Currently in Pro if your attribute is multi-lined you cannot see past the first line without editing or hovering it. In ArcMap you can simply change the cell height.
... View more
07-29-2019
10:49 AM
|
27
|
3
|
3130
|
|
POST
|
When you say short term work around do you mean that it is in the short term plan to be able to work with same annotation feature classes in both platforms?
... View more
07-29-2019
10:37 AM
|
0
|
1
|
5466
|
|
POST
|
Robert, 2.3 and 2.4. Weekly I get questions from users of how do I do this thing I could do in ArcMap in Pro. Most of the time it turns out you cannot. I see post on here everyday with the same problem. Many of the times it is simple things just like this. You would think be able to simply read an entire attribute wouldn't be a problem. Another big thing for us is that we cannot make it so it is only one ESRI platform our users will have to learn. With ArcMap and Pro annotations not being compatible on both it makes it very hard for us to justify spending this much on ESRI products much longer if we have to train everyone on both.
... View more
07-29-2019
09:58 AM
|
0
|
3
|
5466
|
|
POST
|
I doubt it. Details, results and message boxes are probably all just text capable. I have done something similar by using Tkinter to create a hyperlink button. Here is a link to the sample I used. You could also create a Task and have it create a popup with your html code.
... View more
07-25-2019
10:05 AM
|
0
|
0
|
1634
|
|
POST
|
There are several ways to do this. Use the Project tool in the Data Management Tools. Or right click the shapefile -> Data -> Export Features, in the Environments tab change the Output Coordinate System to the Geographic coordinate system you need.
... View more
07-25-2019
06:52 AM
|
3
|
0
|
6361
|
|
POST
|
You need to get creative in the name field. They have a ridiculous amount of keywords you cannot use, over 1000 of them and grows with each new release. "DATE" is one of them. Look around row 190 on the types sheet for the Reserved Keywords section.
... View more
07-25-2019
06:21 AM
|
0
|
1
|
1399
|
|
POST
|
How can I display multi-lined attributes in Pro? In ArcMap you do it by changing the cell height. It is NOT a wrap text scenario. It was created in the text properties (see below). I also have some other multi-line attributes which were created using python \n with the same problem. How can I change the appearance of the cell height in Pro? Is this just yet another thing they decided not to include in Pro? Text properties in ArcMap: How to change in ArcMap: Pro?: Kory Kramer
... View more
07-24-2019
12:37 PM
|
3
|
11
|
6763
|
|
POST
|
ArcGIS API for JavaScript Mentioned a group which could probably help you better. To clarify, do you mean you want to click a button first then click on the map to get the location?
... View more
07-23-2019
09:42 AM
|
0
|
0
|
1669
|
|
POST
|
This thread might be of some help. https://community.esri.com/thread/230605-how-do-i-remove-the-180th-meridian-line-on-my-map-of-russia
... View more
07-23-2019
09:29 AM
|
0
|
0
|
4717
|
|
POST
|
Sean, In the sdk pro concepts it has an example to cut still https://github.com/esri/arcgis-pro-sdk/wiki/ProConcepts-Editing. Will this example still work in 2.3 +. The second example shows Clip, Cut, and Planarize edits on a single feature also combined into a single edit operation: //Multiple operations can be performed by a single
//edit operation.
var op = new EditOperation();
op.Name = "Clip, Cut, and Planarize Features";
//Combine three operations, one after the other...
op.Clip(featureLayer, oid, clipPoly);
op.Cut(featureLayer, oid, cutLine);
op.Planarize(featureLayer, new List<long>() { oid});
//Execute them all together
await op.ExecuteAsync();
if (!op.IsSucceeded) {
//TODO: get the op.ErrorMessage, inform the user
}
... View more
07-23-2019
09:06 AM
|
0
|
1
|
3431
|
|
POST
|
They depreciated it for Split only, see this thread https://community.esri.com/thread/225070-ability-to-split-polygon-features-with-arcgis-pro-sdk . How ever if you go to the sdk editing concepts it still shows examples of cut and nothing about split https://github.com/esri/arcgis-pro-sdk/wiki/ProConcepts-Editing. So perhaps one can still write an add-in using cut as a work around? They should recreate a cut tool in Pro tool as it did not seem to be causing any problems. Go and vote https://community.esri.com/ideas/16837-cut-polygon-tool-for-pro.
... View more
07-23-2019
08:57 AM
|
1
|
1
|
4962
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 02-23-2026 09:28 AM | |
| 2 | 05-21-2026 09:21 AM | |
| 1 | 05-19-2026 02:25 PM | |
| 1 | 05-19-2026 08:11 AM | |
| 1 | 04-17-2026 01:08 PM |
| Online Status |
Offline
|
| Date Last Visited |
05-28-2026
06:06 AM
|