|
POST
|
That had to do with an ArcSDE Application Server (which don't exist any more, so the point is moot). Database location has been flexible since the introduction of Direct Connect 10.0/10.1. - V
... View more
08-08-2017
11:33 AM
|
2
|
1
|
5447
|
|
POST
|
That's a low-level database error, not anything Esri could have control over. A database server reboot or over-enthusiastic router configuration could generate this error, but there really is no way for us to know the cause. - V
... View more
08-07-2017
06:07 AM
|
1
|
0
|
2939
|
|
POST
|
There are an infinite number of coordinate systems that could be added, but only in the context of a finite number of known projections. Only Esri can add to the projection list (at least, if you wanted to deproject from it or project to it), but you could create a new CS string based on a known projection with alternate distance units or a custom prime meridian. Each new release of ArcGIS has a Projection Engine update, so the easiest way to increase the probability of your coordsys being supported is to make sure you're using a recent build of ArcGIS - V
... View more
08-04-2017
11:24 AM
|
1
|
0
|
8959
|
|
POST
|
Always be careful to understand what an ArcPy function returns. ListFields returns a list of Field objects, which while they include name, also includes type, isNullable, length and a number of other properties. You'd need to use a list comprehension to map the array of Fields to an array of names. - V
... View more
08-04-2017
09:49 AM
|
1
|
0
|
7706
|
|
POST
|
It can be a pain, because the Pro documentation is often found first in searches, but it's important to use the documentation for the software you are actually using. I generally go to desktop.arcgis.com, then Search, and specify the ArcMap flavor (vice "any"). Pro is sufficiently different that you shouldn't ever rely on its Python docs while using 32-bit Desktop or 64-bit Background Geoprocessing (it's even a different Python). - V
... View more
08-04-2017
07:13 AM
|
1
|
0
|
1852
|
|
POST
|
You can't register a view with a geodatabase with 10.3.1 Desktop. If you go to the appropriate documentation, you'll see the list of objects which can be registered is different ("feature classes, tables, and raster layers" vice "feature classes, tables, views, and raster layers"). The ability to register views is new at 10.5.x. - V
... View more
08-04-2017
06:18 AM
|
3
|
2
|
1852
|
|
POST
|
No, you never need to install any ArcGIS 10.2.x product for ArcGIS 10.5.x access to anything. Keep in mind that Desktop is 32-bit while Server is 64-bit, so you must have 64-bit Oracle libraries installed for successful Server connection. - V
... View more
08-02-2017
10:48 AM
|
1
|
1
|
2644
|
|
POST
|
PostgreSQL 9.6 is not supported by geodatabases yet, so it can't have an Enterprise geodatabase, so ALL of the geodatabase tables are missing. - V
... View more
08-01-2017
04:22 AM
|
0
|
0
|
2000
|
|
POST
|
So a line on the border of a polygon is not with the polygon, but if I add a single point to the line that is inside the polygon the line suddenly is within the polygon If you look at the Clementini* rules, this makes perfect sense. A geometry is composed of boundary and interior. The boundary of a line is the start and end points; the boundary of a polygon is its perimeter ring(s) (points don't have interior). So the "within" relationship tests for an intersection of the (line) figure with the (polygon) interior, and "line on boundary" does not intersect the polygon interior (empty set), so it's not "within". Then there's "Completely Within" and "Contains", and "Contained", but I have a scrum, so I'm not going there... - V *Eliseo Clementini, Paolino Di Felice, and Peter van Oosterom, A Small Set of Formal Topological Relationships Suitable for End-User Interaction, Proceedings of the Third International Symposium on Advances in Spatial Databases, p.277-295, June 23-25, 1993
... View more
07-12-2017
08:01 AM
|
1
|
1
|
5748
|
|
POST
|
You're not helping yourself by providing a zip file. The script should by small enough to fit in the question page, so your participation will be hurt by a requirement to download, unzip, and open. - V
... View more
07-11-2017
10:46 AM
|
0
|
0
|
3832
|
|
POST
|
Python is a bytecode lanuage, much like Java (just more just-in-timey), and Java has gotten blazingly fast. - V
... View more
07-11-2017
06:51 AM
|
0
|
0
|
2631
|
|
POST
|
Please state which fields you cannot delete. Some RDBMSes do not support DROPping any columns, so explicitly stating the RDBMS in use and the exact version, with the exact versions of Desktop and Server is highly recommended. Screenshots to explain the error in context are not unwarranted. Best practice is to establish an "owner" login/schema which actually owns spatial data, and one or more "access" logins through which the data manipulated (with access managed through roles). The account used to publish data to web clients should have the absolute minimum access possible. I haven't ever used archiving, but I expect it would complicate the ability to drop columns. - V
... View more
07-10-2017
01:03 PM
|
1
|
0
|
1682
|
|
POST
|
The SDE user login is not the highest level of access. In fact, it shouldn't have any special privileges at all, and, as a rule, should not ever be used. The table owner is the highest level of authority for any specific table and the RDBMS administrative user, which technically trumps owner, shouldn't be used at all (huge denial of service risk). - V
... View more
07-10-2017
12:16 PM
|
1
|
2
|
1682
|
|
POST
|
Joshua -- Perhaps it was the fact that I was using a VM, but I got different results on successive executions of a benchmark test, with some iterations showing each of the three mean methods as being fastest(!). I needed to iterate the algorithm invocations ten thousand times, using an array of length 10,000 in order to make more than a hundredth of a second difference, so I guess the most intuitive algorithm for the developer is the "best" in this context. - V
... View more
07-07-2017
11:11 AM
|
1
|
2
|
2630
|
|
POST
|
Remove the brackets, which compile a list (maybe) to pass the N parameters, or change the function to receive a list. Right now you're just violating Field Calculator linkage rules.
... View more
07-07-2017
07:35 AM
|
1
|
0
|
2630
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 3 weeks ago | |
| 2 | 06-08-2026 09:13 PM | |
| 1 | 05-29-2026 12:51 PM | |
| 1 | 06-01-2026 06:03 PM | |
| 2 | 05-29-2026 08:31 AM |