|
POST
|
You could treat the following click event as a Print Task (PrintTask | API Reference | ArcGIS API for JavaScript 3.18 ) event. Just submit the current map to the Print Task and grab the resulting image returned from the Print Service. You could play around with the output extent by adjusting it with the esriRequest.setRequestPreCallback (esri/request | API Reference | ArcGIS API for JavaScript 3.18). Also use the MAP_ONLY option for the layout.
... View more
10-14-2016
02:35 AM
|
1
|
0
|
1024
|
|
POST
|
Your first query is performed on a polygon layer (determined from the Map Service description at https://enviroatlas.epa.gov/arcgis/rest/services/National/ESN_CleanAir/MapServer/21). The input polygon rings intersect with 2 geometries. Add * to the Out Fields option to get the rest of the record field values like this example and the results for the MeanPrecip field can be used. Your second query with the error is performed on a raster layer. This is most probably the layer on which the zonal statistics for each parcel was based. You could do an Identify operation on this layer and look at the resulting "Pixel Value" field, although this will only return the result for a single pixel and not the average (or whatever statistic) for the selected parcel.
... View more
10-14-2016
02:22 AM
|
0
|
0
|
731
|
|
POST
|
Have a look at the Observer Points Tool: Using Viewshed and Observer Points for visibility analysis—Help | ArcGIS for Desktop
... View more
09-29-2016
05:57 AM
|
1
|
2
|
1446
|
|
POST
|
I don't think you can, because it is a cached service in Web Mercator projection. Also read the Terms of Use: http://downloads2.esri.com/ArcGISOnline/docs/tou_summary.pdf http://goto.arcgisonline.com/maps/World_Topo_Map
... View more
09-28-2016
01:07 AM
|
1
|
0
|
1068
|
|
POST
|
I think you should start by having a look at the Web_Map_as_JSON object being passed to the server in the Print Task execute request. The text should be contained by a graphicsLayer object with a text symbol defined, where the text size should be an integer value e.g. { "id":"graphicsLayer5", "opacity":1, "minScale":0, "maxScale":0, "featureCollection":{ "layers":[ { "layerDefinition":{ "name":"textLayer", "geometryType":"esriGeometryPoint" }, "featureSet":{ "geometryType":"esriGeometryPoint", "features":[ { "geometry":{ "x":2549897.66787728, "y":-3885519.2773505934, "spatialReference":{ "wkid":102100 } }, "symbol":{ "color":[ 255, 255, 255, 255 ], "type":"esriTS", "verticalAlignment":"baseline", "horizontalAlignment":"left", "angle":0, "xoffset":3.75, "yoffset":3.75, "text":"graphic-0", "rotated":false, "kerning":true, "font":{ "size":12, "style":"normal", "variant":"normal", "weight":"normal", "family":"Arial" } } } ] } } ] } }
... View more
09-26-2016
10:54 PM
|
1
|
1
|
984
|
|
POST
|
As Robert Scheitlin, GISP said, go to the service Capabilities -> Mapping, click the Allow per request modification option on, click the manage button and select the workspace for the layer.
... View more
09-21-2016
05:29 AM
|
0
|
0
|
2051
|
|
POST
|
Hi Justin, yes I meant replace the single quotes with double quotes.
... View more
09-12-2016
05:21 AM
|
0
|
1
|
2763
|
|
POST
|
Try wrapping your calculate expression in double quotes
... View more
09-12-2016
03:33 AM
|
0
|
3
|
2763
|
|
POST
|
Like Derek Law says, your server specs will determine the number of services you can run, especially the amount of memory available. Looking at the processes in the Task Manager, you should take note of the Memory (Private Working Set) for each ArcSOC process. The number of processes are also determined by the number of pooling instances committed to each Map Service. So counting the memory currently used by your Map Services and comparing it with the Memory available on the server should give you a rough estimation of how many more map services you can create and add. So look at optimizing your existing services first: Tuning and configuring services—Documentation | ArcGIS for Server Problem: The number of ArcSOC instances causes ArcGIS for Server performance issues
... View more
09-08-2016
12:07 AM
|
2
|
0
|
10276
|
|
POST
|
Find the element reference for the anchor link in the popup and set the target attribute to nothing when the popup opens: link.setAttribute("target", "");
... View more
09-06-2016
11:32 PM
|
1
|
1
|
1471
|
|
POST
|
With the cloud based services it becomes difficult or impossible to pin down IPs, so adding the full range for each domain/sub-domain is probably the best option to ensure you have access to all the services. AWS might also even change the IP ranges according to this page: AWS IP Address Ranges - Amazon Web Services . But check with Esri and Amazon if you still have doubts about the security.
... View more
09-06-2016
11:22 PM
|
0
|
1
|
18063
|
|
POST
|
Here are results from an online IP lookup tool for the www.arcgis.com domain: Source: whois.arin.net IP Address: 23.21.110.28 Name: AMAZON-EC2-USEAST-10 Handle: NET-23-20-0-0-1 Registration Date: 9/19/11 Range: 23.20.0.0-23.23.255.255 Org: Amazon.com, Inc. Org Handle: AMAZO-4 Address: Amazon Web Services, Inc. P.O. Box 81226 City: Seattle State/Province: WA Postal Code: 98108-1226 Country: UNITED STATES Name Servers: Source: whois.arin.net IP Address: 54.197.254.10 (United States) Name: AMAZO-ZIAD7 Handle: NET-54-196-0-0-1 Registration Date: 11/11/13 Range: 54.196.0.0-54.197.255.255 Org: Amazon.com, Inc. Org Handle: AMAZO-4 Address: Amazon Web Services, Inc. P.O. Box 81226 City: Seattle State/Province: WA Postal Code: 98108-1226 Country: UNITED STATES Name Servers: Source: whois.arin.net IP Address: 54.243.30.195 (United States) Name: AMAZO-ZIAD1 Handle: NET-54-242-0-0-1 Registration Date: 11/9/12 Range: 54.242.0.0-54.243.255.255 Org: Amazon.com, Inc. Org Handle: AMAZO-4 Address: Amazon Web Services, Inc. P.O. Box 81226 City: Seattle State/Province: WA Postal Code: 98108-1226 Country: UNITED STATES Then you'll need to find the IP ranges for the list of domain names that Esri provided you with? Can you share those please?
... View more
09-06-2016
03:04 AM
|
1
|
5
|
18063
|
|
POST
|
You can also add another line break after each raster statistics loop to make it more readable i.e. csvfile.write("\n")
... View more
09-06-2016
02:45 AM
|
3
|
0
|
1518
|
|
POST
|
import arcpy
arcpy.env.workspace = r"D:\2008A"
rasterList = arcpy.ListRasters()
csvfile = open(r'D:\2008A\rasters.csv','w')
for raster in rasterList:
rasterObj = arcpy.Raster(raster)
csvfile.write(str(raster) + "\n")
bands = arcpy.GetRasterProperties_management(raster, "MEAN")
csvfile.write("MEAN VALUE: %s \n" %bands)
bands = arcpy.GetRasterProperties_management(raster, "STD")
csvfile.write("STANDARD DEV: %s \n" %bands)
bands = arcpy.GetRasterProperties_management(raster, "MINIMUM")
csvfile.write("MIN VALUE: %s \n" %bands)
bands = arcpy.GetRasterProperties_management(raster, "MAXIMUM")
csvfile.write("Max VALUE: %s \n" %bands)
csvfile.close()
... View more
09-06-2016
02:21 AM
|
2
|
2
|
1518
|
|
POST
|
What you are describing sounds like MapTips: Displaying MapTips—Help | ArcGIS for Desktop
... View more
08-31-2016
05:52 AM
|
0
|
0
|
622
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 03-22-2024 12:37 AM | |
| 1 | 10-02-2025 10:28 AM | |
| 1 | 09-17-2024 12:29 AM | |
| 1 | 03-15-2024 11:33 AM | |
| 1 | 03-13-2024 11:20 PM |
| Online Status |
Offline
|
| Date Last Visited |
06-02-2026
12:31 AM
|