|
POST
|
Integer rasters can have additional attributes and as Dan suggests you can join these raster tables to the output point feature class then use CopyFeatures to persist the join. -Steve
... View more
01-05-2016
12:50 PM
|
1
|
0
|
1497
|
|
POST
|
Dan is 100% right. However, you could use the CutFill tool to highlight areas of change. -Steve
... View more
12-28-2015
04:25 PM
|
2
|
1
|
1971
|
|
POST
|
....and persist myRasLst[0] to disk and use it in ArcMap in FocalStats
... View more
10-07-2015
11:56 AM
|
0
|
0
|
3533
|
|
POST
|
in your Py script, print the value of os.path.join(inDir,InAsciiFile)), os.path.join((OutRaster,InAsciiFile.rsplit(".")[0][:9]) once and in ArcMap paste the result into ASCIIToRaster and see if the tool runs. -Steve
... View more
09-03-2015
10:05 AM
|
0
|
0
|
2538
|
|
POST
|
what is the cell size and the extent of the output raster?
... View more
09-01-2015
11:22 AM
|
1
|
0
|
1016
|
|
POST
|
you could also get it from the GetRasterProperties tool
... View more
08-20-2015
08:52 AM
|
0
|
0
|
1452
|
|
POST
|
Have a look at Semivariogram and covariance functions
... View more
08-13-2015
04:34 PM
|
0
|
1
|
4538
|
|
POST
|
Dan the R stuff is at R — ArcGIS and it is for ArcGIS 10.3.1 and Pro 1.1 -Steve
... View more
08-10-2015
09:01 AM
|
2
|
1
|
3249
|
|
POST
|
The R bridge for Esri is available for ArcGIS 10.3.1 or ArcGIS Pro 1.1 Welcome to the R - ArcGIS Community
... View more
07-27-2015
09:59 AM
|
0
|
1
|
2185
|
|
POST
|
Have you looked at the Generate Near Table<http://resources.arcgis.com/en/help/main/10.2/index.html#//00080000001n000000> tool?
... View more
07-13-2015
12:57 PM
|
0
|
0
|
1079
|
|
POST
|
it returns an in-memory raster layer. Use SaveToLayerFile_management or CopyRaster_management to persist the result. -Steve
... View more
07-10-2015
01:25 PM
|
1
|
0
|
2879
|
|
POST
|
There are a few other ways to do this 🙂 Load the Spatial Analyst toolbar (Customize->Toolbars -> Spatial Analyst). The Create Contour tool will do what you want albeit at screen resolution, i.e. the more you zoom the more detail you'll get, or Run some geoprocessing tools ExtractValuesToPoints (using the single point and the raster as input) and remember to check "Interpolate values at the point locations" in the output copy the value from RASTERVALU ContourList, use the raster and paste the copied value into the Contour values control. SelectByLocation use the contour output and the single point with relationship=WITHIN_A_DISTANCE and maybe a small search distance -Steve BTW, from the Avenue doc The following example creates a Graphic line of a contour passing through a point specified with the cursor on the active View. The contour is created from an active GTheme. The value of the contour is displayed in the status bar. The example must be executed from an Apply event since it uses ReturnUserPoint to get the point. It also assumes that there is only one Theme active and that it is a GTheme. theView = av.GetActiveDoc theGridTheme = theView.GetActiveThemes.Get(0) thePoint = theView.GetDisplay.ReturnUserPoint zValue = 0 aPrj = Prj.MakeNull theLine = theGridTheme.GetGrid.ReturnContour(thePoint, zValue, aPrj) theGraphicLine = GraphicShape.Make(theLine) theView.GetGraphics.Add(theGraphicLine) av.ShowMsg("Contour Value : "++zValue.AsString)
... View more
07-08-2015
02:24 PM
|
1
|
1
|
2493
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | a month ago | |
| 3 | 03-23-2026 07:11 AM | |
| 1 | 02-24-2026 05:28 AM | |
| 1 | 01-21-2026 07:08 AM | |
| 1 | 12-16-2025 05:11 AM |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|