|
POST
|
I would use python for something like this: First in arc I would cut the counties with a intersect and your circle. Using this and your airports as input to the code. Read the columns of interest into lists (arrays) and then iterate over the lists and do the matching. Then output data to a new table. SearchCursor http://resources.arcgis.com/en/help/main/10.1/index.html#//018w00000011000000 UpdateCursor ArcGIS Help 10.1 Python tutorial If you have not used python before this may look very hard at first. But it is not that bad as it is a small code project. I would think the hardest part would be the logic in the matching. That could be harder depending on the complexity of your criteria....
... View more
02-24-2015
06:55 PM
|
0
|
0
|
2840
|
|
POST
|
I have not noticed that in our SDE - but that sounds icky! So what is the suggested workflow for this? Do not do metadata editing in a version session? What happens if two people edit the default metadata version at the same time? Maybe they are trying to edit the same metadata field.... Publish date say.....
... View more
02-05-2015
05:10 PM
|
0
|
4
|
1719
|
|
POST
|
This is how I would do that. Hope it helps. import arcpy
import os
in_path = r'C:\xxx\xxx\shp'
out_path = r'C:\xxx\xxx\out.gdb'
arcpy.env.workspace = in_path
arcpy.env.overwriteOutput = True
shapefiles = arcpy.ListFeatureClasses()
for shapefile in shapefiles:
print 'copying: ' + shapefile[:-4]
arcpy.CopyFeatures_management(shapefile, os.path.join(out_path, shapefile[:-4]))
... View more
02-05-2015
04:55 PM
|
1
|
6
|
3043
|
|
POST
|
We have about 400GB of imagery we would like to serve up to a web map. The question is what is going to give us the best performance in the end. A reseter dataset that has been mosaicked into then with pyramids? A mosaic dataset with overview and raster pyramids? A mosaic dataset with overviews only? A mosaic dataset with overviews, raster pyramids, and a tile cache? I would guess it is the last one but I would like confirmation and/or other suggestions. If this is so we are a little worried about the size of the thing. At this time we only have 1TB of storage to work with. If we did build the tile cache is the original mosaic still needed? Thanks, Forest
... View more
02-05-2015
04:25 PM
|
0
|
0
|
4151
|
|
POST
|
Wow that dose look nice Xander. Looks like David had the right idea. Thanks all!
... View more
02-05-2015
04:07 PM
|
0
|
0
|
2007
|
|
POST
|
I did try that - but it did not scale well. I don't know; maybe if I keep playing with it. Also, it is not exactly what the client had in mind. They have the tick on ever other dash. Good suggestion David - thanks.
... View more
02-03-2015
03:11 PM
|
0
|
2
|
2007
|
|
POST
|
I am having a hard time making a nice looking dashed line with ticks in ArcGIS. I tried it in the symbol property editor using two cartographic lines: Looks like it is exactly what I need. But when it draws it does not put the ticks perpendicular to the line segment. Yuck! I also played around with representations as well, but they also did not make the ticks perpendicular to the line segment. I did look at this Creating regular ticks (Production Mapping), but we do not have the Production Mapping extension. ArcGIS Help 10.1 Suggestions? Thanks, Forest
... View more
02-03-2015
02:21 PM
|
0
|
4
|
5790
|
|
POST
|
As near as I could tell one would have to make up a custom one. We felt like we did not need it that bad. But I must say I was surprised that something was not in the API. One would think this is a basic thing esri would want to put in...... ??
... View more
01-30-2015
06:18 PM
|
0
|
0
|
2768
|
|
POST
|
Joshua, that is also very interesting. Thanks for the help everyone!
... View more
01-13-2015
07:57 PM
|
0
|
0
|
2352
|
|
POST
|
How can I tell if a ArcGIS user has installed this patch or not on their machine? ArcGIS-101SP1-DT-QIP-Patch.msp Thanks, Forest
... View more
01-12-2015
04:43 PM
|
0
|
6
|
7481
|
|
POST
|
Change the Stretch type to None and remove the Gamma stretch.
... View more
12-09-2014
12:08 PM
|
0
|
0
|
955
|
|
POST
|
Please, I know someone out there knows the solution to this...
... View more
12-09-2014
11:44 AM
|
0
|
0
|
955
|
|
POST
|
I have two large aerial image raster mosaics. I would like to tweak there symbology so that they look seamless. If I look at the seam I can see that cells that have almost the same value are assigned different colors. RGB 61, 103, 109 and RGB 62, 103, 109. How do I adjust this? Maybe it would be best if arc would just use the "true" color for 61, 103, 109. Can I make it do this? Seam 61, 103, 109 from a graphics program. The end goal here is to get the best looking product possible. Not just to kill the seam but looking good over all as well. Thanks for any help
... View more
12-08-2014
12:37 PM
|
0
|
2
|
4334
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 10-04-2024 05:39 PM | |
| 1 | 07-30-2024 09:05 AM | |
| 1 | 07-08-2024 05:32 PM | |
| 1 | 03-20-2024 10:27 AM | |
| 6 | 03-13-2024 03:38 PM |
| Online Status |
Offline
|
| Date Last Visited |
11-12-2025
11:02 AM
|