|
POST
|
Click pencil next to the folder to select the geometry type, and then you should be able to create features
... View more
03-12-2024
09:02 AM
|
0
|
5
|
7980
|
|
POST
|
Hi @TonyAlmeida, You could use something like below to create the line feature class: import os
import arcpy
# Variables
input = arcpy.GetParameterAsText(0)
gdb = r"C:\temp\python\test.gdb"
wkid = 2272
# Environment Variables
arcpy.env.overwriteOutput = True
arcpy.env.outputCoordinateSystem = arcpy.SpatialReference(2272)
arcpy.env.workspace = gdb
array = arcpy.Array()
with arcpy.da.SearchCursor(input, ["SHAPE@X", "SHAPE@Y"]) as cursor:
for row in cursor:
pt = arcpy.Point(row[0], row[1])
array.add(pt)
del cursor
polyline = arcpy.Polyline(array)
arcpy.CopyFeatures_management(polyline, "line_test")
... View more
03-12-2024
03:43 AM
|
2
|
7
|
7993
|
|
POST
|
Hi @jochoa6, Can you upload a sample of your CSV file?
... View more
03-08-2024
12:21 PM
|
0
|
0
|
990
|
|
POST
|
Hi @EricKriener, The service will stay in the state it was in when the server is rebooted, or when the ArcGIS Server service is restarted. For example, if the service is stopped, it will remain stopped. If the service is started, it will remain started.
... View more
03-07-2024
06:51 AM
|
1
|
0
|
1656
|
|
POST
|
Hi @abhishek_choudhary, You can configure the WebSocketContextURL in ArcGIS Server Administrator: https://community.esri.com/t5/arcgis-enterprise-questions/missing-lt-webadaptor-gt-ws-endpoint-for-10-7/td-p/1168841
... View more
02-27-2024
05:30 AM
|
0
|
0
|
1206
|
|
POST
|
Hi @Scosh , I'm not sure if this is by design or not, but you can use the Export Features tool to workaround this. There is an environment setting to preserve existing GlobalIDs: You can also right-click on the tool to execute it in Batch to process multiple feature classes.
... View more
02-26-2024
09:38 AM
|
0
|
0
|
1206
|
|
POST
|
Hi @christg , Manually define the values for you filters using Defined values: This way the application is not querying the 300,000 rows to retrieve the 20 values.
... View more
02-26-2024
06:27 AM
|
0
|
0
|
1515
|
|
POST
|
Hi @Jelle_Stu_PR, The File Geodatabase will need to be added as an item to Enterprise before you can append it. See the following document for an example. An easier approach would be to use ArcGIS Pro's append tool to append the File Geodatabase feature class to the hosted feature service.
... View more
02-26-2024
06:23 AM
|
0
|
1
|
2075
|
|
POST
|
@JoseSanchez , Unfortunately, ArcGIS Online does not support UNC paths as hyperlinks. See the alternative solutions in the below link: https://support.esri.com/en-us/knowledge-base/faq-does-arcgis-online-support-unc-paths-as-hyperlinks-000012221
... View more
02-26-2024
06:19 AM
|
2
|
0
|
1587
|
|
POST
|
Hi @Jochman, You will need ArcGIS Server, which will give you the ability to publish a Geoprocessing Service. For example, you would publish the model to ArcGIS Server as a Geoprocessing service. You can then configure this service within an application, such as Experience Builder. End users that have access to the application can then execute the published model with their parameters.
... View more
02-26-2024
06:15 AM
|
0
|
0
|
1910
|
|
DOC
|
@SFortnam this tool will only report dependencies within it's own Org.
... View more
02-22-2024
01:46 PM
|
0
|
0
|
29350
|
|
POST
|
Hi @Jade_Freeman, I think you should be able to get this to work with Labels. For example, I labeled services based on different projects. I then configured the following expression to see how many services labeled Monmouth and Imagery: I could then configure the Pie Chart based off of the Name from Labels: Try the above after labeling all of your services with their appropriate AGS host name. Note: you can apply labels to multiple components by selecting them and clicking Apply Labels at the top right.
... View more
02-21-2024
06:16 AM
|
2
|
0
|
1657
|
|
POST
|
Instead of calculating the fields, can you use a pop-up Arcade expression to perform the calculation? This route, you won't have to rely on a model/script to be executed, the field will be calculated on-the-fly. https://www.esri.com/arcgis-blog/products/arcgis-online/mapping/pop-ups-arcade-essentials/#attexpr
... View more
02-21-2024
05:38 AM
|
0
|
0
|
1352
|
|
POST
|
Hi @FM5091 , Try exporting the model to a python script, then try scheduling the task via Windows Task Scheduler to see if it executes successfully.
... View more
02-20-2024
07:46 AM
|
0
|
0
|
1371
|
|
POST
|
Hi @MattSully , Take a look at the following document. It does what you are looking to achieve. The only portion you would need to remove is the exporting of the feature class, and zipping of the File Geodatabase.
... View more
02-16-2024
05:48 AM
|
1
|
2
|
1429
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 4 weeks ago | |
| 4 | 05-07-2020 05:14 PM | |
| 1 | 03-25-2026 04:16 AM | |
| 1 | 03-16-2026 01:00 PM | |
| 1 | 12-22-2025 10:39 AM |
| Online Status |
Offline
|
| Date Last Visited |
Friday
|