|
POST
|
When I am working from home, I use remote desktop on my Windows 11 machine to connect to my Windows 10 computer at work via a VPC Client. Often I'll leave ArcGIS Pro open and close my RDP on my home computer to finish a geoprocessing operation or export a map. When I log back on to RDP, ArcGIS Pro crashes consistently. Any suggestions as to what to look at to change this? Thank you Mele
... View more
09-12-2023
09:42 AM
|
0
|
8
|
3023
|
|
POST
|
Duncan, Thank you for the reply. By append, I meant adding rows to the feature class. I was able to find a .NET ArcObjects way to do this. Sorry I did not post it but what I did was to get a feature class from the DBMS database and use that to append to an SDE feature class private static IFeatureClass CreateSQLFC(string SQLSERVER, string UID, string PWD, string DB, string fc) { IPropertySet propSet = new PropertySetClass(); propSet.SetProperty("DBCLIENT", "SQLServer"); propSet.SetProperty("serverinstance", SQLSERVER); propSet.SetProperty("authentication_mode", "DBMS"); propSet.SetProperty("user", UID); propSet.SetProperty("password", PWD); propSet.SetProperty("DATABASE", DB); IWorkspaceFactory2 pWSFact = (IWorkspaceFactory2)new SqlWorkspaceFactory(); IWorkspace WS = pWSFact.Open(propSet, 0); IFeatureWorkspace FWS = (IFeatureWorkspace)WS; IFeatureClass pFC = (IFeatureClass)FWS.OpenFeatureClass(fc); return pFC; }
... View more
08-09-2023
07:58 AM
|
0
|
0
|
1431
|
|
POST
|
I have a table stored in a SQL (non GDB) database. The table has SQL geometry. I need to append this table to a featureclass in a SQL Geodatabase. I am able to Access an ITable from the SQL DB, but not an IFeatureClass. When I try to append the ITable to an IFeature Class using the AppendFeatures in C#, I get an error that says the input and output must be of the same type. How do I get my ITable cast to and IFeatureclass? Thanks, Mele
... View more
06-10-2023
09:20 AM
|
0
|
2
|
1534
|
|
POST
|
We have been using QR codes to log in to Field Maps successfully, start tracking, as well as to get the users to the right map. Is there a way to use a QR code to sign the user out? This was an issue we had with iPads at our events this year. At the end of a shift, users didn't sign out and would still show themselves as tracking. I see we can turn off tracking via the QR code, but does that also sign them off? My testing does not look like that is the case. Mele
... View more
03-02-2023
12:39 PM
|
0
|
7
|
3711
|
|
POST
|
I was able to get this working. Not sure why I was having issues before. var incident = $feature.incident_number Console(incident) if(incident == null) { return "No Incident number!" } var u = FeatureSetByName($map, "Unit Status", ['incident_number', 'unit_id']) var codeStatement = 'incident_number = @incident' Console(codeStatement) var us = Filter(u, codeStatement) OrderBy(us, 'unit_id ASC') Console(Count(us)) var Units = "" for(var x in us) { Units += Text(x.unit_id) + TextFormatting.NewLine } return { Units }
... View more
02-18-2023
08:17 AM
|
0
|
2
|
2839
|
|
POST
|
I am trying to to filter a table in the new Map Viewer and show the filtered records in a popup. I have a fire incident map feature with associated units in the table. This code only works if I put in the incident_number explicitly. var incident = $feature.incident_number incident = 23069675 var u = FeatureSetByName($map, "PFD CAD Calls - Units", ['incident_number', 'unit_id']) var codeStatement = 'incident_number = @incident'; Console(incident) var us = Filter(u, codeStatement) Console(Count(us)) var popupString = 'Units:'; for(var x in us) { popupString += Text(x.unit_id) } return { popupString }
... View more
02-16-2023
09:17 AM
|
0
|
4
|
2896
|
|
POST
|
We have 509 users in our track view. Not all users have actually started tracking. Is it possible to export he list of users? It is not easy to view in the Track Viewer. By viewing in the Last Known Locations in ArcGIS Pro, I see there are 348 users who have actually started tracking. I'd like to be able to compare the users in the track view to the last known locations layer to determine those who have not yet started tracking but don't see a way to do that. Thanks, Mele
... View more
02-15-2023
08:20 AM
|
0
|
0
|
853
|
|
POST
|
I think this will work for what I needed // Samples: https://arcg.is/38SEWWz var fs = FeatureSetByPortalItem(Portal('https://www.arcgis.com'), '22c15bddfadf42f262fbd15', 1, ['*'], true); var i = FeatureSetByPortalItem(Portal('https://www.arcgis.com'), 'asdasdfafasdf', 0, ['*'], true); for (var f in i) { var is = Intersects(f, fs); } return is;
... View more
02-04-2023
11:12 AM
|
0
|
0
|
1267
|
|
POST
|
I would like to be able to find the Features in one FeatureSet that Intersect the Features in another FeatureSet var fs = FeatureSetByPortalItem(Portal('https://www.arcgis.com'), '2dfsafas62fbd15', 1, ['*'], true); var i = FeatureSetByPortalItem(Portal('https://www.arcgis.com'), '5c81afa1a04d438a9316dada1', 1, ['*'], true); var intersectLayer = Intersects(i,f); return intersectLayer; I am obviously missing something as the above doesn't work. Let me know what I am doing wrong here. Thanks, Mele
... View more
02-04-2023
10:24 AM
|
0
|
1
|
1300
|
|
POST
|
In SQL this works dispatch_date >= CONVERT(date, GETDATE())
... View more
01-26-2023
03:14 PM
|
2
|
0
|
1904
|
|
POST
|
Thank you. Does that go in SQL view? That didn't work there. Nor here
... View more
01-26-2023
02:30 PM
|
0
|
0
|
1920
|
|
POST
|
Colin, It took me a bit to double back to this. We have been busy with the Barrett Jackson car auction. We've been tracking our public safety crews with fieldmaps. All users are on iOs with varying devices and versions of the OS. We are not requiring that our users actually 'use' field maps. So if it is just sitting in a medical bag or in an officers gear we would like it to keep tracking. We found that setting the always on did that while the other settings did not. We are gearing up for WMPO, but so far Barrett Jackson seems to be working well for situational awareness via FieldMaps Mele
... View more
01-26-2023
02:24 PM
|
0
|
1
|
5515
|
|
POST
|
I am trying to get all the Fire Incidents that occurred today. dispatch_date = CURRENT_DATE() Does not work in ArcGIS Pro. What am I doing wrong here? Thank you, Mele
... View more
01-26-2023
02:17 PM
|
0
|
3
|
1932
|
|
POST
|
We are using field maps to track our public safety personnel. One thing that has been a nuisance is that we have to make sure that each user's iOS device Privacy & Security Location Services is set to 'Always' for field maps or their location becomes stale. I was hoping that MDM or a URL parameter would assist with this, but don't see this as an options. We've had to make sure that 'Always' is selected on each device. Thank you for any insights, suggestions, Mele
... View more
01-24-2023
03:36 PM
|
0
|
3
|
5563
|
|
POST
|
When searching in a Web AppBuilder app, the search widget only shows results that begin with the value and none that contain the typed in value. The search is using feature layers from AGOL Any suggestions? I am pretty sure we had this working previously Thanks, Mele
... View more
01-23-2023
03:17 PM
|
0
|
1
|
808
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 02-27-2026 09:23 AM | |
| 1 | 02-26-2026 06:47 AM | |
| 3 | 10-20-2025 05:21 AM | |
| 1 | 03-13-2015 04:39 PM | |
| 1 | 09-18-2025 08:33 AM |
| Online Status |
Offline
|
| Date Last Visited |
Monday
|