|
IDEA
|
Kleinknecht, Jake I note in your above idea you say you can pass a coordinate through to survey123.com from collector; can you please explain how you are doing this? I have been able to work out how to pass attributes (fields) through from collector to survey123 using pop ups and customizing the hyperlink, but I am wanting to pass coordinates through instead of have the user use the geopoint location field where the user has to use the Pin to locate the item. Cheers!
... View more
09-12-2018
04:55 PM
|
0
|
1
|
954
|
|
IDEA
|
Kleinknecht, Jake I note in your above idea you say you can pass a coordinate through to survey123.com from collector; can you please explain how you are doing this? I have been able to work out how to pass attributes (fields) through from collector to survey123 using pop ups and customizing the hyperlink, but I am wanting to pass coordinates through instead of have the user use the geopoint location field where the user has to use the Pin to locate the item. Cheers!
... View more
09-12-2018
04:55 PM
|
0
|
1
|
1615
|
|
POST
|
Hey, In the past I have created my Survey123 forms using the Survey123 Connect for ArcGIS, this works well and has plenty of functionality. One thing I require when creating a form is being able to set the field as 'read only', and in the software I can do this simply in the excel doc: I am giving the form builder a go and I have hit a hurdle, I need to be able to set a single line text field as read only, but it doesn't seem to exist in the 'edit' pane. Does anyone know if this option has been made available yet ? Or do I have to go start from scratch, creating it using the Survey123 Connect for ArcGIS software? Cheers
... View more
09-12-2018
03:55 PM
|
0
|
2
|
2593
|
|
POST
|
Hi Dan, Thanks for the reply. I actually dont use the email link, so I am signed into community.esri.com and had trouble finding it. As you mentioned, I found the success button no worries, but couldn't easily see a 'correct' button. I will have another look with one of my other posts. Cheers
... View more
09-11-2018
06:19 PM
|
0
|
0
|
3131
|
|
POST
|
That blog post was a fantastic find, sorted out my issue. Thanks for sharing,
... View more
09-11-2018
06:13 PM
|
1
|
0
|
5257
|
|
POST
|
Dan Patterson I was unable to mark Xander Bakker as being correct, I could only mark as helpful and a success... has the "Mark as Correct" button been moved somewhere?
... View more
09-11-2018
06:07 PM
|
0
|
4
|
3131
|
|
POST
|
Hi Dan, I am unsure if I can do this as the data is a hosted feature layer, that resides on my ArcGIS Online Account. Can I run a GP tool on data that is hosted online? (I never even thought to try or that this would be possible???)
... View more
09-10-2018
04:20 AM
|
0
|
3
|
3131
|
|
POST
|
Hey, So we have our field guys conducting surveys, and one thing they do at each survey is take a photo of the asset. I can see all the data is being collected perfectly inside Arc , I can see attachments and attribute information. I then add this feature layer to ArcPro, I simply sign into my account within Pro, and add the layer through catalog. I then view the attribute table, there I can see each feature, but the Attachment column is omitted. I don't want to symbolise or anything using this column, I simply want to click on the hyperlink to view the photos. I have seen in the default pop-up that there is a thumbnail, but there is no way for me to click on it to view full size... any ideas? Cheers
... View more
09-09-2018
10:48 PM
|
0
|
10
|
4085
|
|
POST
|
I have the exact same issue with Portal for ArcGIS when trying to log into our portal, IE and Firefox work, chrome loads menu but the sign in boxes do not appear.
... View more
09-05-2018
04:12 AM
|
0
|
0
|
1204
|
|
POST
|
Hey, I found someone elses post on here that listed dozens of objects that arcpy can use, it can be found here - https://community.esri.com/thread/197110-how-to-introspect-a-describe-object#comment-696327 It is a very useful post too!
... View more
08-28-2018
10:26 PM
|
0
|
0
|
1263
|
|
POST
|
The purpose of this post is to help future me find these tools again, and hopefully if someone else out there in ESRI land is trying to find either of these two specific cases, you find this useful in your own situation. This is a very easy way for myself to list all tables within my enterprise SDE that are currently registered as versioned, its only a couple of lines of code, and I thought if someone is googling this that it may be able to help them: import arcpy
arcpy.env.workspace = r'Database Connections\GISADMIN@SDE_Spatial@SDE-DB.sde'
ds=arcpy.ListDatasets()
for d in ds:
for fc in arcpy.ListFeatureClasses(feature_dataset=d):
print '{}:alias={}'.format(fc,arcpy.Describe(fc).aliasName)
if arcpy.Describe(fc).isVersioned:
print(fc) Note: in these examples you will notice that I am listing all datasets, and then iterating over these, and passing the dataset into the ListFeatureClasses tool, this is because the ListFeatureClasses tool crashes in my environment, if I do not pass in a feature class. Its not the most efficient piece of code, but it doesn't crash. And this second piece of code iterates over the Database, and returns all Feature Classes that are yet to have editor tracking enabled on them, another item that may help a fellow ESRI user out: import arcpy
arcpy.env.workspace = r'Database Connections\GISADMIN@SDE_Spatial@SDE-DB.sde'
ds=arcpy.ListDatasets()
for d in ds:
for fc in arcpy.ListFeatureClasses(feature_dataset=d):
if not arcpy.Describe(fc).editorTrackingEnabled:
print(fc) Here is a bonus piece of code I find handy, it returns a print out of all "Datasets"|"FeatureClasses"|"Alias" import arcpy
arcpy.env.workspace = r'Database Connections\GISADMIN@SDE_Spatial@SDE-DB.sde'
ds=arcpy.ListDatasets()
for d in ds:
for fc in arcpy.ListFeatureClasses(feature_dataset=d):
print("{}|{}|{}").format(d,fc,arcpy.Describe(fc).aliasName) Cheers
... View more
08-28-2018
12:03 AM
|
1
|
2
|
1388
|
|
IDEA
|
I have tables in my AGOL organisation, and each time a user takes a photo or adds an attachment to a feature it is shown in the Photos and Files column (highlighted in the below image) I would love to be able to symbolise my features based on this column, for example large red dots if there are no attachments (0), and small green ones one there is > 0 attachments. This way the user can see which features have already been audited, and which ones haven't (i understand there are other ways to symbolise, but this would be very simple and efficient I think). Also we should be able to use this column to create labels, I would love the user to be able to zoom around my points, and if there is > 0 attachments then a label appear over the point showing the number of attachments to that feature. Reasonably simple ideas that would be very powerful if available to use. Nathan Duncan Jacob Brisolin Henry Clark
... View more
07-19-2018
03:41 PM
|
3
|
2
|
1172
|
|
IDEA
|
So when I have created my dashboard on AGOL (note: this idea should not be limited to Dashboards, but all content instead), I want to then copy the generated URL and send that URL to various people. I note there is a 'Share Link' item in the menu in the upper right hand corner, but what I would love to see is a little clipboard button on the side of that URL, whereby I click that button and it automatically puts that URL on my clipboard, ready to paste into other software. Currently looks like: What I would love to see:
... View more
07-09-2018
04:19 PM
|
8
|
0
|
621
|
|
IDEA
|
So when I have created my dashboard on AGOL (note: this idea should not be limited to Dashboards, but all content instead), I want to then copy the generated URL and send that URL to various people. I note there is a 'Share Link' item in the menu in the upper right hand corner, but what I would love to see is a little clipboard button on the side of that URL, whereby I click that button and it automatically puts that URL on my clipboard, ready to paste into other software. Currently looks like: What I would love to see:
... View more
07-09-2018
04:19 PM
|
8
|
0
|
523
|
|
POST
|
For anyone interested, below is the full code I used to do the following workflow: find all datasets within enterprise sde find only the datasets that have versioning applied ignore the dataset if it contains the string 'vegetation' unregister the dataset as being versioned # set workspace
arcpy.env.workspace = r'Database Connections\GISADMIN@SDE_Spatial@SDE-DB.sde'
# build list of datasets
datasets = arcpy.ListDatasets()
#iterate over datasets
for dataset in datasets:
# pull back information about the dataset
description = arcpy.Describe(dataset)
# ignore datasets that contain vegetation data
if 'vegetation' not in dataset:
# find if dataset is versioned
if description.isVersioned:
# unregister as versioned the dataset
arcpy.UnregisterAsVersioned_management(in_dataset=dataset,
compress_default="COMPRESS_DEFAULT"
) Thanks again for your help Dan.
... View more
07-08-2018
11:19 PM
|
3
|
0
|
2957
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 10-17-2018 08:51 PM | |
| 1 | 09-23-2018 07:38 PM | |
| 1 | 04-08-2019 10:05 PM | |
| 1 | 02-03-2019 03:06 PM | |
| 1 | 12-20-2019 07:16 PM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:24 AM
|