|
POST
|
See this ESRI blog for an answer. Map scale (km/cm) * Viewing distance (cm) Be careful with the tape measure between your screen and eyeball.
... View more
12-09-2015
05:21 PM
|
1
|
4
|
2003
|
|
POST
|
I see you've got this figured out, but for this, why fight with the extents at all? Just buffer the study area, clip those streams in buffered area, buffer streams, clip back to study area. Perhaps it takes more time to buffer the study area than to clip a bunch of extra streams. Maybe it's six one way, half dozen the other, but I'd guess dealing with the fewest streams possible would be a good idea.
... View more
12-09-2015
01:50 PM
|
1
|
6
|
7346
|
|
POST
|
I suppose since you're expanding the extent by some number in all directions, you could just add/subtract that number to/from your original extent, rather than running a buffer process at all (I'm not sure if that's what Dan was getting at. If so, carry on).
... View more
12-09-2015
01:04 PM
|
0
|
9
|
7346
|
|
POST
|
You can make use of the buffer method of the polygon object to make a new buffered polygon geometry: polygonTmp1 = arcpy.Polygon(origExtentPts)
buffPoly = polygonTmp1.buffer(extBuffDist)
newExtent = buffPoly.extent # this returns an 'extent' object. May have to convert to 'polygon'
... View more
12-09-2015
11:33 AM
|
1
|
3
|
7346
|
|
POST
|
Rather than delete your unused data frames, move them off the page (elementPositionX and elementPositionY). As for implementing ArcObjects through Python, it is somewhat difficult to get set up, but it can be done.
... View more
12-09-2015
09:16 AM
|
1
|
1
|
2913
|
|
POST
|
Do you want a convex minimum polygons or concave hull (or neither), and what license level do you have?
... View more
12-09-2015
09:10 AM
|
0
|
0
|
4599
|
|
POST
|
Because TINs will appear sharp at any resolution. Whether or not the triangles will work for your map, I don't know. You can also try Resampling your DEM raster to a smaller cell size.
... View more
12-08-2015
01:01 PM
|
1
|
4
|
2339
|
|
POST
|
Have you considered converting DEM to TIN? Requires 3D Analyst or third party tools..
... View more
12-08-2015
12:44 PM
|
0
|
6
|
2339
|
|
POST
|
You can keep track of this by either adding or subtracting the elementWidth from elementPositionX, or elementHeight and elementPositionY. For example, if your legend is set to anchor to the top left, then to trick it into anchoring in terms of the top right would be: mylegend.elementPositionY = posY - myLegend.elementWidth # add some amount to move the legend
... View more
12-08-2015
11:04 AM
|
2
|
5
|
10931
|
|
POST
|
I don't believe you can directly change the data type from point to multipoint, but you can create a new feature class of type multipoint, then copy/paste the point features from your point to multipoint feature class. You can then transfer the existing point attributes to the new multipoint geometries using Spatial Join. * I'm not sure if there is a single tool that will combine the above steps. I would have guessed Append, but that does not work between point to multipoint feature classes.
... View more
12-07-2015
01:48 PM
|
1
|
1
|
13258
|
|
POST
|
As this question does not relate directly to ArcGIS, although you may get any answer here, you should consider asking questions about general Python on Stack Overflow.
... View more
12-07-2015
09:37 AM
|
0
|
0
|
4964
|
|
POST
|
Glad you figured it out. As a postscript, if you're interested and using 10.1+ (I think), you may want to look into using arcpy.da.SearchCursor(). They're faster and don't require "nexting".
... View more
12-04-2015
01:59 PM
|
0
|
0
|
3934
|
|
POST
|
There is an intersect method on the arcpy.Polygon() object that you can use for polygon-level intersects between individual polygon features, which you can get to using a cursor.
... View more
12-04-2015
01:06 PM
|
1
|
0
|
1099
|
|
POST
|
Without inspecting your script, have you run (or considered running) Select Layer By Attribute, specifying CLEAR_SELECTION as the selection method, to remove the selection from your layer?
... View more
12-04-2015
12:07 PM
|
1
|
3
|
3935
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 11-25-2015 01:51 PM | |
| 1 | 08-30-2013 02:22 PM | |
| 1 | 04-12-2011 11:19 AM | |
| 1 | 09-17-2021 09:43 AM | |
| 1 | 04-04-2012 12:05 PM |
| Online Status |
Offline
|
| Date Last Visited |
07-15-2023
12:11 AM
|