|
POST
|
Hi, You could try starting with the logic here: https://community.esri.com/t5/arcgis-online-questions/calculate-coordinates-of-polyline-in-arcgis-online-with-arcade/td-p/351115 but accessing first_point.z and last_point.z Hope this helps. Cheers, Marc
... View more
11-16-2020
01:31 PM
|
0
|
3
|
6750
|
|
POST
|
Hi there, I think this may help. It looks through a list of depths and exports a feature class from the source data that is queried for each depth, and then also a tin. It's just a quick hack so there's no error handling etc. Also I'm not sure how to properly embed code, hopefully this works. Cheers, Marc # IMPORT ARCPY
import arcpy
arcpy.OverwriteOutput = True
# SCRIPT VARIABLES
sr = arcpy.SpatialReference(2193)
# MAKE SURE INPUT AND OUTPUT DATA/GDB EXIST
out_fgdb = r"C:\Temp\out.gdb"
out_folder = r"C:\Temp"
surv_pts = r"C:\Temp\s_pts.shp"
surv_lyr = arcpy.MakeFeatureLayer_management(surv_pts)
depth_list = [1,2,3,4,5]
# VALUES FOR TIN CREATION
depth_field = "depth"
tin_type = "Mass_Points <None>"
# ITERATE THROUGH DEPTHS, OUTPUT FEATURE CLASSES AND TINS
for d in depth_list:
fc_name = "points_{}".format(d)
fc_path = "{}\{}".format(out_fgdb,fc_name)
query = "depth = {}".format(d)
tin_path = r"{}\tin_{}".format(out_folder,d)
# CREATE A FEATURECLASS IN THE OUTPUT FGDB
arcpy.FeatureClassToFeatureClass_conversion(surv_lyr, out_fgdb, fc_name, query)
tin_def = "{} {} {}".format(fc_path, depth_field, tin_type)
# CREATE A TIN IN THE OUTPUT FOLDER
arcpy.CreateTin_3d(tin_path,
sr,
tin_def,
constrained_delaunay="DELAUNAY")
... View more
11-10-2020
01:10 PM
|
1
|
2
|
4510
|
|
POST
|
Hi, so if the Web AppBuilder is not going to be made redundant by Experience Builder then surely you are going to keep developing functionality for it so that the two have feature parity? Otherwise we are going to come to the awkward position where both apps can do a little bit of what the users need, but neither can do all of it. Unfortunately this is already a common occurrence with the templated apps.
... View more
10-11-2020
01:33 PM
|
0
|
2
|
4301
|
|
IDEA
|
Currently the only template dgn seed files that ship with ArcGIS pro are in feet: Thanks, Marc
... View more
09-21-2020
01:53 AM
|
1
|
1
|
1277
|
|
IDEA
|
Hi, Currently using Oriented Imagery Catalogs is a bit of a pain. With tools like QuickCapture now having a project template that is OIC compliant it should be much easier. I'd like to be able to configure an OIC directly in Portal or ArcGIS Online that is related to a Feature Service with attachments and is dynamic. That way as more images are captured the OIC is automatically updated and the images just appear. It seems backwards to have to ingest a feature service into an OIC in a file geodatabase and then republish this back to the portal/online. Maybe I don't really get the workflow, but it seems like hard work at the moment. Thanks, Marc
... View more
09-14-2020
07:46 PM
|
2
|
0
|
1504
|
|
POST
|
Please do. Or add it to the batch attribute editor widget. Or add the functionality of the batch attribute editor widget and the regular widget into the smart editor widget so there is one excellent editing widget that does it all. And make all the options customisable so people can choose to have a complex or basic editing workflow.
... View more
09-07-2020
01:32 AM
|
3
|
0
|
4301
|
|
IDEA
|
Currently when you create offline areas on your mobile device in collector you have to guess the extent of any previously created areas. It would be great if the map showed the extent of any areas you have downloaded from ArcGIS Online/Enterprise, as well as any that you have generated locally. This will help to prevent accidentally missing areas if you need to create multiple offline areas to cover a large study area. It would also be useful to label this area with the name to assist with identifying which offline areas are which. For example:
... View more
08-24-2020
03:16 PM
|
2
|
0
|
623
|
|
POST
|
Sorry, Just saw this: https://community.esri.com/thread/243394-how-to-remove-field-headings-in-table-frame
... View more
08-20-2020
03:14 AM
|
0
|
0
|
9161
|
|
POST
|
Hi Tom, Is it possible to hide the table column headings? Thanks, Marc
... View more
08-20-2020
03:13 AM
|
0
|
1
|
9161
|
|
POST
|
Hi, In ArcGIS Pro 2.6 it seems that you can format date data that is inserted as dynamic text using the information in this page: Format date and time dynamic text—ArcGIS Pro | Documentation however this only seems to apply to dynamic text inserted using options like the Current time or Date exported. I have a date field in my index layer that I only want to display as dd/mm/yy, but if I apply the format option it does nothing. e.g. Date Exported: <dyn type="layout" name="Base Component Layout" property="dateExported" format="short|short"/> vs <dyn type="page" property="attribute" field="rev_date"/> It isn't mentioned in this article at all: Using dynamic text with Data Driven Pages—Help | ArcGIS for Desktop It seems like it is not possible to format data attributes that are used as dynamic text. Can someone from Esri please confirm. Thanks, Marc
... View more
08-19-2020
12:18 AM
|
0
|
1
|
2391
|
|
POST
|
Hi, I am using ArcGIS Pro 2.6. I have a layer (A) with a label class with a 50 point offset, a simple black box outline with a 2 point gap and a simple black leader line. I have another layer (B) in my map that I don't want the labels or their bounding boxes to overlap. I have set the feature weight and boundary weight of layer B to 1000. However the bounding box of the labels overlaps the features. Is this not taken into account when preventing overlaps? The text does not overlap the features, so I am assuming that only the text is prevented from overlapping. Is this correct? Thanks, Marc
... View more
08-18-2020
03:59 AM
|
0
|
1
|
1358
|
|
POST
|
Hi there, We have a QC project built with user input applied to a button to capture notes. If the user skips the notes then a default value of ${userInput:001} is captured to the attribute. I just created a new user input value and it does the same thing but with a different default value: I don't think this used to happen. I'm capturing points with App version 1.6.85, using the Quickcapture web designer against a Hosted Feature Service on ArcGIS Enterprise 10.7.1 We have been able to replicate this on multiple different devices, but I'm not sure what the other user was using, or how up to date their copy of QC is. Thanks, Marc Johnathan Hasthorpe
... View more
07-29-2020
02:40 PM
|
1
|
4
|
1731
|
|
IDEA
|
Hi James Tedrick, This functionality would be extremely useful for our field data collection workflows. Regards, Marc
... View more
06-17-2020
06:20 PM
|
3
|
0
|
7027
|
|
POST
|
For anyone else that encounters this issue in the future I'd like to reiterate what Fraser said above. We had the exact same issue over the last week or so - massive CPU usage by javaw.exe causing the entire Portal to hang. It was directly related to someone publishing a regional 2m contour dataset as a hosted feature service. Whenever it was added to the map we would see the following: CPU usage on ArcGIS Server plateauing at 80-90% Lots of network comms between ArcGIS Server and DataStore Memory Errors in the ArcGIS Server logs like: SEVERE Database error has occurred. SEVERE 0 : Ran out of memory retrieving query results. It seems that java is running out of memory trying to retrieve this massive dataset and for some reason the logging component goes haywire. The freaky thing was the CPU usage would remain for quite some time after you closed the map, until maybe the service crashed at which time things would go back to normal. Until the next time someone queried that service... So if this happens to you look in the portal content for any suspicious services published around the time things start to play up. You might just find some contours Cheers, Marc
... View more
05-25-2020
02:19 AM
|
0
|
1
|
4909
|
|
POST
|
oh also... if the image is required then you can't add a new record! because the survey cannot download the old image you cannot progress to add a new record in the repeat! so there is no way to make an image required in a repeat AND use the inbox to add new repeat records. 😞
... View more
05-13-2020
07:02 PM
|
2
|
0
|
4992
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 4 weeks ago | |
| 1 | 09-25-2025 06:28 PM | |
| 1 | 11-17-2025 01:28 AM | |
| 1 | 01-20-2026 02:14 PM | |
| 1 | 01-20-2026 02:18 PM |
| Online Status |
Offline
|
| Date Last Visited |
2 weeks ago
|