|
POST
|
Rebecca, I was assuming that it is all controlled by AGOL too and my expiration does show a year out as follows: I will let you know! Regards, Tom
... View more
03-31-2015
04:41 PM
|
0
|
4
|
3967
|
|
POST
|
Rebecca, I tried signing out of everything and did a good ole reboot. It still says it is going to expire and midnight. Maybe it will just rollover automagically I guess I will find out tomorrow and then contact tech support if need be. Regards, Tom
... View more
03-31-2015
04:20 PM
|
1
|
8
|
3967
|
|
POST
|
Greetings, I am getting an expiration message each time I start ArcGIS Pro and it is about to expire. I have looked at my ArcGIS Online licenses and they are good until March 31, 2016. How do I make sure that my license for ArcGIS Pro is renewed? Thanks very much! Regards, Tom
... View more
03-31-2015
03:18 PM
|
0
|
11
|
10746
|
|
POST
|
Abish, Have you looked at the GeoEvent Processor for ArcGIS? It has many ways to consume real time data and then share it back with a StreamLayer. GeoEvent Extension | ArcGIS for Server Stream Layer | ArcGIS API for JavaScript Regards, Tom
... View more
03-24-2015
01:55 PM
|
0
|
0
|
708
|
|
POST
|
Richard, I created a very simple cluster map with Leaflet. I do like the way it clusters the points. You can view source on it and see how I am using point clustering. You can view it at: http://www.yakimawa.gov/apps/postcard/appmap.html The JavaScript API also allows for point clustering: Point clustering | ArcGIS API for JavaScript I am not sure you would want to mix both APIs. Regards, Tom
... View more
03-24-2015
12:04 PM
|
0
|
0
|
2399
|
|
POST
|
I believe the database connections may have fallen out of the project when ArcPro crashed and the project had not been saved. The SDE connection files were still in the project directory, but ArcPro doesn't recognize them. Regards, Tom
... View more
03-24-2015
10:23 AM
|
0
|
0
|
1353
|
|
POST
|
Greetings, I am working on a project in ArcGIS Pro and I have added some database connections to our SQL Server database. At some point I went back to add a feature class and the database connection was no longer listed. When I added another connection and renamed it as before, it seemed to know that there were existing connections as Pro added a numeric suffix (2) to the name. Have I stumbled on a bug? Is there anyway to refresh the list of database connections instead of adding them back in? Thanks very much! Regards, Tom
... View more
03-24-2015
09:51 AM
|
0
|
1
|
4435
|
|
DOC
|
Nick, I tested it on IE 10 too and seeing the same problem you are describing. I will have to investigate. IE must be using different event types than every other browser. Apologies, I should have tested IE too. I generally only use it to look at problems like this. I will get back to you. Regards, Tom
... View more
03-19-2015
11:13 AM
|
0
|
0
|
14131
|
|
POST
|
John, Your JSfiddle project looks like it uses references to internal ArcGIS servers, so I can't run your application. You might take a look at using the new geometry engine in the latest version of Javascript API. It has a lot of functions built in to let the client do buffering, and selecting of features. You can find out more about it here: esri/geometry/geometryEngine | API Reference | ArcGIS API for JavaScript Regards, Tom
... View more
03-17-2015
11:04 AM
|
0
|
6
|
2110
|
|
DOC
|
Stan, The link to your demo is broken. It looks like the http:// is at the end instead of the beginning of the link. I was able to view your demo and it worked as described. Best Regards, Tom
... View more
03-16-2015
02:45 PM
|
1
|
0
|
9395
|
|
POST
|
Robert, That is excellent news! I will have to change my settings interface after the next release, but it will be worth it! Thanks very much! Regards, Tom Sellsted Supervising Senior Analyst Tom.Sellsted@YakimaWA.gov<mailto:Tom.Sellsted@YakimaWA.gov> 129 North 2nd Street, Yakima, WA 98901<x-apple-data-detectors://2/1> Phone (509) 576-6602<tel:(509)%20576-6602> | FAX (509) 249-6835<tel:(509)%20249-6835> 46° 36' 17.86"N 120° 30' 18.23"W
... View more
03-07-2015
07:47 AM
|
0
|
0
|
2529
|
|
POST
|
Michal, Had you considered using a cursor and maybe buffering the point geometry to create your buffers? Something like: import arcpy
ofc ="path_to_output_fc"
outcur = arcpy.InsertCursor(ofc)
fc = "path_input_point_fc"
cursor = arcpy.SearchCursor(fc)
for row in cursor:
pt = row.shape
ptgeo = arcpy.PointGeometry(pt)
ptbuff1 = ptgeo.buffer(distance1)
orow = outcur.newRow()
orow.setValue("shape",ptbuff1)
outcur.insertRow(orow)
ptbuff2 = ptgeo.buffer(distance2)
orow = outcur.newRow()
orow.setValue("shape",ptbuff2)
outcur.insertRow(orow)
ptbuff3 = ptgeo.buffer(distance3)
orow = outcur.newRow()
orow.setValue("shape",ptbuff3)
outcur.insertRow(orow)
del outcur, orow, row, cursor Regards, Tom
... View more
03-06-2015
08:59 AM
|
0
|
0
|
1152
|
|
DOC
|
Nick, Glad you got it going. I am getting a better understanding of the widget life cycle and Robert Scheitlin, GISP about changing the configuration in the \server\apps\xx\configs\Measure directory is spot on. I have simplified the configuration by just choosing meters or feet. It no longer requires conversion factors. Regards, Tom
... View more
03-05-2015
08:23 AM
|
0
|
0
|
14131
|
|
DOC
|
Nick, I added the logic to calculate distances and areas using feet. You specify this when you are configuring the app. Please test and let me know how it goes! Thanks very much! Regards, Tom
... View more
03-04-2015
05:08 PM
|
0
|
0
|
24138
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 10-24-2023 10:45 AM | |
| 1 | 05-19-2023 08:13 AM | |
| 1 | 02-22-2023 09:12 AM | |
| 1 | 05-15-2015 03:11 PM | |
| 1 | 02-10-2015 11:52 AM |
| Online Status |
Offline
|
| Date Last Visited |
02-26-2024
04:50 PM
|