|
POST
|
You can change the language of the program by going to the home button (round button in top left corner of AGX). Then click the ArcGIS explorer options button. Click common on the left. Towards the bottom there are a bunch of languages to select from. If you are looking for a language other than what is there I can't help you..
... View more
07-20-2011
11:11 AM
|
0
|
0
|
1222
|
|
POST
|
That worked perfectly on a IMS server hosted by USGS. I can't get it to work on the nowcoast server. It just hangs AGX up. At this point is seems more like an issue with AGX than anything else. As I said before the connection to nowcoast to ArcGIS Desktop works great.
... View more
07-20-2011
07:55 AM
|
0
|
0
|
1140
|
|
POST
|
I just realized that this is to remove layers from the service. I thought it was just choosing which ones to show. I actually need to remove about 100 layers from the srvice. This is not going to be fun. But if it the only way to do it, so be it.
... View more
07-20-2011
05:04 AM
|
0
|
0
|
1140
|
|
POST
|
Steve- Thanks for your reply. I am atempting to use your method but when connecting to the nowcoast.noaa.gov ArcIMS server, it is just locking up AGX for long periods of time. I am not sure why this is happening. Using ArcGIS Desktop I have no issue connecting and layers display fairly quickly. If anyone has a chance to (or has in the past) connect to http://nowcoast.noaa.gov ArcIMS server, please let me know if it works for you. I have never connected to an IMS server in AGX before. Hopefully there is not a known issue with this. Thanks.. Dim theMapItem As MapItem
Dim m_disp As MapDisplay = ESRI.ArcGISExplorer.Application.Application.ActiveMapDisplay
'Define the connection properties
Dim connProps As ServiceConnectionProperties = New ServiceConnectionProperties(ServiceType.Ims, New Uri("http://nowcoast.noaa.gov"), "nowcoast")
'Create a new ServiceLayer
Dim svcLayer As ServiceLayer = New ServiceLayer(connProps)
'Name Layer
svcLayer.Name = "Hurricane Track"
'Connect to Service
Dim connected As Boolean = svcLayer.Connect()
'Add the layer to the map.
'Check to see whether the connection was successful
If (connected) Then
'Add the layer to the map.
theMapItem = svcLayer.FindByName("Tropical Cyclone Track Lines")
If Not (theMapItem Is Nothing) Then
theMapItem.RemoveFromParent()
theMapItem = Nothing
End If
m_disp.Map.ChildItems.Add(svcLayer)
Else
'Investigate connection issue.
MsgBox("Server Connection Failed!")
Dim status As ConnectionStatus = svcLayer.ConnectionStatus
If status.HasError Then
System.Diagnostics.Debug.Print(status.ErrorString)
End If
End If
... View more
07-20-2011
05:00 AM
|
0
|
0
|
1140
|
|
POST
|
Take a look at the samples provided with the AGX SDK located @ C:\Program Files\Explorer\DeveloperKit\Samples. I found them to be very helpful.
... View more
07-19-2011
12:03 PM
|
0
|
0
|
739
|
|
POST
|
I am trying to bring in the layers from NOAA Nowcoast using ArcIMS connection but it is extremely slow due to the number of layers in that connection. They also have WMS but the resolution on some of the items is very bad using WMS. My question is, is there a way to specify which layers I want to bring in to my map using ArcIMS? I appreciate any help.
... View more
07-19-2011
11:46 AM
|
0
|
4
|
1603
|
|
POST
|
Steve- I have not had a minute to work on this. The new spatial query in 1700 workds great with any lines or polygons. I wish I had the code to incoporate into my add-ins. Anyway, if you could share the vb.net version of the code Darryl supplied it would be greatly appreciated and save me some time. Thanks!
... View more
07-19-2011
09:11 AM
|
0
|
0
|
2219
|
|
POST
|
It can be done by creating an add-in (vb.net). I have done so but the code is specific to my application so it will not be useful to share the entire add in. If you would like to see some of the code I would be happy to share.
... View more
07-14-2011
12:01 PM
|
0
|
0
|
2176
|
|
POST
|
Works for me. You may weant to provide additional info to your issue so someone will be able to properly assist you.
... View more
07-13-2011
06:35 AM
|
0
|
0
|
1155
|
|
POST
|
I could not find anything in the SDK either. I think I will try to fumble through your second option to see what i can come up with. Thanks!
... View more
06-24-2011
11:17 AM
|
0
|
0
|
2219
|
|
POST
|
I can't get this layer by query code working. Any help is appreciated. Dim points As Table = tvwMapItems.SelectedNode.Tag Dim poly As Table = tvwMapItems2.SelectedNode.Tag 'Create a List to store ObjectID's Dim objectIDList As List(Of Integer) = New List(Of Integer)() 'Loop over each area and perform a spatial query to find points For Each polyArea As Row In poly.GetRows() Dim polyAreaShape As Geometry = polyArea.Geometry Dim foundPoints As RowCollection = points.Search(New Filter(polyAreaShape, FilterSearchOptions.Intersects)) For Each rw As Row In foundPoints objectIDList.Add(rw.ObjectID) Next Next ' create the table binding adapter and fill it Dim tableBindingAdapter As TableBindingAdapter = New TableBindingAdapter(points) tableBindingAdapter.UseColumnAliasNames = True tableBindingAdapter.UseCodedValueDomains = True tableBindingAdapter.Fill(objectIDList.ToArray()) ' display the results Dim resultsForm As QueryResultsForm = New QueryResultsForm(tableBindingAdapter) resultsForm.ShowDialog()
... View more
06-24-2011
09:12 AM
|
0
|
0
|
699
|
|
POST
|
In 1700 there is now a spatial query but it is not quite what i need. I am hoping to create an add-in in order to query layer based on a certain distance from from a kml point or polygon. Anyone have any ideas if this is feasible? I was thinking I may be able to use polygon.get point on all the points and do a SearchByDistance on each point adding them to my collection.
... View more
06-23-2011
11:07 AM
|
0
|
9
|
3277
|
|
POST
|
I have never had a chance to try this but you may want to look into it. http://www.codeproject.com/KB/grid/multicolumn_sort.aspx
... View more
05-10-2011
05:00 AM
|
0
|
0
|
406
|
|
POST
|
Donna, The file number is text as it may contain letters. We just call it a number internally as it has always been called that. I am using a variable in the search and can do a UCase there no problem. My issue is that i need to convert the data i am searching through to UCase also and can not find a way to do that. The reason i need to convert is because this tool I am devoloping will not just search my file numbers but any field from any feature I have selected and that may include different cases for text fields. looking at datagridview.fill I do not see any way to specify the columns. I would actually like to do this as well and was planning on looking into it further. I will let you know what i find.
... View more
04-11-2011
08:24 AM
|
0
|
0
|
521
|
|
POST
|
So my next problems with my Search Add-in.. 1) The search is case sensitive and I would like it not to be. I was going to use UCase on the search string and the column data. However, since I am using table.search there is no select statement to use UCase on the column I am searching. 2) I would like to use LIKE in the where clause for my columns formatted as numbers. That would mean i need to CAST them as a string. As in the case of the issue abouve, since there is no select statement I can't perform a CAST on the field I am searching. Any ideas are appreciated.
... View more
04-08-2011
06:42 AM
|
0
|
0
|
1544
|
| Title | Kudos | Posted |
|---|---|---|
| 4 | 03-12-2025 11:01 AM | |
| 3 | 01-08-2025 09:26 AM | |
| 1 | 01-08-2025 07:19 AM | |
| 1 | 12-06-2024 04:52 AM | |
| 2 | 03-19-2024 04:36 AM |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|