|
POST
|
@arcgispro8 That's not good. You may try contacting esri us support team: Technical assistance For help using Esri software, the following resources are available: Visit the Esri Support Center online. In the United States, contact the Esri Support Center: Phone: 888-377-4575 Fax: 909-792-0960 Hours: 5:00 a.m. to 5:00 p.m. (Pacific time) Monday–Friday Hopefully they could help you.
... View more
01-27-2021
10:12 PM
|
0
|
0
|
1221
|
|
POST
|
Hi @arcgispro8 , I can recommend that you call your country's esri support team. They can help you better with installation and licensing. ====================================================================== Please give a like if helpful and Accept as Solution if it's answered your query.
... View more
01-27-2021
10:01 PM
|
0
|
2
|
1227
|
|
POST
|
Hi @JasonJordan00 You'd better check if your ArcGIS Server and Portal for ArcGIS are running first. You're also missing the username and password parameters in GIS. 1. Run the Portal url in a web browser to see if Portal is up and running. If not go to Services and restart your Portal. 2. Do the same with ArcGIS Server. 3. Then Run your code again. ====================================================================== Please give a like if helpful and Accept as Solution if it's answered your query.
... View more
01-27-2021
09:50 PM
|
0
|
0
|
1875
|
|
POST
|
Hi @CassiePorter To make the feature layer to work offline, here are the steps: 1. Go to settings of the feature layer and enable sync 2. Create a web map from this feature layer, you can include other feature services/layers as well 3. Go to settings of the web map once it's created and turn on the offline mode and save it.
... View more
01-27-2021
05:11 PM
|
0
|
0
|
3920
|
|
POST
|
Hi @JenniferLink1 , Unfortunately, it's not possible to customize a widget in AGOL. For more information refer to the previously posted question and the reply from @DerekLaw : Customize a widget in WebAppBuilder Cheers Mehdi ====================================================================== Please give a like if helpful and Accept as Solution if it's answered your query.
... View more
01-24-2021
08:59 PM
|
2
|
0
|
964
|
|
POST
|
Hi @KalSsin if my reply has answered your question, would you please Accept as Solution? Thank you.
... View more
01-20-2021
10:00 PM
|
0
|
0
|
1455
|
|
POST
|
Hi @TAN860421 , You can't import pre-trained models with ckpt format as ArcGIS Pro deep learning tools create only 2 formats (emd, dlpk). I can recommend either train the model again using ArcGIS Pro deep learning tools (or ArcGIS API for Python) or you can download esri's pre-trained models from this link. if you can find a relevant model to yours. ====================================================================== Please give a like if helpful and Accept as Solution if it's answered your query.
... View more
01-19-2021
05:28 PM
|
1
|
1
|
3425
|
|
POST
|
Hi @CassiePorter The following script overwrites a feature layer: from arcgis.gis import GIS
from arcgis.features import use_proximity
from arcgis.features import FeatureLayerCollection
gis = GIS("url", "username", "password")
# get the buffered feature layer
existing_Buffered_Points_item = gis.content.get("existing_Buffered_Points_item_id")
fLyr = existing_Buffered_Points_item.layers[0]
fLyr.manager.truncate()
#access the first layer in points_item
points_layer1 = points_item.layers[0]
# get the newly buffered item
points_buffer = use_proximity.create_buffers(points_layer1,
field='buffer',
units='meters',
output_name="Buffer_m")
points_buffer_itemID = gis.content.get(points_buffer.id)
feature_layer_collection = FeatureLayerCollection.fromitem(existing_Buffered_Points_item)
feature_layer_collection.manager.overwrite(points_buffer_itemID) ====================================================================== Please give a like if helpful and Accept as Solution if it's answered your query.
... View more
01-18-2021
11:02 PM
|
1
|
2
|
3985
|
|
POST
|
Hi @Sunny , Try this tool Generate Points Along Lines (Data Management): Generate Points Along Lines (Data Management)—ArcGIS Pro | Documentation
... View more
01-18-2021
09:19 PM
|
3
|
0
|
2678
|
|
POST
|
Hi @KalSsin This is an example of text formatting I used in my case: def FindLabel ([Location_Status], [Speed]):
locstat = str([Location_Status])
if locstat == "Active":
label = "<BOL><FNT size= '25' name = 'Arial'><CLR red='255'
green='236' blue='0' alpha='100'><BGD red='0' green='0' blue='0'
alpha='100'>" + str([Speed]) + "</BGD></CLR></FNT></BOL>"
return label I hope this gives you some insights on what options are available. I couldn't find any scale ranging in python label expressions. This is a useful link: https://pro.arcgis.com/en/pro-app/latest/help/mapping/text/text-formatting-tags.htm Cheers Mehdi ====================================================================== Please give a like if helpful and Accept as Solution if it's answered your query.
... View more
01-17-2021
07:42 PM
|
3
|
0
|
1487
|
|
IDEA
|
@AmirBar-Maor If that's the case, then Convert Coordinate Notation tool in ArcGIS Pro will do the job. Cheers Mehdi
... View more
01-07-2021
06:07 PM
|
0
|
0
|
8938
|
|
POST
|
Hi @VictorTey This has been logged as a bug in ArcGIS Enterprise 10.8.1: https://support.esri.com/en/bugs/nimbus/QlVHLTAwMDEzMzMxNw== Alternate Solution Find the patch in the following link, https://support.esri.com/en/download/7834. Cheers Mehdi
... View more
01-07-2021
05:39 PM
|
1
|
0
|
1485
|
|
IDEA
|
Hi @IreneHwang , There's an easier way of converting DMS to DD without using Arcade, If you are after a quick solution in ArcGIS Pro. 1. Create two new fields (eg., Long_DD and Lat_DD) 2. Right click on Long_DD field > select Calculate Geometry 3. For the Property > select Point x-coordinate 4. For Coordinate Format, select Decimal Degrees > Ok Do the same for Lat_DD, selecting Point y-coordinate. and if you're looking into automating, you can use python: arcpy.management.CalculateGeometryAttributes("GPS_data", "Long_DD POINT_X", '', '', None, "DD")
arcpy.management.CalculateGeometryAttributes("GPS_data", "Lat_DD POINT_Y", '', '', None, "DD")
... View more
01-06-2021
05:19 PM
|
0
|
0
|
8955
|
|
POST
|
@x_d This link explains how to download attachments from a feature service: https://support.esri.com/en/technical-article/000012232 and this one shows how to download rasters from an image service: https://www.esri.com/arcgis-blog/products/arcgis-desktop/imagery/how-to-download-rasters-from-an-image-service/
... View more
01-04-2021
07:55 PM
|
2
|
2
|
1324
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 09-16-2021 09:38 PM | |
| 1 | 03-17-2024 06:09 PM | |
| 1 | 11-10-2020 04:59 PM | |
| 1 | 02-08-2021 09:29 PM | |
| 1 | 02-17-2021 04:47 PM |