|
POST
|
See this page "How sink works". http://resources.arcgis.com/en/help/main/10.2/index.html#//009z00000065000000 It also tells you how to find out how deep they are.
... View more
02-22-2015
11:14 PM
|
1
|
2
|
4464
|
|
POST
|
The list of features and their rank is stated to be a Value Table type in the help. So just create a value table in arcpy. vTab = arcpy.ValueTable()
vTab.insertRow("{} {}".format("ShapeA.shp", 1))
vTab.insertRow("{} {}".format("ShapeB.shp", 2)) Then use the vTab in the Integrate tool.
... View more
02-12-2015
01:35 AM
|
0
|
1
|
1236
|
|
POST
|
Well the creation of the spatial index is a feature of the geodb. You can create a very long list of inputs and have them all appended together, that way the spatial index is calculated only once at the end. If you append them invidually, each time append runs the spatial index will be recalculated, which does increase processing time. Perhaps you can mess with the spatialGrid1, 2, 3 in the arcpy.env settings. Set them all to 0 and see what happens.
... View more
02-12-2015
01:25 AM
|
1
|
3
|
1889
|
|
POST
|
Have you tried to do this simply in ArcMap rather than a model. The view join doesn't seem to be active at all. It's not coloured blue.
... View more
02-04-2015
10:33 PM
|
0
|
0
|
1460
|
|
POST
|
And, if all we are referring to in this thread is how to create rasters from a las dataset use the Las To Raster tool (Thanks you to Xander for pointing this out to me a while ago). Different output cell sizes can be specified in the environments and the sample distance. Set the extent explicitly so that each raster is exactly co-registered.
... View more
02-03-2015
05:33 AM
|
0
|
1
|
1115
|
|
POST
|
As far as I recall you can't edit a layer with a query definition applied. If you have various categories of data you can apply that symbology and edit them individually quite nicely. If you only want to see one of your categories, just remove those categories from the symbolgy editor.
... View more
01-27-2015
04:09 AM
|
0
|
0
|
1569
|
|
POST
|
WKID 4326 is GCS_WGS84 - geographic cords based on the WGS84 datum. WKID 23033 is ED_1950_UTM_33N. A projected UTM coordinate system based on the European datum. You will need a transformation from one datum to the other to get them to match up. There are a whole bunch of these available depending on your area of use. See pages 12-13 of the pdf geographic_transformations in the documentation area of the install.
... View more
01-27-2015
03:48 AM
|
2
|
1
|
5238
|
|
POST
|
All output feature class dialogs in the tools allow you to navigate to a geoDB (file, personal or enterprise) and assign a name to your output data. Create a file goeDB or a personal one (access mdb) using ArcCatalog first. Filenames inside a geoDB cannot begin with a number.
... View more
01-21-2015
05:21 AM
|
0
|
0
|
1244
|
|
POST
|
Try to move away from shapefiles. Why not migrate your data to geodatabases instead. Are you sure that the file permissions are read/write where you are storing the shp?
... View more
01-20-2015
10:25 PM
|
1
|
2
|
1244
|
|
POST
|
What db are these polygons in? Are you sure that every record has valid geometries? Open the attribute table and do an ascending sort on the area field. Any records where area == 0?
... View more
01-14-2015
10:53 PM
|
0
|
0
|
1080
|
|
POST
|
Don't know why this post has come up now in the recent list but.... All the OSGB1936 transformations are, of course, available in ArcGIS. Don't need 3rd party software solutions, free or not free.
... View more
01-13-2015
02:58 AM
|
0
|
0
|
1438
|
|
POST
|
"I was told it cannot be done as some of the commands are only available in ArcMap." Just about everything is available through python / arcpy. So who is telling you this? Sure if you want to write customized interfaces, web stuff etc, then you need .Net, ArcObjects and all that. Tell us what you want to do, what progress you have made so far etc. There is lots of arcpy / python snippets, help out there. I am sure that the python fundies here or at GIS-SE will help with particular questions.
... View more
12-10-2014
10:07 PM
|
0
|
0
|
1852
|
|
POST
|
How fast does that go Xander.? As I understand it, you are running a search cursor over the attachment table for every oid in the primary Fc. It would probably be better to write an updating script which reads the attachment table once, stores the results in a list or dict, then looks through the fc to update. But this would not be implementable in the field calculator. But good thinking. Perhaps there is an "idea" here to make symbolization of records with / without attachments easier.
... View more
12-01-2014
11:19 PM
|
1
|
5
|
6281
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 09-08-2015 11:28 PM | |
| 1 | 12-20-2013 08:59 PM | |
| 1 | 05-14-2014 10:38 PM | |
| 1 | 12-16-2013 09:05 PM | |
| 1 | 05-31-2019 02:50 AM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:23 AM
|