|
POST
|
(Pro 3.0.2) Last year I made a custom arcade expression for my symbology: worked fine and it still does. Yesterday I joined the feature with an excel table, shows up as expected after import symbology. I copied that joined table 'feature class to feature class' to have a permanent feature including the joined data and imported the symbology once again but I can't get it to work: nothing shows in my map. After the original imported expression didn't work I tried this (following set-custom-expressions-for-symbology 😞 but nothing visible in the map, after some time this shows up in the symbology pane: what am I missing here? Solved: After more errors like the one above: I manually re-created the expression: which renders perfectly now, I fail to see the difference, no idea what actually happened Have a nice day! Bert
... View more
09-28-2022
12:37 AM
|
0
|
0
|
690
|
|
POST
|
We are in the process of deciding whether to use Sitescan or Drone2Map. My issue at the moment is Chrome crashes quite fast when using Sitescan, (looking at orthomosaic, showing elevation data for example). I'm also confined to a Citrix environment. Are there any recommended browsers or Citrix settings for using Sitescan? Thanks in advance for your time. Regards, Bert
... View more
08-29-2022
03:11 AM
|
0
|
1
|
973
|
|
POST
|
someone mentioned to install dotnet desktop in another post on geonet. That might be an idea to test.
... View more
07-18-2022
01:56 AM
|
0
|
0
|
652
|
|
POST
|
Hi Josh, My legend aligns exactly as your example but I find that confusing. Having the patch align with the text (Antartica, Carribean) inbetween lines (Asiatic Russia, Central America, Central Asia) or with the middle line (Australia/New Zealand). I would much more prefer to align the patch with the first word in the description, how can I do that? I'm using Pro 2.9.3, thanks in advance for your time. esri helpdesk suggests I can convert to graphic and edit the graphic. Does not sound like a neat solution... Bert
... View more
06-08-2022
10:28 PM
|
0
|
0
|
5036
|
|
POST
|
I want to minimise user input so I use this arcade to auto-fill the date in a form Test result is as expected, so I looked at the app. And that is what I would like to see in the app as well, So we move outside and collect polygons. Back in the office -using PRO- the date is somewhere yesterday: (following records are created on may 11th) I have more records and they are all antidated about a full day. What am I missing here? Field Maps 22.2.0 build 736 ArcGIS PRO 2.9 patch 3 Thanks for you time. Bert
... View more
05-11-2022
07:17 AM
|
1
|
2
|
1148
|
|
IDEA
|
Yes, definitely a must have to autopopulate the date field. Thanks for having it in the product plan already. Bert
... View more
04-14-2022
11:58 PM
|
0
|
0
|
3958
|
|
POST
|
In my smartform I want to read a field ("naam") from a featureset so I can use that to enter in my new feature. I managed to select the correct feature from the featureset by it's geographical location: // Get name from underlying buffer
var feature1 = $feature
var geometry2 = FeatureSetByName($map,"Wildweiden PairwiseBuffer")
var intersectBufferFS = Intersects(feature1, geometry2)
return intersectBufferFS which results in: Now, how do I extract the third field 'naam' to a string? thanks for your time, Bert
... View more
04-14-2022
02:58 AM
|
0
|
1
|
1352
|
|
IDEA
|
I would value a list of drones that are certified to work with drone2map and/or sitescan for arcgis. Ideally this would also clarify what the difference between drone2map and sitescan for arcgis is so one can make an informed decision to obtain one or the other, or both. This list would be maintained regularly so I don't have to find topics that are several years old while technology is moving rapidly. This would really help new drone/esri users make the right decisions. thanks for your time. Bert Kraan
... View more
04-11-2022
05:31 AM
|
2
|
1
|
3633
|
|
POST
|
This might be someting: copy the table add fields x and y (both empty) now you can use the xy table to point tool. Bert
... View more
03-02-2022
05:26 AM
|
0
|
0
|
3260
|
|
POST
|
Some years ago I created a feature class with related table (trees and inspections) which worked ok in collector/field maps but not very userfriendly or intuitive for my field workers. Now I want to switch to using field maps for the trees and survey123 for the inspections and I followed @DougBrowning's workflow basically his technique is creating a form and have a feature class build by survey123 (for the inspections) and relate that later to the other feature class (the trees). I've got that working (whoohoo); from a link in a popup in fieldmaps survey123 gets called and after completing the survey it returns to field maps. (last post in this thread) My problem now is that I would like to copy the +1200 rows in the non spatial table to the feature class and that's where I'm stranded. Does anyone know of a way to convert/load/copy my non spatial records from the table to the featureclass? the table contains the fields: category, remark, worker, date, foreignkey, globalid, objectid I hope for a tip on how to tackle this, thanks for your time! Bert
... View more
03-02-2022
05:05 AM
|
0
|
4
|
3284
|
|
POST
|
I'm doing the same, tree inspections. I didn't encounter your issue (yet) but I'm still in the early stages of development. Did you have any progress on this?
... View more
03-01-2022
01:27 AM
|
0
|
0
|
718
|
|
POST
|
So, to whomever this might be of help: this is my arcade expression for a sorted list of previous inspections so you can see the history: var RelDataSorted = Orderby(FeatureSetByRelationshipName($feature,"geïnspecteerd op/door"),'inspectiedatum DESC')
var popupString = ''
for (var f in RelDataSorted){
popupString += text(f.categorie) + " " + text(f.inspectiedatum, 'D-M-Y') + TextFormatting.NewLine
}
return popupString this is my arcade expression to open a survey, create a new related entry and return to the field map afterwards: var urlSource = 'arcgis-survey123://?'
var vtaTree = $feature.GlobalID
// itemID here means the field maps map to return to
var gotoFM = 'https://fieldmaps.arcgis.app/?referenceContext=open&itemID=1bea04dacb0d4732b367079c039dcbbd'
// itemID here means the survey to open in S123
var params = {
'field:foreign_key':vtaTree,
itemID:'15fe03654cb4466fbb760a62dcae8af5',
'callback':gotoFM
};
return urlSource + UrlEncode(params); and this is what it looks like on an iphone: Now, if I only could find that blogpost again where the author showed how to replace the url with a button my happiness would be complete, but I'm quite happy as it is. I'm sure the expressions can be better but hey, if it works it works... regards, Bert Caution: While this works you will encounter difficulties when you try to upload existing data: the GlobalID in your 'parentFC' will be different in your target (unless you have a enterprise gdb and the environment set up correctly)
... View more
02-28-2022
11:46 PM
|
0
|
0
|
4331
|
|
POST
|
Thanks Doug, I really appreciate your reply. I'm inching my way forward, learning every day. I followed your workflow from the link you mentioned above (...mapping with survey123 within a polygon or admin unit...) and at the moment I can open a new survey with reference to an existing record from within fieldmaps. the survey gets stored and related to the feature class item and all seems fine. Great! Several things I still need to work out but this hurdle is taken. Regards, Bert
... View more
02-28-2022
01:14 AM
|
2
|
0
|
4343
|
|
POST
|
Hi Doug, Thanks for your reply. I'm confused. Do you send an Arcade expression to Survey123, in other words is the expression executed by Survey123? This (English) is not my first language (and Arcade isn't either :-}) so bear with me please; if I break down your url correctly I get: "arcgis-survey123://?" ok, I get that, pass it in as a string "itemID=0333333333420ad9940a988" that will be the survey we want to open, I got that working "&field:PointID={PointID}" this will be the feature you want to load in the survey? "&field:EvaluationID={expression/expr0}" but what does this do?? At the moment I'm able to open the correct survey in the survey123 app from a link in a popup in field maps but I didn't yet succeed in loading the feature in that survey. This really opens new ways for my collegues to work, fascinating. I hope you have time to comment. Regards, Bert
... View more
02-15-2022
02:25 AM
|
0
|
2
|
4376
|
|
POST
|
I have a simple featurelayer with a 1:m related table (treesafety & inspections) In Field Maps I can tap the feature which opens the popup. Popup is configured to display an expression. the expression: The link in the popup: Tapping the link starts survey123 on my iPhone and opens the correct survey but the record/feature does not load, it's just an empty survey (which I can fill in and that will create a new feature but that's not what I'm after) The survey has a repeat section but is otherwise not complex: What should I do in order to load the feature I tapped on in Field Maps? Is it because I (might) have several related records? is this BUG-000137679 ? Any help on this will be greatly appreciated, thanks for you time. Bert
... View more
02-09-2022
05:42 AM
|
0
|
9
|
4514
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 12-09-2025 05:56 AM | |
| 1 | 10-08-2025 03:45 AM | |
| 1 | 10-01-2025 06:55 AM | |
| 1 | 07-01-2025 05:46 AM | |
| 1 | 06-02-2025 05:19 AM |