|
POST
|
Right click the field in the attribute table and open "Fields" -> Click on the Number Format and click the three dots (...).
... View more
07-22-2019
09:42 AM
|
10
|
1
|
32462
|
|
POST
|
https://github.com/Esri/arcgis-pro-sdk Download the examples. Map tool is the one you want. I believe under Map Exploration there is an actual map tool select example. To select only one I usually just add a message box if (_selectedFeature.SelectionCount > 1)
{
ArcGIS.Desktop.Framework.Dialogs.MessageBox.Show("Select One Point Only", "Try Again");
return;
} For linking your python code I have only found using a Python Toolbox works for me in the Pro SDK, not a stand alone script. Not saying it cannot be done. Put the Toolbox in the solution and call it by doing something like below. This is pretty much exactly the same as in the documentation for the SDK. public async Task<IGPResult> ExecuteModel()
{
var progDlg = new ProgressDialog("Running Geoprocessing Tool", "Cancel");
progDlg.Show();
var progSrc = new CancelableProgressorSource(progDlg);
var pathPython = System.IO.Path.GetDirectoryName((new System.Uri(Assembly.GetExecutingAssembly().CodeBase)).AbsolutePath);
pathPython = Uri.UnescapeDataString(pathPython);
System.Diagnostics.Debug.WriteLine(pathPython);
var tool_path = System.IO.Path.Combine(pathPython, @"ToolboxName.pyt\Tool");
var parameters = Geoprocessing.MakeValueArray();
IGPResult gp_result = await Geoprocessing.ExecuteToolAsync(tool_path, parameters, null, new CancelableProgressorSource(progDlg).Progressor);
Geoprocessing.ShowMessageBox(gp_result.Messages, tool_path, gp_result.IsFailed ? GPMessageBoxStyle.Error : GPMessageBoxStyle.Default);
return gp_result;
} I highly recommend the Extending ArcGIS Pro with Add-Ins instructor-led course. I only knew Python before I took it and was able to produce the Pro C# SDK Add-ins in no time at all.
... View more
07-03-2019
11:56 AM
|
1
|
0
|
1183
|
|
POST
|
Use the Feature Class to Feature Class with the Field Map parameter. To remove fields during processing, delete output fields from the Field Map. This will not affect the input.
... View more
07-03-2019
11:28 AM
|
1
|
0
|
1561
|
|
POST
|
Just found this on a reddit post. I have not tested it yet. We have one very picky user and want to have this information ready if needed. C:\Users\USERNAME\AppData\Local\ESRI\ArcGIS.Desktop.Config.daml https://www.reddit.com/r/gis/comments/9gl9vr/does_arcgis_pro_have_a_way_to_save_customization/
... View more
07-03-2019
11:13 AM
|
0
|
1
|
2564
|
|
POST
|
Did you ever find the equivalent of the normal.mxt for Pro?
... View more
07-03-2019
09:45 AM
|
0
|
3
|
2564
|
|
POST
|
I am looking for the same thing, but for recovery reasons. I have had several times over the last 15 years where a computer crashed and I had used a Sata to Usb hard drive converter cable to retrieve the normal.mxt so their customization's will be set up on the new machine. Is there an equivalent to the normal.mxt file for this purpose in Pro? I am not sure saving a Project Template every time they change the feel of their Pro projects is the answer.
... View more
07-03-2019
09:30 AM
|
0
|
0
|
4580
|
|
POST
|
How do I check and see if an annotation feature class has already been upgraded using python?
... View more
07-01-2019
06:19 AM
|
0
|
2
|
1199
|
|
POST
|
Interesting that the print leaves out anything after "PERMITS". Perhaps a Map cannot be named so many characters long or something?
... View more
06-27-2019
02:10 PM
|
0
|
0
|
3210
|
|
POST
|
You might want to call technical support. I just tried this about 20 times using your naming and some others and I was able to replicate it the same problem. However it only happened a few of the times, which was strange. I did nothing different when those few failed. Maybe a bug. Sorry I don't have more for you.
... View more
06-27-2019
01:52 PM
|
0
|
0
|
3210
|
|
POST
|
I think this is like a template to migrate your existing data into a more structured dataset. The data assistant tool is used to put your data into it.
... View more
06-26-2019
06:13 AM
|
0
|
0
|
1651
|
|
POST
|
Just add in the name of the map. mp = prj.listMaps("MapName")[0]
... View more
06-25-2019
12:04 PM
|
2
|
0
|
3210
|
|
IDEA
|
There is a need to be a way to revert back to ArcMap annotation. Sometimes you need to share data with those still on ArcMap, publish an old ArcMap, or just need to fall back because you find out Pro is just not going to work for you yet. At the very least make Pro Annotation readable in ArcMap.
... View more
06-25-2019
11:19 AM
|
37
|
5
|
3433
|
|
POST
|
Thank you. I will make sure to back everything up. The Annotation Upgrade nuking any ability to fall back to ArcMap, and possibly publishing, is my biggest hurdle for moving the organization to Pro. We really will have to go all in or not at all.
... View more
06-25-2019
11:12 AM
|
0
|
1
|
3140
|
| 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
|