|
POST
|
Landsat data is very coarser compare to WorldVIew 2. besides resample tool you can Add the raster in Arcmap and export it and while exporting set thecell size to 2 ArcGIS Help (10.2, 10.2.1, and 10.2.2) With these processes the features will remain same only the pixels will be divided in to smaller dimensions. Hope this is helpful Kishor
... View more
03-24-2015
09:34 PM
|
0
|
0
|
632
|
|
POST
|
I believe you would like to extract the temperature information from the raster and assign to points in a feature class. Please try using "Extract values to points" tool. This tool will help to add the temperature information for each point in its attribute table. ArcGIS Help (10.2, 10.2.1, and 10.2.2)
... View more
03-24-2015
02:30 AM
|
0
|
5
|
1039
|
|
POST
|
ArcObjects 10 .NET SDK Help ArcObjects 10 .NET SDK Help ArcObjects 10 .NET SDK Help Hopping these are helpful Kishor
... View more
03-22-2015
11:30 PM
|
0
|
1
|
930
|
|
POST
|
Could you please run repair geometry on the Grid3b and then use Create random points. When I ran the repair geometry I found problem with 24 features in this file. Result: "WARNING 000986: C:\Users\.........Local\Temp\Grid3b0.txt contains the full list of non simple features. WARNING 000461: Repaired feature 0 because of incorrect ring ordering, ...., ......, ......, ...... WARNING 000461: Repaired feature 24 because of incorrect ring ordering" Regards Kishor
... View more
03-19-2015
04:55 AM
|
1
|
1
|
1934
|
|
POST
|
Try using following syntax. Currently I do not have access to advanced license to test the behavior. arcpy.CreateRandomPoints_management(r'C:\Temp',"Random.shp",r'C:\Temp\Grid3b.shp',"","1","","POINT","") Hope this is helpful Kishor
... View more
03-19-2015
02:39 AM
|
0
|
3
|
1934
|
|
POST
|
After selection use summary statistics tool which will calculate sum and return the sum in a table. ArcGIS Help (10.2, 10.2.1, and 10.2.2) Further you can use Get Value tool (model only tool) to use this value in next analysis. Hope this is helpful Kishor
... View more
03-19-2015
02:21 AM
|
1
|
1
|
720
|
|
POST
|
ArcGIS Help (10.2, 10.2.1, and 10.2.2) ArcGIS Help (10.2, 10.2.1, and 10.2.2) ArcGIS Help (10.2, 10.2.1, and 10.2.2)
... View more
03-19-2015
02:07 AM
|
0
|
0
|
428
|
|
POST
|
Try following changes: 1. Import arcpy, os 2. mdname = "SeeIfThisWorks" 3. mdname= arcpy.CreateMosaicDataset_management(os.path.join(out_folder_path,Test),mdname) Hope this is helpful Kishor
... View more
03-17-2015
11:53 PM
|
0
|
1
|
1530
|
|
POST
|
Here are some ways : 1. You can use split raster tool (Data management) ArcGIS Help 10.1 2. If you have boundaries to clip the data then you can use clip tool (Data Management) to clip the big raster in small part according to boundaries. e.g. if you have raster of a State and would like to divide in Counties then you can use the County boundaries to clip the State raster ArcGIS Help 10.1 3. You can create fishnet tool to generate polygons. Then you can use the fishnet as clipping feature and clip the big raster. ArcGIS Help 10.1 4. If you have a spatial analyst you can try using Extract by mask tool to divide big raster in small parts. ArcGIS Help 10.1 Regards Kishor
... View more
03-17-2015
01:38 AM
|
1
|
0
|
2710
|
|
POST
|
Model looks good. Try useing %Value% in the output name.
... View more
03-16-2015
03:28 AM
|
0
|
0
|
789
|
|
POST
|
import arcpy
#Input featrue class path
in_fc = r"C:\Test.gdb\Catchment"
# Output file geodatbase
out_GDB = r"C:\Test.gdb"
# Output feature Class Name
out_FC = "Final_catchment"
arcpy.MakeFeatureLayer_management(in_fc,"in_memory\Catchment_Copy")
arcpy.MakeFeatureLayer_management(in_fc,"in_memory\Catchment_Copy1")
cursor = arcpy.SearchCursor("in_memory\Catchment_Copy")
for feature in cursor:
val = feature.getValue("OBJECTID")
where = "OBJECTID =" + str(val)
arcpy.SelectLayerByAttribute_management("in_memory\Catchment_Copy","NEW_SELECTION",where)
arcpy.SelectLayerByLocation_management("in_memory\Catchment_Copy1","WITHIN_CLEMENTINI","in_memory\Catchment_Copy","","NEW_SELECTION")
result = arcpy.GetCount_management("in_memory\Catchment_Copy1")
count = int(result.getOutput(0))
if count == 1:
arcpy.DeleteFeatures_management("in_memory\Catchment_Copy")
print "ObjectID : "+ str(val) + " is Deleted"
arcpy.FeatureClassToFeatureClass_conversion("in_memory\Catchment_Copy", out_GDB,out_FC,"")
del cursor
print "Process completed successfully." I am learning python and I find this issue very interesting. Hence, I tried to create above script and tested the behavior with a sample data at my end. This script worked as expected at my end. Please let me know how it works at your end. I request all python experts to give your suggestions to make this script better and improve my skill. Hope this is helpful Thanks and regards Kishor
... View more
03-12-2015
06:09 AM
|
1
|
0
|
734
|
|
POST
|
Please refer field calculator expression given by dhoneycutt-esristaff in the below discussion: Find maximum value across a row After having all the max value's field name in a new field, you can use it to label the zones or set symbology. Hope this is helpful Regards Kishor
... View more
03-10-2015
10:46 PM
|
2
|
0
|
522
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 02-24-2015 09:29 PM | |
| 1 | 04-14-2015 04:27 AM | |
| 1 | 02-23-2015 12:30 AM | |
| 1 | 03-04-2015 03:27 AM | |
| 1 | 02-26-2015 01:08 AM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:23 AM
|