|
POST
|
How about: 1.) Create 1m x 1m raster of your roads (may have to buffer your roads first to make a more connected raster). 2.) Assign value of 1 to all cells in road raster. 3.) Make sure all of your hospital points fall on the road raster. 3.) Run Cost Distance tool, using hospitals as feature source and road raster as cost raster. Distance should be least number of accumulated meters between source and pixel. edit 1: 1m x 1m is probably overkill for an entire state, but you can use any pixel size you like as long as you keep track of the units. edit 2: the distance returned from Cost Distance is an overestimate of the true distance. It is the distance it would take if your choices of movement were limited to one of the 8 cardinal directions, per pixel.
... View more
08-08-2014
12:58 PM
|
1
|
1
|
985
|
|
POST
|
I have a raster (TIFF, double, 64 bit, with pyramids and statistics, LZW compression) that displays normally (transparent NoData) at all scales >= 1:7521, but displays NoData as the same colour as 0 at <= 1:7522. As far as I can tell, there is no reference scale interfering. Any ideas?
... View more
08-08-2014
10:11 AM
|
0
|
4
|
4548
|
|
POST
|
Selections work on the entire piece of geometry, so even if you want to select just a portion of a very long line (e.g. a highway) it will select the whole line, if that's how it was digitized. You need to change the geometry, either through editing (cut the line) or geoprocessing (e.g. clip) tools if you want to select a portion of a feature.
... View more
07-17-2014
10:40 AM
|
1
|
1
|
1366
|
|
POST
|
Thanks for these explanations, Andrew Wilson. I don't believe I can use Euclidean distance because I want to consider barriers (i.e. constrain the distance to water pixels). For example, in the original image (a lake), I want to know the distance by water (not as the crow flies) to the nearest point. My understanding of Euclidean Distance is that it always results in concentric circles around points, although I haven't tried it with a Mask environment.
... View more
07-16-2014
08:25 PM
|
0
|
0
|
1842
|
|
POST
|
Is there an ArcGIS tool that will make circular, rather than octagonal, cost distance rasters? Refer to the raster below, made with the Cost Distance tool, symbolized by arbitrary distance classes.
... View more
07-16-2014
03:42 PM
|
0
|
5
|
4713
|
|
POST
|
Can you expand on your problem? Your example makes me think you simply want to copy ShapefileA and change the name of ColumnA to ColumnB.
... View more
07-16-2014
10:06 AM
|
0
|
0
|
1110
|
|
POST
|
I am attempting to Create Runtime Content along a linear feature. The feature runs on a diagonal from SW to NE. Is there any way to create runtime content, specifically the tile cache, of an imagery basemap for only the tiles touching the feature (i.e. not all tiles in the feature's extent)?
... View more
04-23-2014
08:05 AM
|
0
|
0
|
863
|
|
POST
|
The "General Function Failure" error (I could create runtime content with basemaps, but not feature classes) at 10.2.1, has been solved at 10.2.2, at least for me.
... View more
04-22-2014
09:12 AM
|
0
|
0
|
1255
|
|
POST
|
Long time GIS user, first time Android/Java coder - so no instruction can be too basic. I am attempting to make my way through the Create an offline map tutorial. I have created Runtime Content in ArcMap, and saved the resulting files and folder structure on my phone's SD card. The ".geodatabase" file appears in my PC's file explorer at the path: Computer\SGH-I747M\Card\ArcGIS\runtime_esri\runtime\data\test.geodatabase (SGH-I747M is the phone) In the tutorial, I have made it to: Geodatabase geodatabase = new Geodatabase("{/path/to/geodatabase}"); What, exactly, should the geodatabase path syntax be? The code below tells me that /Card/ArcGIS/runtime_esri/runtime/data/test.geodatabase does not exist. I've tried many other paths, removing slashes and the word "Card". Any ideas? My code looks like: mMapView = (MapView)findViewById(R.id.map);
Toast.makeText(this, "Start", Toast.LENGTH_SHORT).show();
try {
//Open the geodatabase file
Geodatabase geodatabase = new Geodatabase("/Card/ArcGIS/runtime_esri/runtime/data/test.geodatabase");
Toast.makeText(this, "Success", Toast.LENGTH_SHORT).show();
GeodatabaseFeatureTable geodatabaseFeatureTable = geodatabase.getGeodatabaseFeatureTableByLayerId(0);
//create a feature layer
FeatureLayer featureLayer = new FeatureLayer(geodatabaseFeatureTable);
mMapView.addLayer(featureLayer);
mMapView.addLayer(new ArcGISTiledMapServiceLayer("" +
"http://services.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer"));
} catch (FileNotFoundException e) {
Toast.makeText(this, "Failure", Toast.LENGTH_SHORT).show();
Toast.makeText(this, e.getMessage(), Toast.LENGTH_SHORT).show();
// TODO Auto-generated catch block
e.printStackTrace();
}
... View more
04-21-2014
10:40 AM
|
0
|
0
|
1452
|
|
POST
|
Do you want to remove the seam? If so, use Dissolve (it needs some attribute to tell it what polygons to dissolve together). If not, use Merge. If you've tried those we need more information - what are you trying, what is happening, and what do you want to happen?
... View more
03-03-2014
08:58 AM
|
0
|
0
|
680
|
|
POST
|
1.) Spatial Join to assign grid ID to points 2.) Mean Center (case = grid ID)
... View more
02-06-2014
10:32 AM
|
0
|
0
|
3212
|
|
POST
|
It sounds like you're having trouble with data types. 1.) Quantity symbology is only available to numeric data types 2.) When you set up a Join, you can only match fields of the same (or similar) data type. "The name of the field does not have to be the same, but the data type has to be the same; you join numbers to numbers, strings to strings, and so on." 3.) Even though your zip codes might look like numbers, they may be stored as text. Check the data type in the field properties. If needed, change the data type in Excel, or make a new field in ArcGIS and calculate the desired values into it.
... View more
02-03-2014
07:51 AM
|
0
|
0
|
2416
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 08-30-2013 02:22 PM | |
| 1 | 04-12-2011 11:19 AM | |
| 1 | 09-17-2021 09:43 AM | |
| 1 | 04-04-2012 12:05 PM | |
| 2 | 07-16-2020 11:31 AM |
| Online Status |
Offline
|
| Date Last Visited |
07-15-2023
12:11 AM
|