|
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
|
1073
|
|
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
|
2940
|
|
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
|
2940
|
|
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
|
1455
|
|
POST
|
Just add in the name of the map. mp = prj.listMaps("MapName")[0]
... View more
06-25-2019
12:04 PM
|
2
|
0
|
2940
|
|
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
|
3192
|
|
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
|
2837
|
|
POST
|
I am going to start to upgrade the annotations in our databases and have some troubles, questions and concerns. 1. I read this in the documentation. "Feature classes in the same feature dataset as the ArcGIS Pro annotation are also read-only in ArcMap." So if I upgrade the annotation in our parcel fabric dataset, all points, lines, and polygons feature classes within that dataset will be uneditable in ArcMap? 2. Currently in Pro we cannot Publish Services to ArcGIS Server. So if we upgrade our Annotation, this annotation cannot be published? Can this be done in Python instead then? Did I read correctly that Publishing Services to Server in Pro will be possible in 2.4 as long as we are on Server 10.6.1? 3. Once upgrade is there anyway to export or make a copy of the annotation to be viewed in ArcMap? Just in case we edited a bunch of the upgraded annotation and later find that Pro is not going to work for us yet. If not is this something in the works for later releases? 4. I tried running this script in both the Old Catalog and within Pro and got these errors. I was testing it on a File Geodatabase before I use it on the sde database. None of my feature classes are empty. Script: import arcpy
arcpy.env.workspace = "C:/temp/JFKSCopy/JFKS_Copy.gdb"
arcpy.env.overwriteOutput = True
featClass = arcpy.ListFeatureClasses("","Annotation")
for row in featClass:
output = row + "_Pro"
copy = arcpy.CopyFeatures_management(row, output)
for rows in copy:
arcpy.UpgradeDataset_management(rows) Catalog error: Runtime error Traceback (most recent call last): File "<string>", line 5, in <module> File "c:\program files (x86)\arcgis\desktop10.5\arcpy\arcpy\management.py", line 5645, in UpgradeDataset raise e ExecuteError: ERROR 001267: Dataset type does not support upgrade. Pro error: Traceback (most recent call last): File "<string>", line 5, in <module> File "c:\program files\arcgis\pro\Resources\arcpy\arcpy\management.py", line 6117, in UpgradeDataset raise e File "c:\program files\arcgis\pro\Resources\arcpy\arcpy\management.py", line 6114, in UpgradeDataset retval = convertArcObjectToPythonObject(gp.UpgradeDataset_management(*gp_fixargs((in_dataset,), True))) File "c:\program files\arcgis\pro\Resources\arcpy\arcpy\geoprocessing\_base.py", line 498, in <lambda> return lambda *args: val(*gp_fixargs(args, True)) arcgisscripting.ExecuteError: ERROR 002577: Upgrading annotation requires at least one annotation class and symbol. Failed to execute (UpgradeDataset).
... View more
06-25-2019
09:51 AM
|
0
|
4
|
3069
|
|
POST
|
Did you ever figure out any good settings? Everything I have tried the color is terrible. Hopefully the camera will be added to the next version.
... View more
06-20-2019
11:15 AM
|
0
|
0
|
7556
|
|
IDEA
|
Currently there is no Cut Polygon Tool for Pro and you have to use Split or Divide. The problem with Split or Divide is the attributes are constrained by the domain split policy. The default for this is to NOT duplicate the attributes. So when you use the Split tool you lose of all your attributes as a default. ArcMap users never had to worry about this because the Cut Polygon Tool was mostly used and it keeps your attributes, it is not constrained by the domain split policy. The Split in ArcMap was only for those with Advanced licenses. If you have a lot of databases with domains you now need to go and change the domain split policy for every feature you want to keep the attributes when you split.
... View more
06-19-2019
09:46 AM
|
81
|
6
|
8540
|
|
POST
|
Thanks. I guess my confusion is when I edit in ArcMap this behavior does not happen. Well I guess more importantly can we get a Cut tool for Pro? So if we have something like over 50 databases with hundreds of features now we have to go through them all and change every single one? Or do I only need to worry about the ones which have domains? This was not an issue with the Map Cut Tool. Split was only available in Map with an Advanced license and a majority of users used Polygon Cut as there main editing tool, which is not available in Pro I don't think. It even looks like the Divide tool is constrained by the domain split policy. We need a tool which can Cut which does not have this constraint. https://community.esri.com/ideas/16837-cut-polygon-tool-for-pro
... View more
06-19-2019
09:11 AM
|
2
|
1
|
4428
|
|
POST
|
Kory Kramer I would also like to know if this is a bug and not to be the expected behavior in future versions.
... View more
06-18-2019
07:16 AM
|
2
|
3
|
9238
|
|
POST
|
In my first reply in this thread is an example. I used XLSForms to design my survey. Check out ESRI Training, there are a lot of good classes.
... View more
06-13-2019
06:14 AM
|
0
|
0
|
447
|
|
POST
|
Embed it as a hyperlink including all the parameters you want to pass to Survey123 into the popup. We have a crew that collects location data and need to answer extra questions that do not need to be a part of the feature. I use this information in Survey123 to create custom made reports with information required for other agencies.
... View more
06-11-2019
05:57 PM
|
0
|
2
|
2564
|
|
POST
|
It looks like the section "Specifying Custom Parameters" is new in the latest documentation and not found in 10.3, perhaps a clue in the Notes section. http://desktop.arcgis.com/en/arcmap/latest/map/web-maps-and-services/using-wms-service-layers.htm
... View more
06-11-2019
06:42 AM
|
0
|
0
|
2184
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 4 weeks ago | |
| 1 | 03-23-2026 08:11 AM | |
| 1 | 03-23-2026 07:55 AM | |
| 7 | 03-18-2026 12:15 PM | |
| 1 | 03-11-2026 07:51 AM |
| Online Status |
Online
|
| Date Last Visited |
15 hours ago
|