|
POST
|
No familiar with Azure DevOps pipeline, but what is the value of "connection" in your script? Just a thought that maybe it is to a mapped drive that doesn't get "mapped" when connecting with the pipeline instead of logging in locally? If so, perhaps absolute paths would resolve it? R_
... View more
05-04-2023
10:12 AM
|
0
|
1
|
1201
|
|
POST
|
It appears as if you have drilled into (opened) the folder. For this tool, you select the folder the images reside in, not the images themselves. Need to back up one level and "select" the folder that contains the photos and click "Add". R_
... View more
05-04-2023
08:03 AM
|
1
|
0
|
3431
|
|
POST
|
1) use Create point feature along a line tool. 2) see @DanPatterson post above. R_
... View more
05-03-2023
12:57 PM
|
1
|
0
|
1225
|
|
POST
|
One way, If you are running on a machine with Pro installed, and have logged into Pro within the last two weeks with the user credential that you want to pass, you can use: gis = GIS("home") This will run using the credentials of the last user to log into Pro under that profile. I actually have a scheduled task that opens Pro and closes it every 10 days just to keep the credentials "active". R_
... View more
05-03-2023
12:16 PM
|
0
|
1
|
1672
|
|
POST
|
Your example appears to be point related, so may not apply, but I have had similar issues to this in dashboards using SDE data/views. Turns out AGOL doesn't play well with fields that are not actually part of the feature class (Shape.STArea(), Shape.STLength()) and are added/calculated on the fly when you access them. When I modified my view syntax to cast them to a different name, all seems to work fine: SELECT OBJECTID, Owner, recnum, Shape.STLength() AS Length rather than: SELECT OBJECTID, Owner, recnum, Shape.STLength() In fact, I had to create the views in order to overcome this rather than just using the feature class itself. Hope this helps, R_
... View more
05-03-2023
12:02 PM
|
2
|
0
|
4211
|
|
POST
|
I have no problem sharing maps/apps that don't require logon. However, the map and all the data referenced in it need to be shared to public as well. R_
... View more
05-03-2023
11:47 AM
|
3
|
1
|
5002
|
|
POST
|
Not sure about the SDE data, and how you are loading it into Field Maps, but, I had a similar issues a while back with Hosted Feature service in AGOL. I had updated my domains on a particular field programatically. Turns out, I had a duplicate domain in there, and layer would NOT load into Field Maps until I removed the duplicate. Not sure if it helps, but one place to check. R_
... View more
05-03-2023
11:44 AM
|
0
|
0
|
6247
|
|
POST
|
And with points, it shows coordinate, and lines it shows length. Been looking for a way to get rid of that for some time, no luck. Would be nice to be able to configure a popup to only show the info you want it to in Field Maps (like in both map viewers). R_
... View more
05-03-2023
11:33 AM
|
0
|
0
|
2122
|
|
POST
|
Sorry, I do not. I'ts been some time since I used a Trimble with ESRI app, and that was with collector, and don't have anything to test nowadays. R_
... View more
05-02-2023
07:35 AM
|
0
|
0
|
4953
|
|
POST
|
Normally, that means you are not passing the correct name of the sequence. are you just using something like: return NextSequenceValue("SeqName") How/where did you create the sequence? SQL, FGDB? R_
... View more
05-01-2023
11:55 AM
|
1
|
0
|
1137
|
|
POST
|
If your basemap(s) and data are in PA83-SF, you data will be collected in that. Howerver, you will still need to get the profile "converting" the GIS data appropriately. R_
... View more
05-01-2023
08:59 AM
|
0
|
0
|
4975
|
|
POST
|
I have had success using the python/Notebook from here. Though, for some reason, the version I ended up with had more 'apptypes'. apptypes = ['Application', 'Dashboard', 'Story Map', 'Web Experience', 'Feature Layer', 'View'] R_
... View more
04-27-2023
01:56 PM
|
1
|
1
|
4676
|
|
POST
|
there does not appear to be curly brackets in the field for workerid. All of these work for me: if ($feature.workerid == "97dfbbb5-dd72-47ba-8696-b7ca9f546171"){
return "Sarah"} or, can be handled with Decode. Might be easier depending on how many workers you have: Decode($feature.workerid, "e4e30100-aaf1-4567-bc6f-2393b779e367", "Sarah",
"esf30100-aaf1-4567-bc6f-239sfd45874", "George", $feature.workerid) or using When: When($feature.workerid == "e4e30100-aaf1-4567-bc6f-2393b779e367","Sarah",
$feature.workerid == "e4e30100-aaf1-4567-bc6f-2393b779e367","George", "Other") R_
... View more
04-27-2023
01:46 PM
|
1
|
0
|
1277
|
|
POST
|
Have you installed the Microsoft Access Database Engine driver? You will need that to access Excel files from ArcMap. Documentation here. R_
... View more
04-27-2023
12:23 PM
|
0
|
0
|
1738
|
|
POST
|
This seems to work in New map viewer and in Field Maps if I set up calculation on the field in the Form. var vals = FeatureSetByName($datastore,"Sign",['TestInt'],false)
var numarray = []
for (var n in vals){
var nn = Number(n.TestInt)
Push(numarray, nn)
}
var maxnum = Max(numarray)
var newnum = maxnum + 1
return newnum Depending on how many records, it takes a bit to respond. Could be a 'faster' way, but I'm not familiar enough with Arcade to figure out how to speed it up. R_
... View more
04-27-2023
11:03 AM
|
1
|
0
|
1823
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-14-2026 04:00 PM | |
| 1 | 09-14-2022 07:53 AM | |
| 1 | 09-14-2022 08:23 AM | |
| 1 | 05-21-2026 08:53 AM | |
| 1 | 05-14-2026 04:28 PM |
| Online Status |
Offline
|
| Date Last Visited |
Wednesday
|