|
POST
|
Matthias, The cube root of a number in VB should be: [Field] ^ (1/3) Regards Anthony
... View more
02-15-2013
07:50 AM
|
0
|
0
|
1823
|
|
POST
|
Amama, I would say this is probably a limitation of KML that polygons cannot contain textures as fills. Regards Anthony
... View more
02-15-2013
06:52 AM
|
0
|
0
|
3141
|
|
POST
|
You can create a replica from your sde database to your file geodabase: http://resources.arcgis.com/en/help/main/10.1/index.html#/Creating_a_one_way_or_two_way_replica/003n000000tm000000/ Then set up a model using the synchronize changes tool under distributed databases. Turn this model into a Pyton script then use a windows scheduled task to run the script once a week Regards Anthony
... View more
02-15-2013
06:44 AM
|
0
|
0
|
1451
|
|
POST
|
Jason, Are you requesting the wms in a format that can display with a transparent background, such as png. If not try using rest services: http://140.241.251.197/ArcGIS/rest/services/WeatherNOAANowCoastStatePlane/MapServer There are also plenty of weather links on this thread: http://forums.arcgis.com/threads/38563-Noaa-NowCoast-WMS-layers Regards Anthony
... View more
02-15-2013
06:02 AM
|
0
|
0
|
1136
|
|
POST
|
Shariful, I don't know of a way to auto increment a number by the order that you select features, you can autonumber a selection of features, but the numbering will be done by the order they are in the table. The script to do this is below. To calculate values, right click the column heading and select calculate values from the on text menu, see: http://www.esri.com/news/arcuser/0405/files/fieldcalc_1.pdf make sure to set the parser language to Python. Click the advanced check box, in the code block section, you want to paste the sample: rec=0 def autoIncrement(): global rec pStart = 1 #adjust start value, if req'd pInterval = 1 #adjust interval value, if req'd if (rec == 0): rec = pStart else: rec = rec + pInterval return rec Then in the text box at the bottom of the field calculator where it says "YOUR_FIELDNAME=", simply type in the name of the function, which in this case is AutoIncrement(). Regards Anthony
... View more
02-15-2013
04:44 AM
|
0
|
0
|
1459
|
|
POST
|
Shariful, If you select the parcels that you want to change the attributes for, then right click on the field heading of the attribute you want to change in the attribute table and select calculate values this will only change the value for the parcels you have selected. Hope that is what you are after, Regards Anthony
... View more
02-15-2013
02:39 AM
|
0
|
0
|
1459
|
|
POST
|
Iker, Have a look at this thread on the subject: http://forums.arcgis.com/threads/9001-Clip-and-ship-geoprocessing-service-to-be-utilized-in-silverlight-app And this code sample: http://ess.maps.arcgis.com/home/item.html?id=0dca1f4740fe4c71a8e7b418162338fc Regards Anthony
... View more
02-15-2013
01:26 AM
|
0
|
0
|
653
|
|
POST
|
George, Do you have the ability to amend the source code? If so the fix you require to add an excel spreadsheet in decimal degrees to a web Mercator application is as follows: Add the following import statement: import com.esri.ags.utils.WebMercatorUtil; Change the gmapPoint variable as illustrated below: var long:Number = Number(tempData.getItemAt(i)[longNumb].value); var lat:Number = Number(tempData.getItemAt(i)[latNumb].value); // var gmapPoint:MapPoint = new MapPoint(long,lat,new SpatialReference(4326)); var gmapPoint:MapPoint = new MapPoint(long,lat); gmapPoint = WebMercatorUtil.geographicToWebMercator(gmapPoint) as MapPoint; Regards Anthony
... View more
02-14-2013
05:40 AM
|
0
|
0
|
1490
|
|
POST
|
Hector, The JS API is backward compatible so you should be able to use the latet 3.3 with a 9.3.1 server. The only caveat is that you cannot use JS API features that aren't supported by the release of ArcGIS Server you're using. For instance, you would not be able to do any editing against your services or time aware layers etc. If you're just displaying and querying, you should be good to go. Regards Anthony
... View more
02-14-2013
05:14 AM
|
0
|
0
|
654
|
|
POST
|
Ryan, Glad it worked, please don't forget to mark the post as answered, Regards Anthony
... View more
02-13-2013
10:42 AM
|
0
|
0
|
1872
|
|
POST
|
Ryan, Use an expression in the calculate field similar to : Left of - left([fieldname],instr([fieldname],"-")-1) Right of - Mid([fieldname],instr([fieldname],"-"),len([fieldname] - instr([fieldname],"-") Or Right([fieldname],len([fieldname] - instr([fieldname],"-")) the instr function gives the position of a text string within another, and the left function extracts a string from another one, as does mid & right Regards Anthony
... View more
02-13-2013
08:12 AM
|
0
|
0
|
1872
|
|
POST
|
Larry, Glad you got it to work, please don't forget to mark the post as answered by clicking the arrow on the pat that gave you the answer, Regards Anthony
... View more
02-13-2013
08:08 AM
|
0
|
0
|
1202
|
|
POST
|
Totran, From what I understand the replication would replicate from one feature class to another feature class with the same name in another database, so as the feature classes have to have the same name it would be impossible for them to exist in the same database. Regards Anthony
... View more
02-13-2013
07:52 AM
|
0
|
0
|
1040
|
|
POST
|
Larry, Another useful resource can be found here: http://www.esri.com/news/arcuser/0405/files/fieldcalc_1.pdf Regards Anthony
... View more
02-13-2013
07:44 AM
|
0
|
0
|
1202
|
|
POST
|
George, Do the coordinates in your excel spreadsheet share the same projection as your application, and do you have the x and y values the correct way round? Regards Anthony
... View more
02-13-2013
07:17 AM
|
0
|
0
|
1490
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 11-01-2016 01:57 PM | |
| 1 | 02-04-2013 01:05 AM | |
| 1 | 04-11-2013 09:53 PM | |
| 1 | 04-03-2013 09:42 AM | |
| 1 | 07-25-2014 10:58 AM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:22 AM
|