|
POST
|
Can you give us a picture of what the attribute table looks like? Do you have 1 point with 15 attribute columns with pollutant data in each or... 15 points on the same location each with 1 attribute of pollutant? What are you inputting for buffer distance?
... View more
11-09-2015
06:31 AM
|
0
|
1
|
3219
|
|
POST
|
I take it back.... arcpy.Extent does do some basic checking by default. Clever, clever esri.... >>> ext = arcpy.Extent(0, 100, 100, 0)
>>> ext.XMin, ext.YMin, ext.XMax, ext.YMax
(0.0, 0.0, 100.0, 100.0)
>>>
... View more
11-09-2015
05:27 AM
|
0
|
2
|
2512
|
|
POST
|
YCC can define an extent like that. But you have to get the numbers the right way round. His extent is in the wrong order. >>> import arcpy
>>> ext = arcpy.Extent(0, 0, 100, 100)
>>> ext.XMin
0.0
... View more
11-09-2015
05:00 AM
|
0
|
3
|
2512
|
|
POST
|
And, as an additional comment... Is your data in a projected coordinate system (ie NOT geographic)?
... View more
11-09-2015
04:52 AM
|
1
|
5
|
3219
|
|
POST
|
Errr... What selection step??? Here is the Buffer tool : Input Features : presumably your points Output Feature Class : what you want to call the output, usually something like MyInputName_Buffer. Distance : either a fixed number, or if you click the filed radio button, a field containing a number for the distance. If you had another column with a distance (calculated from your "severity" perhaps), that would go here. End Type & Method... Usually leave alone. Dissolve : None - individual buffer polygons will be created for each input point.
... View more
11-09-2015
04:51 AM
|
1
|
6
|
3219
|
|
POST
|
Look in Toolbox / Analysis / Proximity and check the Buffer tool (or the multiple ring buffer). It sounds like you will have to calculate some distance metric from your "severity".
... View more
11-09-2015
03:44 AM
|
1
|
8
|
3219
|
|
POST
|
Well exactly. So wouldn't the sr remain a custom one? Far better just to do sr = arcpy.SpatialReference(25832) # wkid for 'ETRS_1989_UTM_Zone_32N'
arcpy.DefineProjection_management(infc, sr) And you can define the sr for a feature class that already has one. With certain caveats of course, don't define the fc as something it isn't...
... View more
11-08-2015
11:28 PM
|
2
|
8
|
4461
|
|
POST
|
Somewhere it is detailed that the default pixel / cell size is set by dividing the range of the extent by 250. That's how you get ~30m pixels.
... View more
11-06-2015
07:22 AM
|
2
|
2
|
4074
|
|
POST
|
I have a feeling that the correct way would be just to set the projection using Define. In the code above I cannot see how the actual projection is redefined. It just changes the "Name" part of the projection text representation.
... View more
11-06-2015
05:22 AM
|
0
|
10
|
4461
|
|
POST
|
And you may want to check the environment settings for the extent, and can set the cell size there. If creating several rasters from different tins (but over the same area), for the benefit of down stream processing, get them all to line up correctly (pixel co-registration), by defining, using the environment variables, the exact extent and pixel size, and use the first as a snap raster.
... View more
11-06-2015
05:11 AM
|
2
|
5
|
4074
|
|
POST
|
There is the Add XY coordinate tool in Data Management / Features. Its a tool, so therefore it can be used in a model. You can also use Calculate field with properties of the geometry. In python, see the help for reading geometries.
... View more
11-02-2015
11:30 PM
|
1
|
0
|
1369
|
|
POST
|
Marilena, good to hear that this works for you. Good luck with the rest of the study.
... View more
11-02-2015
11:25 PM
|
0
|
0
|
1387
|
|
POST
|
The Detect Feature Changes tool in Data Management / Data Comparison might give you some clues about what is different. But if these are 2 separate datasets from different providers, it seems v unlikely that anything will be exactly the same. Its a tough one to sort this out. How different is different? Which one is the truth? etc. You might have to hand craft something in python to your requirements.
... View more
10-28-2015
01:24 AM
|
0
|
0
|
2976
|
|
POST
|
And there is a whole bunch of indentations after the ifs that need to be sorted out.
... View more
10-27-2015
10:10 AM
|
1
|
0
|
2288
|
|
POST
|
This inside Access. We are joining Chef (dogs - 2250 records) back to Kallweit (owner - 1306 records). First we create a query which "joins" the 2 input tables (tblChefGPXDataPoints @ tblKallweitGPXDataPoints). Because there is no "join" as such, this just creates a very large / long cross product of the 2 tables. Then query 2, summarises this query across the ChefID and the minimum time. Then query 3, joins this back to the first (a bit circular) so we can find the IDs on both sides. Query 4, then uses this as a join in between the original input tables so we can get back to the Lat/Longs on both sides. Hope this makes some sort of sense. Do you have any folk there who know a little about Access?
... View more
10-27-2015
03:56 AM
|
1
|
0
|
1387
|
| 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
|