|
POST
|
Since you can install the SQL tools, can you run a SQL trace while you're trying to connect to SQL from Pro? I have kept many cases away from busy tech support by looking at the traces generated by SQL profiler, to realize the problem was on my end (e.g insufficient permissions, etc...)
... View more
01-23-2020
04:01 AM
|
1
|
0
|
6281
|
|
POST
|
That's very odd that they're able to reproduce the performance issue yet no bug. Even odder that your processor appears to exceed ArcGIS Pro 2.4 system requirements—ArcGIS Pro | Documentation but tech support is telling you it doesn't. Did they cite some other documentation to substantiate " they claim my CPU speed is a slightly below spec so I am at a stand-still with regards to technical support". If there are different vendor standards the delineate when Pro will or won't be supported based on processor that's not already in ArcGIS Pro 2.4 system requirements—ArcGIS Pro | Documentation I'd love to see it. When you say stand-still, are they wanting to close the case because of your CPU (which appears to meet specs)? This is opposite of my experience with tech support, they move cases to bugs quite quickly and never tell me something is unsupported that actually is. What I think is going on though, is something similar to a case we had where we were told the minimum requirements were what is required for the software to start. So what you could be hearing is "yeah, your CPU allows Pro to start, but loading a project? Good luck!" Let us know when/if you move this to a bug. You will be one of the rare few people that actually got tech support to reproduce one of the many elusive performance problem that seems to be universally reproducible when reading GN posts but not in an ESRI lab. You should get an award. FWIW I and many others experience the same issue when opening projects that have many maps, layouts, database connections, server connections, portal connections, or any combination thereof. Not only is opening the project slow, publishing is slow, opening a map is slow, running a GP tool is slow. Looking at traces and intercepts, I see lots of traffic going to every connection in every "element" despite the fact that I have only one map open. Your issue may be related to one or some of the very many issues mentioned in ArcGIS Pro: 2.4.2: In general, ArcPro has less performance than ArcMap, and possible https://community.esri.com/thread/242321-arcpro-242-arcpro-is-much-slower-than-arcmap-in-publishing-performance-issue
... View more
01-23-2020
03:37 AM
|
0
|
0
|
4860
|
|
POST
|
"Currently, there are no plans to enable creation or editing of Data Reviewer Batch Jobs in ArcGIS Pro." What's the use case supporting that?
... View more
01-23-2020
03:11 AM
|
0
|
0
|
3123
|
|
POST
|
"... open a project they are reporting that their load times are about 7 minutes" What's the bug # they assigned to that? "claim my CPU speed is a slightly below spec ", what is your CPU speed/type/# of cores
... View more
01-22-2020
11:43 AM
|
0
|
13
|
5494
|
|
POST
|
No, I got side tracked, but this is happening with AGOL as well, for quite a large number of layers, so a TS case will be opened soon. Quite frustrating.
... View more
01-22-2020
11:28 AM
|
0
|
5
|
1872
|
|
POST
|
I may be in a 4th case here. The data is in a GDB feature class and is NAD 83 UTM Zone 17. I'm trying to use an attribute rule to populate a text field (when I say "display", we are porting the data into a downstream non-gis application where such conversions aren't possible)
... View more
01-22-2020
04:32 AM
|
0
|
2
|
5799
|
|
POST
|
Ah yes the elusive scroll wheel on the mouse. I'm having a hard time wrapping my head around how to eliminate the convert from meters function, and apply the other two functions directly to (Geometry($feature).X, Geometry($feature).Y);
... View more
01-22-2020
04:14 AM
|
0
|
1
|
5799
|
|
POST
|
Every reference I see on the math behind this calls for an integer conversion, including the original help article for Arc Map, yet Arcade seems to have no Integer function. What am I missing? Convert degrees/minutes/seconds angles to or from decimal angles - Office | Microsoft Docs Decimal Degrees to Degrees,Minutes,Seconds converter
... View more
01-22-2020
04:05 AM
|
0
|
5
|
5799
|
|
POST
|
How To: Convert Decimal Degree values to Degree Minute Seconds values using the Field Calculator is pretty handy, so is Convert Coordinate Notation—Data Management toolbox | ArcGIS Desktop , but what I need is for a display/label expression to take attributes from a feature class (lat/lon in decimal degress) and display them as Deg, Min, Sec. Seems like Arcade would be handy for this sort of thing, but not finding any thing to start with.
... View more
01-21-2020
12:44 PM
|
0
|
10
|
6869
|
|
POST
|
I see Geometry Functions | ArcGIS for Developers exists but how would one call that to populate separate lat and lon fields with an attribute rule?
... View more
01-16-2020
12:06 PM
|
0
|
8
|
4444
|
|
POST
|
That was the first thing I tried...exported everything to a FGDB, same result. Both datasets have same projection.
... View more
01-16-2020
10:06 AM
|
1
|
1
|
1745
|
|
POST
|
From arcade-expressions/CopyValueIntersectingFeature.md at master · Esri/arcade-expressions · GitHub , I have // This rule will populate the edited features field with a value from an intersecting feature
// Value to copy from the intersected feature
var intersecting_field = "GRTS_ID";
//Field rule is assigned to in the Attribute Rule
var feature_field = "GRTS_ID";
// Create feature set to the intersecting class using the GDB Name
var intersecting_featset = FeatureSetByName($datastore, 'NABAT_CONUS_10x10_KM_GRID_CELLS_PRJ', [intersecting_field], true);
// Intersect the edited feature with the feature set and retrieve the first feature
var intersected_feature = First(Intersects(intersecting_featset, $feature));
// Check to make sure there was an intersected feature, if not, return the original value
if (intersected_feature == null)
{
return $feature[feature_field];
}
// If the intersected feature is null, return the original value
if (IsEmpty(intersected_feature.GRTS_ID))
{
return $feature[feature_field];
}
// Return the intersected features value
return intersected_feature[intersecting_field]; and Where NABAT_CONUS_10x10_KM_GRID_CELLS_PRJ is a polygon feature class with the field GRTS_ID (Type Long) and the field I'm wanting to edit in the source feature class is also GRTS_ID (Type Long). What is happening though is on insert and update, the GRTS_ID field in the feature class being edit instead gets the ObjectID of the intersecting Polygon. 100% sure I've gotten something wrong here.
... View more
01-16-2020
08:32 AM
|
1
|
3
|
1875
|
|
POST
|
With the following, I get an error. Is it even possible to use a feature service as an input in an attribute rule? What I'm trying to do is calculate a value on insert/update based on the intersecting value from the feature service. var fsPolyBoundary = FeatureSetByName($datastore, "https://services1.arcgis.com/fBc8EJBxQRMcHlei/arcgis/rest/services/NABAT_CONUS_10x10_KM_GRID_CELLS/FeatureServer/0", ["GRTS_ID "], true)
var fsPoly = Intersects(fsPolyBoundary, Geometry($feature))
var loc = First (fsPoly)
var name = ""
if (loc == null)
return {"errorMessage": "Point must be created in a Grid."}
else
name = loc.LOC_NAME
return name + " - " + $feature.LOC_NAME;
... View more
01-16-2020
06:23 AM
|
0
|
1
|
843
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-17-2022 12:19 PM | |
| 1 | 03-14-2019 06:24 AM | |
| 1 | 07-12-2018 09:29 AM | |
| 1 | 06-27-2019 12:08 PM | |
| 2 | 09-23-2019 11:03 AM |
| Online Status |
Offline
|
| Date Last Visited |
3 weeks ago
|