|
POST
|
i had to remove two layers from my map and re-add them and it worked fine thanks Stu
... View more
10-14-2019
08:34 AM
|
0
|
0
|
1770
|
|
POST
|
has anyone see this issue when trying to configure a popup's attributes, i just get 'sorry, an error occurred' it works find on other layers just this one. thanks Stu
... View more
10-14-2019
08:33 AM
|
0
|
2
|
1135
|
|
POST
|
this worked for me but now my map wont open but i've moved on a step many thanks Stu
... View more
10-08-2019
05:33 AM
|
0
|
2
|
1770
|
|
POST
|
Hi, i've searched everywhere (well everywhere i can think off) and i am struggling, back when i had ArcMap 10 you could create an local SQL express DB but i can't seem to find the same in ArcGIS Pro. i've installed SQL Server Dev edition and can connect Pro to it, i can create a feautre class in the SQL DB, i can copy a feature class to the SQL DB but when add it into pro to update / create new features its added as a query layer and i cant edit it i am guessing i've done it wrong some how.... Stu
... View more
09-18-2019
11:20 PM
|
0
|
21
|
14988
|
|
POST
|
I created a replica from an Agol feature service with bidirectional sync but now I want to drop it but I can’t find the guid of the replica, I tried the replicas api but it said that there were none... ive since tried to create a new replica on the same feature service but it fail Error:Error in processing replica sync request. any ideas? stu
... View more
09-04-2019
02:01 PM
|
0
|
0
|
983
|
|
IDEA
|
this would be a great addition to Survey123, we have a lot of surveys that are started but because we can't get access to complete have to save the survey and then when we do get access we download the survey from the inbox but we can't add any photos. the repeats workaround is ok but it would be nicer to be able to add / edit from a single photo question Stu
... View more
08-28-2019
05:05 AM
|
0
|
0
|
5161
|
|
POST
|
thanks Dan that worked a treat UpdRPoint = arcpy.da.UpdateCursor(NearXY_Lyr, ["DESCRIPTION_1","SHAPE@XY"])
for RP in UpdRPoint:
Desc_1 = RP[0]
x, y = RP[1]
messages.addMessage("{}, {}".format(x, y))
... View more
08-15-2019
02:43 AM
|
1
|
0
|
1706
|
|
POST
|
I'm using an update cursor to populate some fields which works fine but i want to get the XY of the point at the same time but i get an error: 999999: Error executing function this is my code: UpdRPoint = arcpy.UpdateCursor(NearXY_Lyr)
for RP in UpdRPoint:
Desc_1 = RP.getValue("DESCRIPTION_1")
x, y = RP.getValue("SHAPE@XY")
messages.addMessage("{}, {}".format(x, y)) any ideas why its not working?
... View more
08-15-2019
02:02 AM
|
0
|
2
|
1838
|
|
POST
|
i've done a search but couldn't see anything i have a feature service which has about 5 point features and 5 tables, and i want to add the data (both the points and tables) into ArcMap but the tables never get added to the map even on the source tab where i would expect them to be... i have tried: open it from ArcMap by 'add data from ArcGIS Online' open it from the ArcGIS online, 'open in arcgis desktop' both give the same results in that they only add the point layers and the tables are not added. if i create a map in ArcGIS online and add in the feature service (points and tables) save the map and then from ArcGIS online open the map in desktop it works and add's in all the points and the tables is there another way? i would rather not have to do it via a ArcGIS Online Map, can i just manually add in the tables? thanks Stu
... View more
08-14-2019
02:35 AM
|
0
|
3
|
2082
|
|
POST
|
i've just checked and its working now, i don't think our team has had any issues this week Stu
... View more
08-14-2019
01:45 AM
|
0
|
1
|
651
|
|
POST
|
thanks Zhifang, yea our users seem to be working fine now Stu
... View more
08-06-2019
06:22 AM
|
0
|
0
|
3171
|
|
POST
|
its just started working for us too which is strange... as ive not changed anything since my last error message maybe ESRI have fixed it Stu
... View more
08-06-2019
06:15 AM
|
0
|
0
|
3171
|
|
POST
|
so i have enabled credit budgeting tools and given myself no limit and it still gives that error is anyone else having this issue? Stu
... View more
08-06-2019
03:49 AM
|
0
|
3
|
3171
|
|
POST
|
we seem to be having some issues with being able to create reports in Survey123, we have a custom role but have turned on the 'Feature report' setting but the users an error about credits, do i need to Enable credit budgeting tools? Stu Role: Error:
... View more
08-06-2019
02:30 AM
|
0
|
12
|
4340
|
|
POST
|
this might help Stu #!/usr/bin/env python
# -*- coding: utf-8 -*-
import arcpy
from arcpy import env
import os
env.workspace = "h:\Connection.sde"
datasets = arcpy.ListDatasets("*", "All")
# Write the name of the current fc in text file:
txtFileFC = open("H:\ListAll_FC.txt","w")
txtFileFC.write('Dataset|Type|FeatureClass Name|Record Count')
txtFileFC.write (os.linesep)
# Write the name of the current fields fc in text file:
txtFileFields = open("H:\ListAll_Fields.txt","w")
txtFileFields.write('Dataset|Type|FeatureClass Name|Field Name|Alias Name|Data Type|Required|Length|Domain')
txtFileFields.write (os.linesep)
# Write the name of Domains text file:
txtFileDomains = open("H:\ListAll_Domains.txt","w")
txtFileDomains.write('Domain Name|Domain Type|Coded Value|Alias Name|Min Range|Max Range')
txtFileDomains.write (os.linesep)
##----------------------------------
## List Features in Datasets
for dataset in datasets:
for fc in arcpy.ListFeatureClasses('','',dataset):
RecCount= '0'
##--- uncomment for counts
arcpy.MakeTableView_management(fc, "myTableView")
RecCount = arcpy.GetCount_management("myTableView").getOutput(0)
arcpy.Delete_management("myTableView")
##--- uncomment for counts
# Write messages to a Text File
txtFileFC.write(dataset+'|FC|'+fc+'|'+RecCount)
txtFileFC.write (os.linesep)
for field in arcpy.ListFields(fc):
# Write messages to a Text File
txtFileFields.write(dataset+'|FCField|'+fc+'|'+format(field.name)+'|'+format(field.aliasName)+'|'+format(field.type)+'|'+format(field.required)+'|'+format(field.length)+'|'+format(field.domain))
txtFileFields.write (os.linesep)
##----------------------------------
#close text file
txtFileFields.close()
txtFileFC.close()
... View more
07-16-2019
08:29 AM
|
0
|
0
|
2984
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 07-16-2025 02:25 AM | |
| 1 | 09-08-2025 07:14 AM | |
| 8 | 07-17-2025 01:23 AM | |
| 3 | 07-04-2025 02:55 AM | |
| 1 | 06-27-2025 03:41 AM |
| Online Status |
Offline
|
| Date Last Visited |
04-17-2026
05:42 AM
|