| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 1 year, 2 months |
| seen | yesterday | |
| stats | profile views | 10 |
|
Apr 16 |
awarded | Caucus |
|
Apr 14 |
answered | network coverage for mobile phones - europe |
|
Apr 14 |
answered | Add Surface Information in 3d-analyst |
|
Apr 14 |
awarded | Scholar |
|
Apr 14 |
accepted | MapProxy installation |
|
Apr 11 |
answered | MapProxy installation |
|
Mar 19 |
answered | How to batch-process georeferencing of rasters (prelude to animation)? |
|
Mar 10 |
comment |
How to include WMS, WMTS and WFS services using ArcGIS for Server Silverlight Builder? Yes the thread was useful, thanks for that.However, what I'm really hopeing for is a way that user can do this without having to change configuration files. Is this possbile? |
|
Mar 9 |
asked | How to include WMS, WMTS and WFS services using ArcGIS for Server Silverlight Builder? |
|
Feb 28 |
awarded | Yearling |
|
Jan 29 |
comment |
Is there a way to use ArcPy and PyGRASS tools in the same Python script? I you asked about pygrass but maybe this post is on interest anyway. It talks about arcpy bindings for gdal. arcgis.com/home/item.html?id=1eec30bf5fa042a5a2227b094db89441 |
|
Jan 29 |
comment |
Correct usage of a counter using arcpy.da.UpdateCursor Is n defined somewhere else? cant see it in the code you posted. |
|
Jan 25 |
revised |
How to add multiple rasters to a layer file? |
|
Jan 25 |
answered | How to add multiple rasters to a layer file? |
|
Jan 23 |
revised |
Error When Trying to Run Slope Analysis Script added 220 characters in body |
|
Jan 23 |
answered | Error When Trying to Run Slope Analysis Script |
|
Jan 17 |
comment |
How to use arcpy.mapping to batch export layer to KML? you already have the layer object "lyr" so all you need to do is add an something like this "if lyr.visible == True:". Hope that helps. Check out this if you want to read more on arcpy.mapping layers help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#/… |
|
Jan 17 |
comment |
How to use arcpy.mapping to batch export layer to KML? maybe you could try something like this: |
|
Jan 16 |
comment |
How to use arcpy.mapping to batch export layer to KML? In the documentation it looks like the arcpy.LayerToKML_conversion() is excepting a double for the scale parameter and you the code above seems to be passing a string. try this arcpy.LayerToKML_conversion(lyr, outKML, 20000, "false", "DEFAULT", "1024", "96") |
|
Jan 14 |
comment |
jagged edges in mosaic DEM If you have a polygon representing the outline of the mosaic or each of the individual input rasters maybe you could use this to set an analysis mask. I know this does not solve the problem of the black edges but it might allow you to carry out your analysis. You could also convert all the images to points and create a terrain and use this in your analysis. |