|
POST
|
这篇文章似乎是重复的 标注放置重叠在一起无法调节!没有令人满意的设置方案! - Esri Community. 如有重复请删除。
... View more
02-12-2023
07:06 AM
|
0
|
0
|
771
|
|
POST
|
@ChristianWells , you seem to understand the support and defect processes well, so maybe you can have some influence on the following. It would be great if the URLs for bugs and defects were decipherable from knowing the bug or defect. For example, BUG-000094271 has a URL of support.esri.com/en/bugs/nimbus/QlVHLTAwMDA5NDI3MQ== . Whatever the rhyme or reason is behind turning "BUG-000094271" into "QlVHLTAwMDA5NDI3MQ==" isn't documented anywhere. For an organization with tens of thousands of GIS users that logs 50-100 defects and enhancements a year, linking internal documentation to Esri Support documentation is a very manual process. It would be nice if one could determine the URL by knowing the BUG or ENH number. Update: For My Esri, both the old/classic UI and the new UI support URLs that are derived directly from bug or enhancement numbers. For BUG-000094271 and the My Esri classic UI, the URL is: my.esri.com/classic/#/support/bugs/BUG-000094271
... View more
02-11-2023
07:23 AM
|
1
|
2
|
4668
|
|
POST
|
The licensing roles of ArcGIS Server do not depend on whether they are federated or stand-alone. That said, some of the licensed functionality is used by clients through Portal, which would entail federating an ArcGIS Server. If you are currently using Image Server role to publish mosaic datasets, you can continue to do that with 10.8.x or even 11 with a stand-alone ArcGIS Server.
... View more
02-10-2023
12:12 PM
|
1
|
0
|
1374
|
|
POST
|
For certain ArcGIS Server issues, I have given up on trying to understand why and focus on what needs to be done to resolve the matter. If the problem is recurring than knowing why is important, but I have found trying to understand why something broke is often chasing gremlins or ghosts, and Esri Support is often of little help. Since you have a two machine site/cluster, I recommend unregistering the misbehaving ArcGIS Server, recycling the ArcGIS Server service on the misbehaving machine, and then re-registering it with the site. I have found this often corrects random corruptions of an ArcGIS Server deployment on a machine. As to why it happened, I stopped chasing that question a long time ago because I got more important tasks to focus my time on.
... View more
02-07-2023
08:40 AM
|
0
|
1
|
6308
|
|
POST
|
Managing the email separate from AGOL and My Esri, that seems less than ideal. I will wait to see if anyone from the EC team has any additional comments before e-mailing them directly.
... View more
02-02-2023
02:19 PM
|
0
|
1
|
2375
|
|
POST
|
Well, the subject sums it up. I changed my e-mail in My Esri and AGOL for the same user profile I log into Esri Community with, but EC keeps sending e-mails to my old address. I have poked around EC, but I can't find where to change the e-mail.
... View more
02-02-2023
12:17 PM
|
1
|
3
|
2458
|
|
POST
|
If you are using Windows Server 2012 R2, then you won't be able to use the USGS National Map. This really isn't an Esri issue at all, it is a cipher suite mismatch between the Windows OS and the USGS web tier. I mostly point the finger at USGS because it would be rather simple and straightforward to securely allow continued access to USGS National Map from Windows Server 2012 R2 and Windows 8.1.
... View more
01-31-2023
08:11 AM
|
1
|
0
|
9356
|
|
POST
|
Yep, I logged that defect. My organization had approached USGS about adding a couple additional strong ciphers to their web tier, but we eventually got ghosted by them.
... View more
01-31-2023
07:49 AM
|
1
|
2
|
7612
|
|
POST
|
After taking a longer look at your data and code, it seems you are trying to reinvent the product - itertools — Functions creating iterators for efficient looping wheel. I can confidently state that any native Python code someone writes will not outperform the compiled functions in the itertools module. from itertools import product
Fields, Grps = ['FieldA','FieldB','FieldC'], ['GroupA','GroupB','GroupC']
Main = [['DOG','CAT','HORSE'], ['HOUSE','BARN'], ['FIELDS', 'YARD'],['MOUSE','SNAKE','LIZARD','OTHER'],['AQUARIUM','GLASS TANK','SMALL CAGE'],
['HOUSE','APARTMENT','PET STORE'],['COW','PIG', 'SHEEP'], ['FIELDS','PASTURES'], ['BARN','FARM HOUSE','OTHER']]
Main = {g:list(product(*Main[i*3:i*3+3])) for i,g in enumerate(Grps)}
print(Main)
... View more
01-31-2023
07:47 AM
|
0
|
1
|
2674
|
|
POST
|
Code golf might be a fun exercise, but it usually leads to challenging code to read and even poorer performing code at times.
... View more
01-31-2023
07:18 AM
|
0
|
3
|
2677
|
|
POST
|
Dan mentioned several potential issues, please elaborate on what specifically "it" is that worked.
... View more
01-31-2023
07:14 AM
|
0
|
1
|
2785
|
|
POST
|
What operating system are you running? The USGS National Map has a very narrow TLS cipher suite that doesn't work with older MS operating systems.
... View more
01-31-2023
07:10 AM
|
0
|
4
|
7651
|
|
POST
|
As pointed out by @BarryNorthey the specific syntax error you are getting is due to a lack of a colon after your function definition line. Since you are new to Python, I will also point out that best practice according to https://peps.python.org/pep-0008/ : Comparisons to singletons like None should always be done with is or is not, never the equality operators. So, in this case your syntax should not be if ( LC01 == None ) : # which by the way you forgot another colon. but should be if ( LC01 is None ) : As @DanPatterson has already pointed out, for a simple conditional check like this you can rely on Python's conditional expression, aka ternary operator, to handle it rather than defining a function in the code block. "04" if !LC01! is None else !LC01!
... View more
01-29-2023
08:14 AM
|
1
|
0
|
2426
|
|
POST
|
I don't understand these steps: fcs = arcpy.ListFeatureClasses('*Wells*')
if fcs is not None:
for fc in arcpy.ListFeatureClasses("*_WaterWells"): Anything that Line 3 lists, Line 1 will also list, but the opposite isn't true. Since the posted code does nothing to a feature class if it is listed in Line 1 but not Line 3, why bother checking?
... View more
01-26-2023
12:05 PM
|
0
|
0
|
1820
|
|
POST
|
It may be related to your indentations. Try having your blank lines within the common table expression indented the same amount as the other lines.
... View more
01-24-2023
07:02 AM
|
0
|
1
|
2008
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 06-11-2026 07:04 AM | |
| 1 | 07-17-2026 06:54 AM | |
| 2 | 07-06-2026 12:29 PM | |
| 1 | 07-06-2026 12:00 PM | |
| 2 | 06-05-2026 10:30 AM |
| Online Status |
Offline
|
| Date Last Visited |
Wednesday
|