|
POST
|
I was finally able to get in touch with Technical Support and they were able to help me authorize the latest install. Not sure what the problem was but my ArcGIS Administrator still had several older licenses still listed so the support analyst walked me through deauthorizing these older (and expired) licenses.
... View more
03-03-2020
04:25 PM
|
1
|
0
|
1705
|
|
POST
|
I've had a Home Use license for several years. My 12 month period ended late last month and so I purchased another 12 month license as I always have. I had still been using v10.4 (for no real reason, just to avoid uninstall/install process). Anyways, I tried installing 10.7.1 and while the software itself installed with no issues, the authorization process bonked with this error: Underneath the red block is the authorization number that was provided with my latest Home Use license purchase. I thought maybe there was some weirdness with my old 10.4.1 still maybe being installed so I tried uninstalling all ArcGIS software, restarting, and then installing 10.8 but I still get this exact error at this point. I've tried authorizing via the Internet, I've tried creating an authorization file and then specifying it- it all ends here at the same place. Help? I've never had this many problems re-authorizing my Home Use license. My computer is Windows Pro10 64-bit
... View more
03-03-2020
02:42 PM
|
0
|
2
|
1782
|
|
POST
|
I have this problem as well. We are using Portal 10.7.1 and whatever WAB that comes with that and the feature layer (hosted in Portal) prints on the maps but neither the ESRI Vector basemap nor an imageServer service hosted on our 10.61 Image Server will show up in the resulting PDF.
... View more
02-19-2020
12:16 PM
|
1
|
0
|
4296
|
|
POST
|
Here is the ZIP file for the Washington State symbols. It's not a help for those of you looking for the Colorado ones but maybe others can contribute what they have.
... View more
02-14-2020
08:05 AM
|
0
|
0
|
5881
|
|
POST
|
No problem, glad it work out for you. I came across this solution by searching Geonet so I can't say for certain that the advice came from a bona fide ESRi employee or just a fellow user. AGO Assistant is (wink wink nudge nudge) not officially supported so always make a back up of whatever you're about to edit. The SQL parameters you used are somewhat illustrated in the AGOL documentation. Here is the link to the relevant location. Steve
... View more
01-30-2020
11:44 AM
|
0
|
0
|
2690
|
|
POST
|
Kate, I had to tackle this with a recent webmap where I wanted to show only features that were projected to be replaced within 12 years. I was hoping to use a query filter on an Arcade field but that's not supported. What was suggested (and works) is to use the AGO Assistant tool to modify the underlying definition query used on the layer in your webmap. In my case, my layer's definition query was modified to this: (a5facilitycat = 'Curb Ramp') AND (m9upgradeyr >= EXTRACT(YEAR FROM CURRENT_DATE()) ) AND (m9upgradeyr <= EXTRACT(YEAR FROM CURRENT_DATE()) + 12 ) My attribute field "m9upgradeyr" was field with the 4 digit year. Hope this helps. Good luck! Steve
... View more
01-28-2020
12:39 PM
|
1
|
2
|
2690
|
|
POST
|
To augment Lisa's answer, the latest ACS data is released by the Census Bureau around the middle of December every year.
... View more
01-24-2020
12:07 PM
|
0
|
0
|
2185
|
|
POST
|
Thanks, Joel. I did find that table during my research and it was both very helpful and confusing at the same time. In the end, I bought a Zephyr Model 2 (57970-00) antenna and it has done well. My best data collection using it was 5-15cm post processed under ideal conditions (open sky) but I've also had some bad days of data acquisition under difficult conditions which just happens sometimes. Thanks again for chiming in, Steve
... View more
01-13-2020
02:23 PM
|
0
|
0
|
2150
|
|
POST
|
I hope I don't confuse the situation but maybe this is an option. Recently, I wanted to use an Arcade field within the query filter for one of my webmaps but I found out that it isn't supported at this time (thread here). What I learned is that you can tweak the underlying SQL query using AGO Assistant and that's ultimately what I did. In my case, I had a layer of deficient curb ramps but I only wanted to show locations that were scheduled to be repaired within the next 12 years. A wrinkle in my case is that the year field in the data I was given wasn't stored as a date object so I had to do some on-the-fly tweaking. Anyways, here's an example of the Query Definition that I swapped into the web map using the AGO Assistant: (a5facilitycat = 'Curb Ramp') AND (m9upgradeyr >= EXTRACT(YEAR FROM CURRENT_DATE()) ) AND (m9upgradeyr <= EXTRACT(YEAR FROM CURRENT_DATE()) + 12 ) So, I'm just bringing this up since there might be a way to develop a more sophisticated SQL query outside of the Webmap environment. Steve
... View more
01-09-2020
08:39 AM
|
3
|
0
|
2603
|
|
POST
|
Ok, I couldn't find/remember my link because I still had it just on my machine's Localhost. Anyways, I've uploaded it and you can access it here: https://umpqualsogproject.org/ra32screener/ It's an app I've been developing but it's not finished. It's a long story but the part where you upload your KML should work fine. Hope this helps, Steve
... View more
01-08-2020
11:24 PM
|
0
|
0
|
970
|
|
POST
|
You can do this, but you have to cobble a solution together. I don't have my own link handy at the moment but I'll post the link to a working example tonight. Anyways, the strategy is to use the File & FileReader API of HTML 5 to allow your user to specify their desired KML file and to read its contents in. The next step is to convert the KML into JSON/geoJSON and then make your JS API map layer from that. There are JS libraries that facilitate this conversion. Now, I will say that the working example I'll share later was written with simple KMLs in mind (a single polygon or several). I don't know how well it might work if the KML files you intend to support are more complex. Anyways, more later..
... View more
01-08-2020
08:24 AM
|
0
|
1
|
7830
|
|
POST
|
Thank you, Chelsea for that link. I ended up just re-creating the feature layer view.
... View more
01-06-2020
10:55 AM
|
0
|
0
|
2855
|
|
POST
|
I have a JS API v3.17 internal application where the codebase has not changed in months (even perhaps at least a year). Anyways, I was recently informed that users have been unsuccessful in their attempts to update feature attributes. Within the JS code, it's using applyEdits() to pass the changes back to our ArcGIS Server. When I looked at the network traffic, the applyEdits request returns an error code of 1019 with a description of "Internal error during object update." Our ArcGIS Server is on version 10.41, which is an upgrade from 10.11, which was the version I believe when my codebase was developed. Anyways, the only references here on GeoNet to error code 1019 is related to Survey123. Any ideas about what this error relates to and where to troubleshoot it from this point? Thanks! Steve
... View more
01-02-2020
09:12 AM
|
0
|
0
|
3630
|
|
POST
|
Ok, yeah, that would be ideal. I think I'll be able to handle my current situation using the trick of using AGO Assistant to tweak the underlying SQL query string. Thanks- Steve
... View more
12-09-2019
07:57 AM
|
1
|
3
|
3506
|
|
POST
|
Working in Portal and have a hosted layer that has an integer field which represents a given calendar year.I recently realized there are some features where the value in this field represent previous years so I want to exclude them from my map using a filter. Arcade generated fields are recognized in both the symbology and pop up dialogs but they are not visible in the layer's filter dialog. This is the case? Are you not able to utilize an Arcade calculated field within the filter dialog? To be perfectly clear, this is the dialog I'm referring to: Thanks! Steve
... View more
12-06-2019
01:56 PM
|
0
|
6
|
3811
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | Thursday | |
| 1 | Wednesday | |
| 1 | a week ago | |
| 2 | a week ago | |
| 1 | 2 weeks ago |