|
POST
|
Thanks Christopher. You're right - on checking my original assumption I was mistaken and it seems a view is not required (which would have been strange!). The only setting needing ticked was - 'Keep track of changes to the data (add, update, delete features).' this then made the 'Webhooks' option available in the rest/admin page of the service. (also I previously said JSON which was me getting confused again..).
... View more
12-18-2024
06:12 AM
|
1
|
0
|
2079
|
|
POST
|
Hi, In AGOL I have a hosted feature service layer created by a Survey123 published form. Trying to create a feature service webhook in AGOL (don't want to do this in Survey123 because another API will be interacting with the layer outside of the 123 app). It seems a view must first be created to allow a webhook to be set in the JSON REST settings. Seems a bit of a strange requirement to me. Can anyone shed any light on this and/or the rationale behind it. Thanks!
... View more
12-17-2024
02:48 PM
|
1
|
2
|
2144
|
|
POST
|
Hi, Within the Survey123 site the sharing (collaboration) options can be set to control who can see what. e.g. not everyone should see other's submissions, or be able to edit etc. This seems to be reflected in the ArcGIS ONline AGOL feature service which the surveys are written too (which makes sense). 1. Are the settings applicable the same in either the 123 website or AGOL? 2. Is one recommended or no difference? 3. Different permissions generate the *_results layer. I'm keen to understand the rationale and what triggers this view layer creation. Thanks!
... View more
12-17-2024
02:44 PM
|
0
|
0
|
465
|
|
POST
|
Ah I'm still not really getting it. Completely open to being dense here! No I'm pretty sure it can't be negative and that's been detailed somewhere in an arcane document. Logically I think we have to assume that anything 'below' the DSM surface is not visible. If the observer is in a forest we surely have to assume they can't be seen or see out of it and it's not a valid location for an observer in the first place.
... View more
12-17-2024
12:57 PM
|
0
|
0
|
2607
|
|
POST
|
It's all in the second link I shared https://community.esri.com/t5/geoprocessing-documents/spatial-join-s-hidden-trick-on-how-to-transfer/ta-p/1050240
... View more
12-17-2024
12:12 PM
|
0
|
0
|
1301
|
|
POST
|
You might be able to open it up like a zipfile and see .geodatabase contents and do some wrangling. I'm not sure if these files are somewhat different from Mobile Geodatabases and are 'Runtime' geodatabases with certain limitations (such as editing). Would be interested to know more about what's inside of the MMPKs and what might be possible.
... View more
12-17-2024
12:08 PM
|
0
|
1
|
3163
|
|
POST
|
This old blog details how to accomplish it in ArcMap https://esriaustraliatechblog.wordpress.com/2015/06/22/spatial-joins-hidden-trick-or-how-to-transfer-attribute-values-in-a-one-to-many-relationship/ also detailed in the thread here with ArcGIS Pro usage tips: https://community.esri.com/t5/geoprocessing-documents/spatial-join-s-hidden-trick-on-how-to-transfer/ta-p/1050240
... View more
12-17-2024
11:52 AM
|
0
|
0
|
1309
|
|
POST
|
var score_s = $feature.SCORE_S
var score_o = $feature.SCORE_O
if (score_s > 0 && score_o > 0 ) {
return "Both";
} else if (score_s > 0 && score_s < 10) {
return "Structural 9";
} else if (score_s >= 10 && score_s < 30) {
return "Structural 29";
} else if (score_s >= 30) {
return "Structural 30+";
} else if (score_o > 0 && score_o < 10) {
return "Operational 9";
} else if (score_o >= 10 && score_o < 30) {
return "Operational 29";
} else if (score_o >= 30) {
return "Operational 30+"
} I think that should give you an idea of what to add for 'Both' using the above sample.
... View more
12-17-2024
10:05 AM
|
0
|
0
|
1157
|
|
POST
|
I don't entirely understand. A DSM is inclusive of the DEM/DTM bare-earth features when there are not man-made or natural features upon that bare-earth. So a DSM would be the best model for visibility analysis. If your tower is not included in the DSM for whatever reason, you could 'burn it on' to the DSM with raster calculator or just add an OFFSET factor at the tower point. The AGL raster output may also be useful as that will show the minimum height which must be added to an otherwise non-visible location from the tower.
... View more
12-17-2024
09:51 AM
|
0
|
2
|
2619
|
|
POST
|
I think you might be limited with the measure function. Hopefully it's Geodesic distance but it may not be. Caveat Emptor.. I'd really advise putting the coordinates into ArcGIS Online if possible and then you'd have a multitude of analysis options.
... View more
12-16-2024
02:53 PM
|
0
|
0
|
828
|
|
POST
|
You should be able to go to the 'Visualisation' tab from the item (hosted feature layer) overview page. Click on the 3 dots by the feature in the map view and go to Properties, symbolize with the tab on the RHS and Save. This should update the default symbology.
... View more
12-15-2024
08:59 AM
|
0
|
0
|
2206
|
|
POST
|
What's the coordinate system of your shapefile? Could also just be something messed up with the import of the old MXD. What's your basemapping in? If it's web mercator it may be doing something odd in having to reproject the mapping, and then have another coordinate system to transform from your shapefile. Would try a new project and just bring the shapefile into it, and/or export the shapefile in Pro again. Also ArcGIS Pro should select the 'best' transformation usually so I'm thinking something is off with the shapefile or it has some custom settings.
... View more
12-12-2024
12:33 PM
|
0
|
0
|
1698
|
|
POST
|
You probably have a specific transformation set in ArcMap that you need to specify in ArcGIS Pro https://support.esri.com/en-us/knowledge-base/apply-a-geographic-datum-transformation-in-arcmap-14624-000002828 https://pro.arcgis.com/en/pro-app/3.3/help/mapping/properties/specify-a-transformation.htm
... View more
12-12-2024
11:22 AM
|
0
|
0
|
1714
|
|
POST
|
Ok then that's a 2.9 ArcGIS Pro install. Your arcpy version would be 2.9, the 3.7.11 refers to the Python version. 2.9 ArcGIS Pro archived help shows only the 3 arguments available unfortunately https://pro.arcgis.com/en/pro-app/2.9/arcpy/functions/signintoportal.htm
... View more
12-10-2024
02:22 PM
|
0
|
0
|
2003
|
|
POST
|
I think this method only had 3 arguments before 3.x of ArcGIS Pro. If you're on 2.x Pro that would make sense.
... View more
12-10-2024
12:07 PM
|
0
|
1
|
2015
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 06-13-2025 01:08 PM | |
| 1 | 09-25-2025 03:19 PM | |
| 1 | 09-24-2025 02:35 PM | |
| 1 | 09-17-2025 02:42 PM | |
| 1 | 09-10-2025 02:35 PM |
| Online Status |
Offline
|
| Date Last Visited |
2 weeks ago
|