|
POST
|
Ahhhh I see what you're doing....you're deploying your own WAB's.....
... View more
10-22-2019
06:34 AM
|
0
|
0
|
8284
|
|
POST
|
I have created several dozen WAB apps, still a head scratcher where this folder is. What is the FULL path on a default installation?
... View more
10-22-2019
04:12 AM
|
0
|
2
|
8284
|
|
POST
|
In your original post "If you just want it in an application add it into \server\apps\app#\widgets folder.", for the life of me, I cannot find the \server\apps\app#\widgets folder (yes I have an app#), or even the \server\apps\ folder?
... View more
10-21-2019
10:55 AM
|
0
|
4
|
8353
|
|
POST
|
It does work! /blogs/HackingArcSDE/2014/12/31/re-order-attribute-domain-values
... View more
10-17-2019
11:28 AM
|
1
|
0
|
3225
|
|
IDEA
|
Awesome! A security guide is helpful too. We don't necessarily need it to be DISA-approved format for our purposes. M$ releases many "Security Checklists" that are outside of the STIG process that can still serve as authoritative hardening processes, whereas pages of software documentation may not. IN other words, handing something to an Auditor and saying "yes, we are following vendor guidelines, here's their list". You hit the nail with the word "Authorization".
... View more
10-08-2019
11:17 AM
|
2
|
0
|
4027
|
|
IDEA
|
"Almost" a duplicate of Pro: Add Calculate Cache Size to sharing dialogue , which is in product plan. I suspect Service Properties will be added too....
... View more
10-08-2019
03:45 AM
|
5
|
1
|
4209
|
|
IDEA
|
Kory Kramer I vaguely recall showing this to you during a screen share during our ID tool discussion(s). The issue here is in ArcMap, there is some sort of "snapping" going on when clicking the ID tool "near" a point. The Pro identify tool is a regression in functionality and useability: Now requires two hands to execute Introduces more wrist movement(s) Introduces more time needed to execute Not exactly smooth on laptops with nothing but a touchpad, tablets, or touch screens. The drag-the-box method requires more precision when points are tightly clustered So let's put the dragging boxes aside: As the OP points out, getting the mouse cursor EXACTLY on the point also Introduces more wrist movement(s) Introduces more time needed to execute Not exactly smooth on laptops with nothing but a touchpad, tablets, or touch screen
... View more
10-08-2019
03:43 AM
|
1
|
1
|
7189
|
|
POST
|
You'll have to be more specific about what the screen shots are showing (exactly what type of data? ) Not showing SDE and FGDB feature class dates in Cat View is a known issue. Shapefile dates do display.
... View more
10-07-2019
05:02 AM
|
1
|
2
|
2299
|
|
POST
|
I'm using 19.1 and I don't see this option "Device will use a tile package it already has". Everytime I download a new map, it brings the entire basemap tile package with it, unlike Collector Classic, which DID have a setting to allow to use the current side-loaded tile package. We are not able to use Aurora due to this regression.
... View more
10-01-2019
09:36 AM
|
0
|
1
|
3278
|
|
POST
|
The create points to path, where the points will have a unique ID denoting that n number of points belong to the same path, is oft discussed yet never clearly answered, with the defunct and not-allowed-to-install Hawthes tools often cited as a solution. Has anyone figured out how to do this in Pro? What I have is several hundred thousand pings from several thousand aircraft transponders, need to convert those points to paths showing direction of travel. creating animal movement paths Mapping points and connecting them with a line - mapping westward migration. joining  points to make a line The goal is to join point data to lines. How To: Create connection lines between two points Is Points To Line the solution here?
... View more
09-30-2019
06:47 AM
|
0
|
2
|
2526
|
|
POST
|
10.7.1.2.4, SQL 2014 ENT, Storage Type Geography. What's different from your post is, my source and destination tables are in different database........
... View more
09-26-2019
10:38 AM
|
0
|
1
|
1575
|
|
POST
|
So I'm following https://community.esri.com/people/Christian_Wells-esristaff/blog/2014/10/01/iterating-insert-geometry-statements-via-t-sql which I have used many many many many mnay many many times in the past to do bulk inserts from non-SDE sources into a SDE feature class. Now I'm on SDE 10.7.x and using the following: DECLARE @RowCount INT
SET @RowCount = (SELECT COUNT(*) FROM [db1].[dbo].source_table WHERE FCSUBTYPE = 22 OR FCSUBTYPE = 23 OR FCSUBTYPE = 24 )
DECLARE @iterator INT
SELECT @iterator = MIN(OBJECTID) FROM [db1].[dbo].source_table WHERE FCSUBTYPE = 22 OR FCSUBTYPE = 23 OR FCSUBTYPE = 24
WHILE @iterator is NOT NULL
BEGIN
DECLARE @id as integer
EXEC dbo.next_rowid 'dbo', 'dest_table', @id OUTPUT;
INSERT INTO [db2].[dbo].[dest_table]([OBJECTID],[CREATEDATE],[EDITDATE],[MAPMETHOD],[MAPSOURCE],[SOURCEDATE],[XYACCURACY],[NOTES],[GlobalID],[COUNTY],[MANAGEMENTZONE],[QUADNAME],
[ROAD],[PARKDISTRICT],[STATE],[WATERSHED],[TRAIL],[X_COORD],[Y_COORD],[LAT],[LON],[ELEVATION],[LOC_NAME],[FC_SUBTYPE],[LOCATION_DESCRIPTION],[Shape],[STREAMNAME],[YEAR],[VALID_RESULT],
[PUBLICDISPLAY],[DATAACCESS],[UNITCODE],[UNITNAME],[REGIONCODE],[CREATEUSER],[EDITUSER])
SELECT @id, [CREATE_DATE],[EDITDATE],CASE WHEN [MAPMETHOD] ='HDIG' THEN 'Digitized' WHEN [MAPMETHOD] ='UNKN' THEN 'Unknown' WHEN [MAPMETHOD] ='AGPS' THEN 'Autonomous GPS' WHEN [MAPMETHOD] ='DERV' THEN 'Feature Extraction' WHEN [MAPMETHOD] ='' THEN 'Unknown' WHEN [MAPMETHOD] IS NULL THEN 'Unknown' END AS [MAPMETHOD],
[MAPSOURCE], [SOURCEDATE],CASE WHEN [HERROR] = '>10m <=100m' THEN '>=14m' WHEN [HERROR] = '>1m <=5m' THEN '>=1m and <5m' WHEN [HERROR] = '>5000m' THEN 'Scaled' WHEN [HERROR] = '>5m <=10m' THEN '>=5m and <14m' WHEN [HERROR] = 'Unknown' THEN 'Unknown' WHEN [HERROR] = '' THEN 'Unknown' WHEN [HERROR] IS NULL THEN 'Unknown'END AS [XYACCURACY],
[NOTES],[GIS_LOCATION_ID],[COUNTY],[MANAGEMENTZONE],[QUADNAME],[ROAD],[PARKDISTRICT],[STATE],[WATERSHED],[TRAIL],[X_COORD],[Y_COORD],[LAT],[LON],[ELEVATION],[LOC_NAME],[FCSUBTYPE],[LOCATIONDESCRIPTION],
[SHAPE],[STREAMNAME],[YEAR], CASE WHEN [VALID] = 'Certified' THEN 'Certified' WHEN [VALID] = '' THEN 'Raw' WHEN [VALID] IS NULL THEN 'Raw' END AS [VALID_RESULT],'No Public Map Display' AS [PUBLICDISPLAY],
'Secure Access Only' AS [DATAACCESS], 'GRSM' AS [UNITCODE], 'Great Smoky Mountains National Park' AS [UNITNAME], 'SER' AS [REGIONCODE], 'GRSM User' AS [CREATEUSER], 'GRSM User' AS [EDITUSER]
FROM [db1].[dbo].source_table WHERE FCSUBTYPE = 22 OR FCSUBTYPE = 23 OR FCSUBTYPE = 24 AND objectid = @iterator;
SELECT @iterator= MIN(OBJECTID) FROM [db1].[dbo].source_table WHERE @iterator < OBJECTID AND FCSUBTYPE = 22 OR FCSUBTYPE = 23 OR FCSUBTYPE = 24
END Which results in the whole thing looping as many times as there are objects meeting the where clause. E.g it's selecting all 566 rows, 566 times. Christian Wells This leads me to believe that how a new OID is generated has changed since that 2014 blog post? I save all my SQL code, so I opened up the last one I ran successfully on a 10.5.x SDE, and yup, no change other than the where clauses (which I removed to see if that was the cause, which they are not).
... View more
09-26-2019
10:01 AM
|
0
|
3
|
1764
|
|
POST
|
I was able to force a crash by having two feature classes from two SDE's open in design view. No crash dump this time (I did send one earlier today from "Create ENT GDB"), only this.
... View more
09-26-2019
05:54 AM
|
0
|
0
|
532
|
|
POST
|
You may want to call tech support and see if you're experiencing BUG-000118068 ArcGIS Pro projects stored in the My Documents folder hosted on a network file share with an offline feature service takes up to 20 minutes to open.
... View more
09-25-2019
06:47 AM
|
2
|
0
|
4084
|
|
POST
|
BUG-000116049 In an ArcGIS Pro layout, the second dynamic text added retains the properties of the first dynamic text within the Element pane. Is shown as implemented.
... View more
09-25-2019
06:45 AM
|
0
|
0
|
1638
|
| 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 |
04-26-2026
07:12 AM
|