|
POST
|
Hi Melissa, Here is an example: <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=7, IE=9, IE=10"> <!--The viewport meta tag is used to improve the presentation and behavior of the samples on iOS devices--> <meta name="viewport" content="initial-scale=1, maximum-scale=1,user-scalable=no"> <title> World Street Map</title> <link rel="stylesheet" href="http://serverapi.arcgisonline.com/jsapi/arcgis/3.4/js/dojo/dijit/themes/claro/claro.css"> <link rel="stylesheet" href="http://serverapi.arcgisonline.com/jsapi/arcgis/3.4/js/esri/css/esri.css"> <style> html, body, #map { padding:0; margin:0; height:100%; } </style> <script>var dojoConfig = {parseOnLoad: true};</script> <script src="http://serverapi.arcgisonline.com/jsapi/arcgis/3.4/"></script> <script> dojo.require("esri.map"); var map; dojo.ready(function(){ var initExtent = new esri.geometry.Extent({"xmin":-17893.572423357622,"ymin":6709881.59745682,"xmax":-12385.329072411998,"ymax":6714133.407158158,"spatialReference":{"wkid":102100}}); map = new esri.Map("map",{extent:initExtent}); var baseMap = new esri.layers.ArcGISTiledMapServiceLayer("http://server.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer"); map.addLayer(baseMap); }); </script> </head> <body class="claro"> <div id="map"></div> </body> </html>
... View more
05-06-2013
11:04 AM
|
0
|
0
|
1049
|
|
POST
|
Hi Scott, A few questions: 1. What version of ArcGIS, including service packs, are you using? 2. What type of geodatabase are you replicating to (File, SDE, Personal)? 3. Can you post a screen shot of the exact error users are receiving when they attempt to edit a replicated feature class that participates within the topology?
... View more
05-06-2013
07:46 AM
|
0
|
0
|
3013
|
|
POST
|
Good to hear this is working. You can mark a thread as answered by clicking the green check mark next to the response that answered your question.
... View more
05-02-2013
03:29 AM
|
0
|
0
|
4953
|
|
POST
|
Hi Mary, You can do this using the Calculate Field tool. Here is an example how to set it up. [ATTACH=CONFIG]23900[/ATTACH] To do the Y centroid, simply change the line: return shape.centroid.X to: return shape.centroid.Y
... View more
05-01-2013
03:51 AM
|
1
|
2
|
4953
|
|
POST
|
Are you executing the server tool in ArcMap? If you are, are you looking at the error message in the Results window?
... View more
05-01-2013
02:51 AM
|
0
|
0
|
2559
|
|
POST
|
Hi Daisy, I believe the problem is with your directory paths. When using a backslash, specify 'r' in front of the path. For example, change your paths from: "t:\U12002_Afstuderen_Daisy_en_Tiemco\Praktijk_water]\Test_1_DS\No_value_areas\Py_input/" to: r"t:\U12002_Afstuderen_Daisy_en_Tiemco\Praktijk_water]\Test_1_DS\No_value_areas\Py_input" Also, you will want to remove the ending forward slash.
... View more
05-01-2013
02:49 AM
|
0
|
0
|
1411
|
|
POST
|
Hi Joe, You just need to call your mapReady function with dojo.connect. Ex: dojo.connect(map, "onLoad", function() { //Create the find parameters findParams = new esri.tasks.FindParameters(); findParams.returnGeometry = true; findParams.layerIds = [0]; findParams.searchFields = ["NUMBER_KEY","FIRST_NAME"]; findParams.outSpatialReference = map.spatialReference; console.log("find sr: ", findParams.outSpatialReference); mapReady(map); });
... View more
04-30-2013
10:28 AM
|
0
|
0
|
1166
|
|
POST
|
Hi Nathan, In regards to building pyramids, take a look at the following link. Build pyramids�??Pyramids help to improve the display speed of imagery. They can also impact the number of mosaic dataset overviews that are generated. Generally, you should build pyramids for images with greater than 3,000 columns. There is little to gain from building pyramids for a collection of preprocessed and tiled imagery as overviews generally provide a better solution for improving performance.
... View more
04-30-2013
05:58 AM
|
0
|
0
|
2008
|
|
POST
|
Try the following: import arcpy
from arcpy import env
env.workspace = r"X:\mohammadi\finalmunichGIS\clip0ffishnet9000\clip"
lstRasters = arcpy.ListRasters("*", "TIF")
for raster in lstRasters:
xmin = arcpy.Describe(raster).extent.XMin
ymin = arcpy.Describe(raster).extent.YMin
xmax = arcpy.Describe(raster).extent.XMax
ymax = arcpy.Describe(raster).extent.YMax
ymin2 = arcpy.Describe(raster).extent.YMin + 10
arcpy.CreateFishnet_management("fishnet_" + raster[:-4] + ".shp", str(xmin) + " " + str(ymin), str(xmin) + " " + str(ymin2), "0","0","2","2", str(xmax) + " " + str(ymax), "NO_LABELS", "#","POLYGON")
print "Finished"
... View more
04-30-2013
05:46 AM
|
0
|
0
|
2511
|
|
POST
|
Hi Jim, I was able to reproduce the same error message. Calling destroy() should prevent this. After calling the destroy method, I checked the dijit.registry and the editorDiv widget was not there. I'm not sure where else this could be stored. This may be a bug. I'm curious, when you enable editing do you have to execute your menu selection twice when you start an edit session for the first time? When I start my edit session for the first time, I have to click on the 'Start Editing' button twice.
... View more
04-29-2013
12:16 PM
|
0
|
0
|
2170
|
|
POST
|
You can use the Create Fishnet function to do this. If all your rasters are in one directory, you can iterate through each raster using the List Rasters function.
... View more
04-29-2013
09:48 AM
|
0
|
0
|
2511
|
|
POST
|
Hi Daisy, Can you post your code? Don't forget to wrap it in CODE tags (using the # above).
... View more
04-29-2013
08:31 AM
|
0
|
0
|
1411
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | a month ago | |
| 4 | 05-07-2020 05:14 PM | |
| 1 | 03-25-2026 04:16 AM | |
| 1 | 03-16-2026 01:00 PM | |
| 1 | 12-22-2025 10:39 AM |
| Online Status |
Offline
|
| Date Last Visited |
15 hours ago
|