|
POST
|
From what I have heard, the geometry changes are still baking, didn't quite rise in time for the 10.4.0 release. I hope indexing and slicing bake enough for the 10.4.1 release. I would like to see indexing and slicing return other geometry objects, but I get the impression they will return ArcPy arrays much like getPart.
... View more
02-19-2016
03:00 PM
|
0
|
0
|
1774
|
|
POST
|
It would be great if Esri gave an indication of when, or if, they will move ArcGIS for Desktop (or is it ArcMap) to Python 3.x. The deeper I get into my transition to 3.x, the more little things pile up that are annoyances going back to 2.7.x.
... View more
02-19-2016
02:57 PM
|
0
|
0
|
1774
|
|
BLOG
|
Quite helpful, much easier to visualize, at least for me.
... View more
02-18-2016
09:47 AM
|
0
|
0
|
2007
|
|
POST
|
Not surprising, but a sad state of affairs nonetheless.
... View more
02-18-2016
07:14 AM
|
0
|
0
|
2679
|
|
BLOG
|
Content wise, great, but the animated GIF isn't working for me. At first glance I thought it was clever, but then I got frustrated by not being able to get a decent look at a single projection. Maybe just increasing the cycle time would help, but I am still not sure that wouldn't just create a different issue.
... View more
02-18-2016
07:06 AM
|
0
|
0
|
2007
|
|
POST
|
If you don't mind me asking, what do you think the use of arcpy.Polygon is accomplishing in this script? If the goal is to have the tool create a unique path and name for the output, the standard or best practice is to use either "#" or None (See Tool Output section in Using tools with Python). Even though the output from the Clip tool can be a Python list of geometry objects (using arcpy.Geometry() , not arcpy.Geometry) , I don't know whether doing so will work for later processing in the script. So, I recommend staying with feature classes as the outputs and using one of the standard methods for auto generating unique names. Have you tried using GetParameter instead of GetParameterAsText? I don't know why it should/would make a difference but maybe getting the parameters back as objects might be more predictable than what you are seeing getting them back as text.
... View more
02-17-2016
12:25 PM
|
0
|
0
|
2541
|
|
POST
|
The OP's script isn't copying the results into a list of geometry objects, it is creating in-memory feature classes. I will elaborate in a comment to the OP.
... View more
02-17-2016
11:59 AM
|
0
|
0
|
2541
|
|
POST
|
Rumor has it that Geometry indexing and slicing is coming at ArcGIS 10.4.1. I am still trying to track down specifics, but what I have heard so far is at least a glimmer of hope.
... View more
02-12-2016
01:34 PM
|
1
|
5
|
1774
|
|
POST
|
I tested some variations of your situation in 10.3.1 using file geodatabases, and I don't run into that error. At this point, all I can suggest is going down the Esri Support incident route.
... View more
02-12-2016
10:11 AM
|
0
|
1
|
3698
|
|
POST
|
It appears you are using SQL Server native spatial types. That said, it is best to be explicit and not make people guess. First, STIntersects isn't the method you need. It is a check of intersection and returns a SqlBoolean. Below is an example using SQL Server native spatial types to retrieve the intersecting area of 2 polygons: Declare @g1 geometry;
Declare @g2 geometry;
SET @g1 = 'POLYGON((0 0, 10 0, 10 10, 0 10, 0 0))'
SET @g2 = 'POLYGON((5 5, 15 5, 15 15, 5 15, 5 5))'
SELECT @g1.STIntersection(@g2).STArea()
... View more
02-12-2016
07:40 AM
|
1
|
1
|
4610
|
|
POST
|
A few questions: Everything between 10.2.x and 10.3.x is the same? Background processing enabled/disabled for both? 64-bit Geoprocessing installed/not for both? If connecting to SDE, same DMBS drivers installed for both? What is the backend storage for the Summary_CondoPin table? What does ArcPy.AddFieldDelimiter return for field delimiters? Although using AddFieldDelimiter feels anal retentive at times, it is the most robust way of building expressions so they are transferrable across multiple data stores. Does using the following work? arcpy.MakeTableView_management(
Summary_CondoPin,
'Frequency_CondoPin',
"""{} > 1 AND {} IS NULL""".format(arcpy.AddFieldDelimiters(Summary_CondoPin,
'FREQUENCY'),
arcpy.AddFieldDelimiters(Summary_CondoPin,
'Comment')))
... View more
02-12-2016
06:25 AM
|
0
|
3
|
3698
|
|
POST
|
When it comes to VBScript and ArcGIS, do what Nancy does, "just say no." Model Builder has its place, it just isn't in my toolbox. I encourage you to learn Python, it will open up ArcGIS to you much more than Model Builder, and the skills are infinitely more transferrable. The following should work for you. Just paste the code into the interactive Python window and call the add_table_names function with the geodatabase in question. The script will find all tables and feature classes not in feature datasets and append the name of the table or feature class as a new field. If you want to recurse into the feature datasets, it isn't too hard to update the code. def add_table_names(workspace):
desc = arcpy.Describe(workspace)
for child in desc.children:
if child.datasetType not in ('Table', 'FeatureClass'): continue
arcpy.AddField_management(child.catalogPath, "FC_NAME", "TEXT")
arcpy.CalculateField_management(child.catalogPath,
"FC_NAME",
"'{}'".format(child.baseName),
"PYTHON_9.3")
... View more
02-11-2016
03:17 PM
|
1
|
0
|
2501
|
|
BLOG
|
Timothy Hales, these changes are definitely a step in the right direction. One question with "Likes?" I can't recall if they have any points associated with them or not. Regardless, do they add value, and if so, how? For example, do more likes affect search results? I think the changes to "Helpful" are good, but I think there is a larger issue of people marking content as Helpful as a defacto Like because liking something is so misunderstood.
... View more
02-10-2016
09:37 AM
|
2
|
0
|
1301
|
|
POST
|
Esri publishes a whole book (Esri Press - Web GIS: Principles and Applications) on the topic, if you are so inclined to expand your understanding. Well, that would be Esri's understanding of the topic, but I assume that is the perspective you are interested in since you ask the question on GeoNet.
... View more
02-07-2016
07:14 PM
|
1
|
0
|
1895
|
|
POST
|
Carmen Bremmer, very thoughtful response, and I second most or all of your points. One comment or point I would add is demonstrated ability to play well with others, i.e., be a team player. The less bench depth an organization has in given roles, the more important it is for a person to be socially and organizationally aware. The best technical and business skills aren't worth anything if they can't be applied to produce actual benefit within an organization.
... View more
02-07-2016
08:27 AM
|
2
|
1
|
6511
|
| 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 |
yesterday
|