|
POST
|
I tried the arcade function above and ran into an issue (possible bug) between SQL enterprise geodatabase and a file geodatabase. The script worked in the file geodatabase but not in the enterprise geodatabase where it gave the error "expecting a mutable array". NOTICE I added the Number function to the field value being passed in. function NorthAzimuth2Quadbearing(azimuth){ return ConvertDirection( azimuth, {'directionType':'North', 'angleType': 'Degrees'}, {'directionType':'Quadrant', 'angleType': 'DMS', 'outputType': 'text', 'format': 'pd[°]mm[\']ss["]b'}) } NorthAzimuth2Quadbearing(Number($feature.Direction)) After some research looking at the tables in SQL we decided that maybe it wasn't finding the recently added fields. We compressed the SQL geodatabase and the above Arcade expression then worked in ArcGIS Pro Field Calculator even without the Number function. Which leads me to think maybe the Arcade function isn't accessing the evw files correctly in SQL ??
... View more
11-22-2023
07:39 AM
|
0
|
0
|
582
|
|
IDEA
|
I was recently using this arcade function and ran into an issue (possible bug) between SQL enterprise geodatabase and a file geodatabase. I was converting DMS to Degrees and likely the other way around too. The script below worked in the file geodatabase but not in the enterprise geodatabase where it gave the error "expecting a mutable array". Function DMS2DD(theTextAngle){ return ConvertDirection(theTextAngle, {'angleType':'dms','directionType':'north'},{'outputType':'value','angleType':'degrees','directionType':'north'}) } -DMS2DD($feature.TEXTANGLE) After some research looking at the tables in SQL we decided that maybe it wasn't finding the recently added TEXTANGLE field. We compressed the SQL geodatabase and the above Arcade expression then worked in ArcGIS Pro Field Calculator.
... View more
11-22-2023
07:28 AM
|
0
|
0
|
1111
|
|
IDEA
|
Great! All we need is the traverse from sketch, or can you do that now too? Honestly, it's been awhile since I checked.
... View more
11-06-2023
01:50 PM
|
0
|
0
|
2236
|
|
IDEA
|
It would be really nice if you could give the same functionality as what was available in Arcmap so that we can all use COGO entries whether implementing a parcel fabric or not. I have used them for years without a parcel fabric and would really like to continue doing so. Why would it matter to ESRI if a user wanted to enable the feature class or not? Rather then explaining why I want them, could you please explain why ESRI took functionality away from the tools that existed previously? Load from sketch, used it all the time. COGO is useful for many other features besides parcels. It may seem like a simple thing to say just enable the feature classes, but it isn't always that simple. There is a whole downstream affect when you start changing field names and domains, etc.. Because these things are not available in Pro, I still use Arcmap for several editing workflows.
... View more
11-06-2023
12:51 PM
|
0
|
5
|
2322
|
|
IDEA
|
I would just like to add to these comments it would be really nice if you could add similar tools as what was available in Arcmap so that we can all use COGO entries whether implementing a parcel fabric or not. I have used them for years without a parcel fabric and would really like to continue doing so. Obviously, the pro people at ESRI have made the calculation there is some other way to do this by enabling your feature classes, I'm not sure why that is so important to you. Many of us would just like to use the feature without doing that. Also, the load from sketch option is something I've used for years for many different reasons and many different features, from utilities to various parcel layers. Rather then explaining why I want them, could you please explain why ESRI refuses to give the tools we had before? Because these things are not available in Pro, I still use Arcmap for several editing workflows.
... View more
11-06-2023
12:18 PM
|
0
|
0
|
3314
|
|
POST
|
I have arcade expression that work fine in a browser, but now in Field maps it is opening the the image rather then the link! They worked fine previously at some version and I just noticed they weren't working, so downloaded the latest version of Field Maps, but instead of going to the link it opens the link image. This is really quite just nuts.
... View more
08-14-2023
05:58 AM
|
0
|
1
|
3264
|
|
POST
|
I can tell you this, you'll need to use the arcgis API for Python, the link they pointed the initial poster to was for older python functions from Arcmap. you'll need to get to this hosting_servers=gis.admin.servers.get(role="HOSTING_SERVER") to get a DataStoreManager = hosting_servers[0].datastoresDataStoreManager I used this with a csv containing the parameters dstores = hosting_servers[0].datastores inputFile = r"\\mypathto\The.csv" try: with open(inputFile, 'r') as newDSFile: DSdict_csv = csv.DictReader(newDSFile) for dstore in DSdict_csv: print("Adding the " + dstore['dsType'] + " datastore: " + dstore['dsName']) if dstore['dsType'] == 'FOLDER': item = dstores.add_folder(dstore['dsName'],dstore['dsServerPath']) if item: print(str(item.properties) + '\n') elif dstore['dsType'] == 'DATABASE': con = dstores.generate_connection_string(dstore['dsServerPath']) item = dstores.add_database(dstore['dsName'],con) if item: print(str(item.properties) + '\n') except Exception as Ex: print(str(Ex))
... View more
03-12-2023
01:13 PM
|
0
|
0
|
1127
|
|
POST
|
I have essentially the same question! Not sure why it needs to be a hosted feature layer? I noticed one other thing since upgrading enterprise to 9.1. https://enterprise.arcgis.com/en/portal/latest/use/data-store-items.htm I'm wondering if creating an item from the server registered datastore would allow for the download functionality that exists for hosted data?
... View more
07-15-2022
07:01 AM
|
1
|
0
|
5344
|
|
POST
|
The thing I'm not finding is the ability to "Load Traverse From Sketch" which is very handy for me to edit the length of existing line segments.
... View more
07-13-2022
10:09 AM
|
1
|
0
|
3765
|
|
IDEA
|
Yes, you can set multiple fields to search, but only one field displays! Could just use the Popup from the map layer too!
... View more
08-19-2021
12:22 PM
|
0
|
0
|
788
|
|
POST
|
I can add this bit of info, in our case we are using a redirected URL for our portal and server web adaptors. The enterprise installation (portal,server,etc) exist on the same virtual machine as the License server.
... View more
08-19-2021
07:12 AM
|
0
|
0
|
3015
|
|
POST
|
That is exactly what I had to do, and you'll notice after doing that the service.txt file is changed to reflect the difference on the SERVER line.
... View more
08-19-2021
07:06 AM
|
0
|
0
|
5455
|
|
POST
|
So what we did to solve our issue was to use the MAC address rather than the Cloud Instance, even though their instructions say to use the instance if it exists. Not really sure why that is, but works fine since we made the created a new license file with the change.
... View more
08-19-2021
06:53 AM
|
3
|
3
|
5459
|
|
POST
|
Ok, so the enterprise portal and server versions are 7.0, I believe we had License Server Admin 2019, then 2020, currently 2021. I think the license server got upgraded each time as a dependency for newer versions of ArcGIS Pro being used. One thing we have recently tried is inserting a new service.txt file with just 3 lines, then reauthorizing the named user licenses for portal using the json. Upon logging in this morning that didn't solve the issue. I still had to log onto the server and reread licenses, then it works at least for the day.
... View more
07-19-2021
06:06 AM
|
1
|
0
|
5529
|
|
POST
|
We have Enterprise 7.0 federated portal with SAML logins with a redirected URL running on Windows Server 2019. I log into ArcGIS Pro with my domain acct. which is setup as an admin in Portal. Since upgrading the License server administrator I have to log into the Server machine and manually re-read licenses each morning before I can open Pro. Any helpful ideas appreciated. I have noticed this in the debug log for License Server Admin: 1:30:38 (ARCGIS) Wrong hostid on SERVER line for license file: 1:30:38 (ARCGIS) C:\Program Files\ArcGIS\LicenseManager\bin\service.txt 1:30:38 (ARCGIS) SERVER line says VM_UUID=E0C007B4-AE71-489E-ABE9-C6350F48EE93, hostid is VM_UUID=E0C007B4-AE71-489E-ABE9-C6350F48EE93 1:30:38 (ARCGIS) Invalid hostid on SERVER line 1:30:38 (ARCGIS) Disabling 1 license from feature ACT(0E33 13F7 49BF 4183 ) 1:30:38 (ARCGIS) Disabling 3 licenses from feature desktopAdvN(0686 4471 3FA4 0688 ) 1:30:38 (ARCGIS) Disabling 3 licenses from feature publisherN(0825 F8CA 41CD 73B4 )
... View more
07-14-2021
06:59 AM
|
1
|
11
|
6330
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 04-01-2025 12:20 PM | |
| 1 | 07-22-2024 12:05 PM | |
| 1 | 05-16-2024 11:54 AM | |
| 1 | 05-20-2024 01:16 PM | |
| 2 | 05-16-2024 09:32 AM |
| Online Status |
Offline
|
| Date Last Visited |
2 weeks ago
|