|
POST
|
thanks Jayanta, yea i've followed the workflow, i have asked one of the users to clear their cache to see if that works, i'll post an update later on Stu
... View more
06-27-2017
08:18 AM
|
0
|
3
|
8580
|
|
POST
|
Hi Adrian, thanks for the quick reply, they don't get any option to export, all they get is: 'open in map viewer' 'open in scene viewer' 'open in ArcGIS desktop'
... View more
06-27-2017
08:07 AM
|
0
|
0
|
8580
|
|
POST
|
help, i have a feature layer stored in ArcGIS Online and i can export it no problem (but them i am the administrator) but my other users can't export the data, they don't get the option even thought i have enabled "Allow others to export to different formats." what am i missing? thanks Stu
... View more
06-27-2017
07:02 AM
|
0
|
8
|
10071
|
|
POST
|
Thanks Jake i've had a quick read of the links and they look like they will work, i'll have a play over the next day or so
... View more
06-05-2017
05:38 AM
|
0
|
0
|
2332
|
|
POST
|
Hi Jake, thanks for the quick reply i tried that but i get an error, saying it "can't create a local copy" ideally i am looking for a way to do it via python so i can get it to process the data overnight without any intervention thanks Stu
... View more
06-05-2017
12:47 AM
|
0
|
2
|
2332
|
|
POST
|
i have a feature service (point feature class and a few related tables) in AGOL can i create a local replica from it, i basically want to play with the data locally and then update a few things and sync any updates back to AGOL thanks Stu
... View more
06-02-2017
07:28 AM
|
0
|
4
|
4042
|
|
POST
|
Has anyone tried using the pull data to identify the closest point of another dataset to the geopoint and retrieve a value something like the near toolbox function in arcmap. It's a bit like using the pulldata function and a calculation in one go that takes the current location of the geopoint and calculates the distance to a list of points within a csv file and then returns their site name thanks Stu
... View more
05-25-2017
07:47 AM
|
3
|
16
|
11827
|
|
POST
|
Thanks James, I'm using desktop 10.3.1 but hopefully I'll have pro in a week or two so I'll try that thanks stu
... View more
05-15-2017
10:50 AM
|
0
|
0
|
911
|
|
POST
|
So i've create a survey with a repeating section, when its published into ArcGIS Online it creates a point feature and a related table. what i want to do is append some data into both the point FC and the related table, but i cant seem to get be able to show / edit the FC & table in desktop. firstly i tried opening the survey in desktop all i get is the point feature class, i then tried creating an online map with both the point class and the related table in it and then opening that in desktop as well this does show both the point FC and the related table, but when i try to 'create a local copy for editing' i get an error (screen shot below) has anyone managed to get this to work? thanks
... View more
05-11-2017
12:51 AM
|
0
|
2
|
1607
|
|
POST
|
Hi ive noticed some interesting behaviour in collector on iOS, I have a map with an os open raster base map with about 12 feature layers. When I first get to an area I can see everything but as a zoom in I get to a point where some of my features disappear. I've checked the scale ranges and they should all show when zooming into their lowest scale has anyone else seen this and managed to resolve it? thanks Stu
... View more
05-05-2017
11:36 AM
|
0
|
0
|
1168
|
|
POST
|
how do you select today from a date field in survey123 on iOS (iPhone)? if i tap the date field the date calendar opens, and today's date is filled with a grey box, if i tap today's date the calendar closes but no date is shown in the field. the only way i can see is select a different date and then change it to be today's date, or default it to today and hope that the users remember to select the correct date if its different to today. has anyone else had this issue? thanks Stuart
... View more
04-26-2017
05:52 AM
|
0
|
3
|
1323
|
|
POST
|
figured it out, my calculation was wrong (had the x & y the wrong way around) pulldata("@geopoint", ${GeoLoc}, "y")+" "+pulldata("@geopoint", ${GeoLoc}, "x")
... View more
04-13-2017
04:10 AM
|
1
|
0
|
2217
|
|
POST
|
Hi, i'm creating a survey with a repeating section and i want it to be created as a related point feature rather than a related table. i have managed to get this bit to work by just adding another GeoPoint into the repeating section, but i also want it to default it to the same location as the main GeoPoint , i have tried adding a calculation to the second GeoPoint pulling the xy from the first but it doesn't seam to work the point just stays at 0,0 my calculation against the second geopoint is as follows where [GeoLoc] is the first geopoint pulldata("@geopoint", ${GeoLoc}, "x") + " " + pulldata("@geopoint", ${GeoLoc}, "Y") i also added in an X & Y field into the repeat section using the pulldata and it populates matching that of the main point has anyone else managed to get this to work? thanks Stu
... View more
04-13-2017
02:50 AM
|
0
|
4
|
2823
|
|
POST
|
Hi, ive created the below code to create a polygon grid 2 squares wide and 1 high, the code works fine and creates the grid with the attributes but when i select one of the squares in arcMap the highlight selects both (screenshot attached) any ideas as to what ive done wrong? Thanks Stu import arcpy
cur = arcpy.InsertCursor("c:/PY123.shp")
point = arcpy.Point()
array = arcpy.Array()
for x in range(2):
for y in range(1):
point.X = x
point.Y = y
array.add(point)
point.X = x+1
point.Y = y
array.add(point)
point.X = x+1
point.Y = y+1
array.add(point)
point.X = x
point.Y = y+1
array.add(point)
point.X = x
point.Y = y
array.add(point)
array.add(array.getObject(0))
feat = cur.newRow()
feat.setValue("Col", x)
feat.setValue("Row", y)
feat.shape = arcpy.Polygon(array)
cur.insertRow(feat)
array.removeAll()
del cur
... View more
02-24-2013
11:33 AM
|
0
|
1
|
870
|
| 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 |
2 weeks ago
|