|
POST
|
Glad it solved your first problem (please mark as the accepted solution). I am not a Surver123 export but yes I do believe that you have to publish the from Survey Connect https://doc.arcgis.com/en/survey123/desktop/create-surveys/xlsformformulas.htm#ESRI_SECTION1_A3C2F3566F974734B55ECECD31C6CA91
... View more
03-07-2022
01:34 PM
|
0
|
0
|
4113
|
|
POST
|
Should the value in your CSV (field names) be the same as your list_missions that you are using for your field Missions?
... View more
03-07-2022
12:37 PM
|
0
|
2
|
4122
|
|
POST
|
Thanks Mike! Yeah I had looked at all these links and was hopping I had missed something. I went ahead and submitted an enhancement for the product. Let's wait an see. Thanks!~
... View more
03-04-2022
08:53 AM
|
0
|
0
|
980
|
|
IDEA
|
It would be nice to be able to set the Default Spatial Reference to what ever an Organization use as a Default. Currently, each time a user is trying to plot points from a spreadsheet, the default Spatial Reference is 4326- GCS WGS 1984. Most Office users don't know the info needed to plot those points. We are mainly using State Plane Coord (3417), so it would be nice to be able to set this info as the Default Spatial Reference for our Org (or at the user level). Even with a cheat-sheet... most of our users forget to change the Spatial Reference value and they get unexpected results. Thanks!
... View more
03-04-2022
08:49 AM
|
0
|
0
|
1070
|
|
POST
|
Hello is it possible to change some default settings in ArcGIS for Office? for instance, when importing Excel data, the default spatial Reference us 4326- GCS WGS 1984.... Our Organization uses State Plane coords (3417) and when a user is trying to plot points based on X and Y, 8 of 10 times they forgot to change the spatial reference, generating rubbish data. If we could just change the default Spatial Reference that would be FANTASTIC!. Thanks!
... View more
03-04-2022
06:41 AM
|
0
|
2
|
1005
|
|
POST
|
Hey Steve Try to load the ZIP file first in your content (in upper left corner choose NEW ITEM), then drag your ZIP in there, the system will recognize your shapefile then choose Add ZIP and create a hosted feature layer. Once created, you can add it to your web map Good luck
... View more
02-08-2022
02:22 PM
|
1
|
2
|
2381
|
|
POST
|
YEEEEES!!! I knew I saw it before... Thanks for helping. Now, I don't see in the Chart Template any options for showing the "data label" and Category label like you could using the Configuration Chart... Am I missing something or it's a limitation of the template?
... View more
02-08-2022
07:06 AM
|
3
|
2
|
5785
|
|
POST
|
Hello is it possible to add a chart to a webmap (new webmap) popup using an Arcade featureSet? I have a feature layer with a related table (1-M) and I would like to be able to use a bar chart to show data from previous years. The arcade expression returns the featureSet as expected (see image below)... can it be done? Thanks!
... View more
02-07-2022
01:30 PM
|
1
|
6
|
5826
|
|
POST
|
try this: var callMonth = Text(ToUTC($feature.CallDateTime),'MM/DD/YY HH:MM:SS')
return callMonth
... View more
01-06-2022
10:45 AM
|
0
|
1
|
946
|
|
POST
|
Try this var treepoints= FeatureSetByName($map, "new_tree_points")
var numberoftrees= Count(Contains($feature,treepoints))
return numberoftrees
... View more
12-09-2021
07:54 AM
|
0
|
0
|
1513
|
|
POST
|
Hey Alfons below is a piece of code that is similar that what you are trying to achieve. 1) Make sure you are using the FIELD Name and not the aliases 2) make you your formula returns valid values (no division /0...) That should works! Good luck! arcpy.MakeFeatureLayer_management(sdeFCT, MFL,"TOTPOP10 >0 and ALAND10 >0")
print(arcpy.GetCount_management(MFL))
expression = '("ALAND10"/"TOTPOP10") > 1000'
print(expression)
arcpy.SelectLayerByAttribute_management(MFL, 'NEW_SELECTION', where_clause=expression)
if int(arcpy.GetCount_management(MFL)[0]) > 0:
print("delete records")
##arcpy.DeleteFeatures_management(sdeFCT)
else:
print("good to go")
... View more
12-03-2021
12:03 PM
|
1
|
0
|
2210
|
|
POST
|
Hi Matt in Fields Maps app, under your profile, make sure auto-Sync is turn on. Perhaps that will help
... View more
11-17-2021
01:30 PM
|
0
|
1
|
4269
|
|
POST
|
I see well if you don't have that many hasted feature layers, you can always set the refresh interval on the hosted Feature Layer page (under Visualization) . Click 3little dots, select refresh interval, set interval, then Save Layer.
... View more
11-17-2021
06:12 AM
|
0
|
1
|
1953
|
|
POST
|
still don't know where your dict1 is defined but this code will skip the rows with records with arcpy.da.UpdateCursor(fc,['Fielda','COUNT','Field1']) as cursor:
for row in cursor:
if row[0] not in (None, "", " "):
row[2] = ",".join(dict1[row[0]])
cursor.updateRow(row)
else:
print("All good, nothing to do here")
... View more
11-16-2021
12:41 PM
|
0
|
0
|
1648
|
|
POST
|
Hello could you try to create a hosted feature view in map viewer using the Analysis/Join Features? That way you should have all your data into one layer to use within Dashboard. Hope that works for you
... View more
11-16-2021
06:26 AM
|
0
|
1
|
2023
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 03-26-2026 01:47 PM | |
| 1 | 08-05-2024 06:19 AM | |
| 1 | 06-11-2025 08:07 AM | |
| 1 | 07-13-2025 04:58 PM | |
| 1 | 02-27-2025 08:13 AM |
| Online Status |
Offline
|
| Date Last Visited |
3 weeks ago
|