|
POST
|
I saw that. Problem there is, how do your sort revers-alphabetically. In Arcmap, all I had to do was click on the "Type" column and sort types up or down, but I could still see them all. With Pro, now an extra few mouse clicks....
... View more
06-02-2017
11:34 AM
|
1
|
1
|
1382
|
|
POST
|
Any update on when the 10.5 version will be released?
... View more
06-01-2017
05:09 AM
|
2
|
0
|
14594
|
|
IDEA
|
Any update on when ESRI will be releasing the MUTCD symbols?
... View more
05-25-2017
11:01 AM
|
3
|
0
|
6009
|
|
POST
|
I have previously logged a case on this and attached it to the bug. Hopeful that a patch is released asap.
... View more
05-19-2017
07:59 AM
|
1
|
0
|
4485
|
|
POST
|
4 cores doesn't even come close to what you need with those numbers. I'd go to at least 16.
... View more
05-18-2017
06:45 AM
|
0
|
1
|
4538
|
|
POST
|
CREATE TRIGGER [dbo].[LAT_LON]
ON [dbo].[SOME_FEATURE_CLASS]
after INSERT,UPDATE NOT FOR REPLICATION
AS
BEGIN
SET NOCOUNT ON;
UPDATE p SET
SHAPE = CASE WHEN i.SHAPE IS NOT NULL
THEN p.SHAPE ELSE Geography::STPointFromText('POINT('
+ CAST(p.LON AS VARCHAR(20)) + ' '
+ CAST(p.LAT AS VARCHAR(20)) + ')', 4269) END,
LON = CASE WHEN p.SHAPE IS NULL THEN p.LON ELSE p.SHAPE.Long END,
LAT = CASE WHEN p.SHAPE IS NULL THEN p.LAT ELSE p.SHAPE.Lat END
END
... View more
04-24-2017
08:13 AM
|
1
|
1
|
2585
|
|
BLOG
|
It's very disappointing to have to document a user story to justify something we already use in ArcMap, which is going away, and won't be able to do in Pro. I'm spending more and more time looking at QGIS, not confident at all that the when ArcMap is gone for good, that Pro will even meet 1/4 of my needs.
... View more
04-06-2017
09:43 AM
|
5
|
0
|
24079
|
|
POST
|
Even at 300 DPI, the pdf file is 3GB (there is a raster in here). Can't go below 300, or turn off the raster, as the quality requirement is quite high, and I have to print 9 copies of this thing. I always export PDF with no layers or georeference.
... View more
03-20-2017
05:39 AM
|
0
|
1
|
1664
|
|
POST
|
Arcmap 10.3.1, HP T2300 with the latest drivers. I have a 86 by 160 inch wall map that, no matter what setting I've tried, I simply cannot get tiled plotting to output strips where the edges line up correctly. Here is the latest setting I've tried, per HP tech support. Every single combination of every single printer option has been tried, with the results much much worse then the latest setting, which I've screen-shotted below. The first tile appears to print the correct width, but the second tile (strip) has about 2 inches of the west (left) extent clipped. Due to a really Mickey Mouse safety policy, we are unable to print with margins and use an xacto to trim them (and complete lack of skill trimming would make that a disaster anyway). Exporting to PDF and using the PDF driver is not an option either, as the export creates a multiple GB PDF file, which our Donald Duck computers can't handle (dropping the resolution is not in the cards, either). Surely one of you has figure this out? At this point, I've burned through 50$ in paper and ink trying to make this work, FE/Kinkos wants 250$ just for 1 (we need to print 12). Trying "Automatically by printer" resulted in much worse edge matching, NOT making the customer paper size 8 mm wider was even worse.
... View more
03-13-2017
05:36 AM
|
0
|
3
|
2189
|
|
POST
|
Seems to be related to the blow up of Amazon: AWS Service Health Dashboard - Feb 28, 2017 PST
... View more
02-28-2017
01:05 PM
|
1
|
0
|
2587
|
|
BLOG
|
Great summary! Unfortunately, many of the options do not allow for "alt-text" image description to be rendered in the ESRI online apps, in order to be section 508-compliant.
... View more
02-21-2017
08:20 AM
|
2
|
0
|
2715
|
|
POST
|
What happened to https://js.arcgis.com ?!?!? Same issue with https://js.arcgis.com/3.19/init.js https://js.arcgis.com/4.2/esri/css/main.css
... View more
02-16-2017
11:14 AM
|
0
|
3
|
1674
|
|
BLOG
|
More "Feature Class Already Exists" errors. So I've been getting a lot of this, and getting really frustrated: ERROR 000258: Output HWA.gdb\HWA_MON_SRV_GRSM_HWA_Mon already exists
Failed to execute (CreateFeatureclass). frustrated enough to run the py, 1 line at a time, to see what I was doing wrong. Near the end of the whole thing, a line asks the length of the string that is holding the table names, and I found that it was always returning "0", which, would trigger the create tables part of this, hence the error. So: >>> prefix='HWA_MON_SRV'
>>> arcpy.env.workspace = 'HWA.gdb'
>>> originalWorkspace = arcpy.env.workspace
>>> wildcard = '*{0}*'.format(prefix) if prefix != '' else '*'
>>> featureClasses = arcpy.ListFeatureClasses(wildcard)
>>> tables = arcpy.ListTables(wildcard)
>>> allTables = featureClasses
>>> allTables.extend(tables)
>>> outTables = []
>>> for t in allTables:
tableName = t.split('.')[-1]
nameParts = tableName.split('_')
if '__ATTACH' not in t:
if nameParts[0] == prefix or prefix == '':
outTables.append(t)
>>> arcpy.env.workspace = originalWorkspace
>>> outTables
[]
>>> wildcard
'*HWA_MON_SRV*'
>>> nameParts
[u'HWA', u'MON', u'SRV', u'BiocontrolSpeciesData'] Sure enough, outTables is NULL. There's a tablesplit thing going on here, based on the underscore "_". So what if I DO NOT include an underscore in my prefix name? >>> prefix='HwaMonSrv'
>>> arcpy.env.workspace = 'HWA.gdb'
>>> originalWorkspace = arcpy.env.workspace
>>> wildcard = '*{0}*'.format(prefix) if prefix != '' else '*'
>>> featureClasses = arcpy.ListFeatureClasses(wildcard)
>>> tables = arcpy.ListTables(wildcard)
>>> allTables = featureClasses
>>> allTables.extend(tables)
>>> outTables = []
>>> for t in allTables:
tableName = t.split('.')[-1]
nameParts = tableName.split('_')
if '__ATTACH' not in t:
if nameParts[0] == prefix or prefix == '':
outTables.append(t)
>>> outTables
[u'HwaMonSrv_GRSM_HWA_Mon', u'HwaMonSrv_IndividualTree', u'HwaMonSrv_BiocontrolSpeciesData']
>>> nameParts
[u'HwaMonSrv', u'BiocontrolSpeciesData']
>>> wildcard
'*HwaMonSrv*' And now the length of the variable returns "3". Take home message: Don't include underscores in your prefix string!
... View more
02-16-2017
10:59 AM
|
1
|
0
|
29428
|
| 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
|