Quantcast
Channel: Forums - ArcGIS for Desktop - General
Viewing all 2328 articles
Browse latest View live

How/Where do I download the 10.2.2 for Desktop Service Pack?


“Open attribute table” in ArcGIS 10.2.2 doesn’t work,

$
0
0
“Open attribute table” in ArcGIS 10.2.2 doesn’t work,

I couldn’t figure out if there is a bug in the ArcGIS 10.2.2 and thus the “Open attribute table” doesn’t work

Attachment 34593

Have any one faced this issue in ArcGIS 10.2.2?


Thank you

Best

Jamal
Attached Thumbnails
Click image for larger version

Name:	Clip_10.jpg‎
Views:	N/A
Size:	138.3 KB
ID:	34593  

An Error Has Occurred on the Script on this Page

$
0
0
I have a model in model builder that I've been developing in Arc 10.2 for about a year. I'm trying to run the Feature to Raster tool and it will not open up the tool window that displays the parameters in either model builder or in ArcMap. Here's a picture of the error message.

Attachment 34595

Any help would be greatly appreciated.
Attached Thumbnails
Click image for larger version

Name:	Feature to Raster Error - can't open tool.PNG‎
Views:	N/A
Size:	73.4 KB
ID:	34595  

Transcad 6.0 export to file geodatabase

$
0
0
I heard this was hypothetically possible now whereas previous version just exported to shapefile. One of my colleagues tried this and got some type of error about related to Transcad being 64 bit and ArcGIS being 32. Anyone try this?

"Construction Tools" missing

$
0
0
Hi,
The construction window is missing on my main screen:
Attachment 34613

How do I open it again?

Thanks,
Cai
Attached Thumbnails
Click image for larger version

Name:	construction tool.jpg‎
Views:	N/A
Size:	28.7 KB
ID:	34613  

Area of "contiguous" polygons.

$
0
0
Wondering if this is possible using ArcMap10...

I have a feature class containing polygons (planted fruit blocks).

I've been asked if we can determine the area of polygons that are "contiguous" to each other... ie. if adjacent polygons are within "X" meters of one another, they would be 'clumped' into a "contiguous" unit.


Then output data along the lines of:

2000 total acres of planted blocks that are < 5 acres contiguous
3000 total acres that are between 5 and 100 acres contiguous
1500 total acres that are over 100 acres contiguous.


Is this possible??

Alternative to Cartography>Smooth Polygon tool?

$
0
0
I am working on creating polygon management zones from color infrared imagery. I first convert the raster to points, interpolate using IDW, reclassify, and then convert to polygons. I am getting some jagged look to some of the polygons, and would like to to have a smoother appearance. I noticed that the smooth polygon tool is not available in the basic version, which is what I have. Problem is I can't justify $7k just for this one tool.

Any suggestions on a workaround to getting smoother polygons without upgrading?

Thanks
Bryan

Arcmap 10.2 "The index passed was not withing the valid range"

$
0
0
I'm testing our product on 10.2. I am running the Polygon to Raster tool and on some shapefiles I get an "The index passed was not withing the valid range" error. This works fine on 10.0 and 10.1. I have run the check geometry tool and there are no problems.

Any ideas, or could someone at least explain what the index is used for?

Thank you.

global grid 0.1 x 0.1 degree

$
0
0
Hello,

Does anybody has or/knows where I can find a global grid of 0.1 x 0.1 degree in shapefile?

Thanks a lot,

Boko

Buffer sides of polygon only

$
0
0
I have a string of polygons that are 60m wide and 250m long. They are joined in a line, making a right-of-way. The ROW is 60m wide in total, but needs to be 100m wide.

When I buffer each feature, I get overlap where links in the ROW join.

Is there anyway to only extend the buffer on the long edge? I also need to maintain the breaks between segments and all attributes associated.

I've attached a screengrab. The green is my ROW, the red is the buffer.

Thanks!

Attachment 34645
Attached Thumbnails
Click image for larger version

Name:	Capture.PNG‎
Views:	N/A
Size:	11.0 KB
ID:	34645  

Do a spatial join on two layers?

$
0
0
Hi and thanks for looking at my post. I am wanting to do spatial join on a point layer and a polygon layer in VB.net. I am getting this done one piece at a time.

I have created both layers from the database to new layers on my C: drive so I can try whatever and cause no problems.

When I get to the join portion is when it errors. This is how I am attempting to do it and it may not be the right way so I can use some pointers.

This is the error message that I get:

Can’t create output feature class.
Database user name and current schemas do not match
[Data.User.JoinLayer]
The field is not nullable.
The field is not nullable.
DBMS table not found.

My Code:

Dim pFLayer As IFeatureLayer
Dim pFParLayer As IFeatureLayer
Dim pFc As IFeatureClass
Dim pINFeatureClassName As IFeatureClassName
Dim pInDsName As IDatasetName
Dim pWS As IFeatureWorkspace = openSDEWorkspace("DATA")
Dim pAddressesLayer As ESRI.ArcGIS.Carto.IFeatureLayer = gp.FindMapLayer("ADDRESSES")
If (pAddressesLayer Is Nothing) Then
pAddressesLayer = New FeatureLayer
pAddressesLayer.FeatureClass = pWS.OpenFeatureClass("DATA.ADDRESSES")
End If
'*******************************************************************************
Dim pParcelLayer As ESRI.ArcGIS.Carto.IFeatureLayer = gp.FindMapLayer("Parcels")
Dim pParcelWS As IFeatureWorkspace
If (pParcelLayer Is Nothing) Then
pParcelLayer = New FeatureLayer
pParcelWS = openSDEWorkspace("PARCELS")
pParcelLayer.FeatureClass = pParcelWS.OpenFeatureClass("PARCELS.PARCELS")
End If
'*******************************************************************************
pFLayer = pAddressesLayer
pFParLayer = pParcelLayer
Dim pFLDef As IFeatureLayerDefinition = pFLayer
Dim pFLParDef As IFeatureLayerDefinition = pFParLayer

Dim pFeatureSelection As ESRI.ArcGIS.Carto.IFeatureSelection = pAddressesLayer
Dim pFeatureQueryFilter As ESRI.ArcGIS.Geodatabase.IQueryFilter = New QueryFilter
Dim pSelFLayer As IFeatureLayer
pFeatureSelection.SelectionChanged()
pSelFLayer = pFLDef.CreateSelectionLayer("Address PIN", True, vbNullString, vbNullString)

'*******************************************************
Dim pParFeatureSelection As ESRI.ArcGIS.Carto.IFeatureSelection = pParcelLayer
Dim pSelParFLayer As IFeatureLayer
pParFeatureSelection.SelectFeatures(Nothing, ESRI.ArcGIS.Carto.esriSelectionResultEnum.esriSelectionResultNew, False)
pParFeatureSelection.SelectionChanged()
pSelParFLayer = pFLParDef.CreateSelectionLayer("Parcel PIN", True, vbNullString, vbNullString)
'*******************************************************

Dim pDataset As IDataset = pSelFLayer.FeatureClass
Dim pWkSpDataset As IDataset = pDataset.Workspace
Dim pWkSpName As IWorkspaceName = pWkSpDataset.FullName

pFc = pFLayer.FeatureClass
pDataset = pFc
pINFeatureClassName = pDataset.FullName
pInDsName = pINFeatureClassName
'*********************************************************
Dim pGxLayer As ESRI.ArcGIS.Catalog.IGxLayer = New ESRI.ArcGIS.Catalog.GxLayer
Dim pGxFile As ESRI.ArcGIS.Catalog.IGxFile = pGxLayer
pGxFile.Path = "C:\Temp\" & pSelFLayer.Name & ".lyr"
pGxLayer.Layer = pSelFLayer

pGxFile.Path = "C:\Temp\" & pSelParFLayer.Name & ".lyr"
pGxLayer.Layer = pSelParFLayer
'*****************************************************************************************
'Join by location that joins the attributes of the
'first point contained within each polygon.
'*****************************************************************************************
Dim pSpJoin As ISpatialJoin = New SpatialJoin
Dim pFCNew As IFeatureClass
With pSpJoin
.JoinTable = pSelFLayer.FeatureClass
.SourceTable = pSelParFLayer.FeatureClass
.LeftOuterJoin = True
End With
'*****************************************************************************************
'Setting maxMapDist to 0 means that only points within
'each each polygon will be considered
'*****************************************************************************************
Dim pFCName As IFeatureClassName = New FeatureClassName
Dim pOutDSName As IDatasetName = pFCName
With pOutDSName
.Name = "JoinLayer"
.WorkspaceName = pWkSpName
End With
'****************************************************
This is where it goes out

Dim pName As IName = pOutDSName
pFCNew = pSpJoin.JoinNearest(pName, 0)

'****************************************************

If Not pFCNew Is Nothing Then
Dim pNewFLayer As IFeatureLayer
pNewFLayer = New FeatureLayer
pNewFLayer.FeatureClass = pFCNew
pNewFLayer.Name = "Sample Join by Location"
m_pMap.AddLayer(pNewFLayer)
m_pMXDOC.UpdateContents()
End If


Thanks again for your time. Dale,

Spatial Join, no attribute merge.

$
0
0
I have two layers, a point layer with 16 features and a polygon layer with 14 features. Each point lies within a polygon with two polygons containing multiple points.

I want to run a spatial join that will give take each point and give it the geometry of the polygon it falls within, ending with a polygon layer containing 16 features.

Currently i am doing this by running a spatial join with the polygons as the target features, points as the join features and using the 'one two many' join operation so that polygons containing multiple points will be duplicated.

The problem is that despite being duplicated the polygons in the output that had multiple points within each have the same attribute data. The reasoning for this is the 'merge rule' parameter.

Does anyone know of a way i can turn off merge rule so that polygons containing multiple points arent given 'mean first last.... data'??


thanks,

Ben

Model Builder Input

$
0
0
I am trying to build a model to help me with importing well data, the model i have works, but i am wondering if there is a way that i can set it up so that instead of having a specific excel document that it uses it could have an input to select what excel file to use. I am very new at model builder so any help would be greatly appriciated. Attached is a picture of the Model Attachment 34661
Attached Thumbnails
Click image for larger version

Name:	Model.JPG‎
Views:	N/A
Size:	76.1 KB
ID:	34661  

Shape Files not in correct location on mxd

$
0
0
hello
I have an old layer which has about 20 shape files. The files don't seem to be georeferenced properly. I had to re-set the source in each as the link had been broken due to folders being moved. I also went into each shape file and changed the co-ordinate system, we are using coordinate system: gCS WGS 1984 (WGS 1984 UTM Zone 20N). They were on coordinates for GCS North America 1983.
Even though I have changed them to the correct co-ordinate system they are still not in the correct place. The shape files all relate t each other correctly.
Can anyone advise?

Thanks!

What tool merges DEMs?

$
0
0
I want to merge the DEMs for 4 adjacent counties. They don't look good as is because the high point of one can be the low point of another. I used to do this in Raster Calculator using Merge, but that's not available anymore.

Mosaic to New Raster gives me a result with high and low values of 255, not very helpful. It's been a while since I worked with DEMs. Is there another tool I should try? Thanks.

Multiple raster clip Model Builder

$
0
0
Hi everyone,

I am working on a model build that will load a .csv file with lat/long coordinates and copy it into a FC. I have added a buffer, so each point has a 1km buffer, that we are going to use, when we are doing the clip into the raster.
After doing the buffer, it will load each point from the buffer_FC and turn them into a shapefile per point, so in this case we have 20 coordinates and it will create 20 shapefiles. Each shapefile should be able to clip into a raster and create a file from the 1km buffed shapefile. However, it looks like this whole process works, except for the final output. It only creates a single raster clip and not 20 clips.

I hope this all makes sense. I have attached both model builds

Attachment 34680

Attachment 34681
Attached Thumbnails
Click image for larger version

Name:	mb2.PNG‎
Views:	N/A
Size:	11.8 KB
ID:	34681   Click image for larger version

Name:	mb1.PNG‎
Views:	N/A
Size:	101.3 KB
ID:	34680  

Raster switches colour when I zoom-in

$
0
0
Using 10.2.
I have an ordinary aerial photo raster in TIF format.
I do not have gamma stretching or anything applied.

When I am zoomed out my aerial looks good; realistic colours.
When I zoom in to a scale of around 1:10k the hue changes so the image looks all yellowy.

I tried rebuilding pyramids but this has had a negetive affect - now the image looks yellowy all the time.

Any ideas?

How to Calculate Worst Case Discharge for a Pipeline

$
0
0
I'm doing research on how I can calculate worst case discharge for a pipeline. I'm guessing I would use Spatial Analyst/Flow Direction and Flow Length. The data that I should be using is a DEM converted to Points or contours a buffer around the pipeline and a polyline of the pipeline. Please let me know if I'm on the right track or if I do need another extension. Please be specific. Thanks.

Freehand Polygon Draing tool leaves gray box blanking out display area

$
0
0
We see a problem when using the polygon drawing tool from the draw toolbar in ArcMap. This is not polygon drawing on a layer it is the tool that draws independent graphics on the map. When drawing a polygon on the map, no matter what shape, the area becomes covered by a rectangular gray box. The box continues to display when moving the map or refreshing. To make matters worse when switching to the layout view the map draws but is then completely covered with gray at the end. This seems to be a display issue in the software does anyone have an idea what could be causing this? Thanks.

Iterate zonal statistics model builder by each raster name

$
0
0
Hello,

I have a model builder model to run zonal statistics as a table on multiple rasters and merge the output table into one tabl

However, I would like to add a field to the merged output table that identifies each each record by it's raster name.

Since I'm new to figuring this out, can someone tell me what steps I need to add in order to make that happen?

See image attached.

Thanks,

Aly
Attached Thumbnails
Click image for larger version

Name:	IterateRastersZonalStatsNames.png‎
Views:	N/A
Size:	107.6 KB
ID:	34692  
Viewing all 2328 articles
Browse latest View live