|
IDEA
|
Another use case we have is needing to switch repeatedly in Fields Maps between Online and an Enterprise portal running locally on a laptop in the field. Often when reaching somewhere with connectivity, we need to work with both in short order, so time lost to signing out and back in is frustrating.
... View more
10-19-2023
05:56 AM
|
0
|
0
|
3830
|
|
IDEA
|
Adding more software download links may cause other issues, if people only have access to the latest version, as it currently works for ArcGIS Pro. University users may need a specific version to match course materials, documented research workflows, or to stay in-line with collaborators. See a related Idea, Download other versions of ArcGIS Pro from ArcGIS Online besides the latest release.
... View more
10-18-2023
09:11 AM
|
0
|
0
|
2279
|
|
IDEA
|
In the meantime, if you are looking for a workaround using a free, open-source solution similar to ChronoFlo, then you might consider using TimelineJS in your StoryMap (see also StoryMaps and TimelineJS.)
... View more
10-05-2023
09:00 AM
|
0
|
0
|
1686
|
|
POST
|
@colelwhite my next suspect would be your authentication timing out. How much time elapses from when initiate your GIS connection to when you run into trouble? (I don't recall what the authentication timeout is set to.) You can get around this by re-authenticating periodically. Add a check in your loop, and if <x> amount of time has passed, re-authenticate before continuing on, where <x> is less than the actual timeout value, and leaves enough time for the remaining code in the loop to run within the current authentication time window. I would suggest splitting your line below into multiple steps: user_content = gis.content.advanced_search(query='owner: ' + u.username, max_items=-1)['results'] Assign the result of the function to a variable, then check to make sure what you are expecting was returned (i.e., the "results" subscript exists). If it exists, then assign it to user_content and move on; however, if it doesn't exist, then print out what was returned, as it may provide info about hitting an API limit, your authentication being invalid, etc. As for strategies, I think you are on the right track with the Python API. It is what we use in an org of ~10,000. When we are extracting system-wide information, like inspecting every Item, we do have to deal with API rate limits, authentication timeouts, and the hard limit of 10,000 on arcgis functions. Another strategy for some kinds of data, if you're not looking for it more often than daily, is to create and schedule reports. Using reports leaves all the heavy lifting of gathering the data to ArcGIS Online itself, and then you can process the report's contents as needed. For example, we track daily stats for Items by having a scheduled ArcGIS Online Notebook process the output of a scheduled daily "Item" report. The Notebook runs once a day (after the time for which the report is scheduled), and it downloads the latest Item report (a csv file), and puts the data in a Pandas DataFrame. We then calculate the stats in which we are interested, and append them, along with a timestamp, to a table in a hosted feature layer, which feeds our "item" Dashboard. (We also save a copy of the csv to DropBox for backup purposes, and delete the report on ArcGIS Online to save space.)
... View more
10-04-2023
05:49 AM
|
1
|
1
|
2619
|
|
POST
|
I wonder if what you are seeing is a result of hitting the API rate-limit for requests? Smaller organizations don't typically need to worry about it, however, it looks like you have enough users that it could be the issue. Perhaps add a sleep in your loop to spread out your requests, and see if that helps? (I haven't done a performance comparison in a while, however, when advance_search was introduced, it didn't seem to be as fast as arcgis.gis.User.items for obtaining a list of a user's items.)
... View more
10-03-2023
09:27 AM
|
1
|
0
|
2635
|
|
IDEA
|
@jbears89 looks like it was renamed or a new, similar example was created: webgl_panorama_equirectangular.html. It is an example for 360-degree images though. For obj, I would suggest looking at webgl_loader_obj.html. The example I included at the bottom of the StoryMap used a model in glb format. If you want to start from there, then you can view the page source, and in your version replace the glb-loader related content with what's needed for loading an obj model.
... View more
10-02-2023
05:50 AM
|
0
|
0
|
5121
|
|
IDEA
|
In addition to pbf for vector tiles, I would like to be able to add mvt URLs as well, (e.g., https://tiles.something.com/tiles/{z}/{x}/{y}.mvt)
... View more
09-21-2023
06:01 PM
|
0
|
0
|
2769
|
|
IDEA
|
When right-clicking on Databases in Catalog, and selecting New OLD DB Connection, then choosing the Microsoft Office 16.0 Access Database Engine, the next Dialog asks for a Data Source. If you go to your Window's File Explorer, right-click on the Access database file you want to use, and select "Copy as path", the value that is generated is a path enclosed in double-quotes. When you paste the value in to the Data Source field, and click on Test Connection you receive an error, "...Not a valid file name." Removing the quotes eliminates the error. The Data Source field should support entering a quoted path to make it easy to cut-and-paste, and not have to manually enter a path.
... View more
09-21-2023
07:31 AM
|
0
|
1
|
893
|
|
IDEA
|
We are interested in a getting a better handle on the use of ArcGIS Drone2Map in our organization. We have a small pool of Advanced licenses, which are often passed around, while many more users have access to Standard; these are Named User licenses. Our goal is to get a better picture of the number of users using Advanced simultaneously, as well as how many different users are taking advantage of an Advanced license over time. The Portal History REST API provides a way to extract Named User login info by app in ArcGIS Online, however, in the case of Drone2Map, the same appid -- arcgisd2m -- is used for both Advanced and Standard licensing. The idea would be to log a different appid, depending on a user's Named User license level for Drone2Map, such as arcgisd2madv and arcgisd2mstd.
... View more
09-14-2023
10:22 AM
|
0
|
0
|
896
|
|
POST
|
Wondering if anyone who is already using the DUO Universal Prompt can confirm that the fix for BUG-000153961, listed in the ArcGIS Pro 3.1.3 release notes, prevents this issue from occurring? (The bug page lists the Version Fixed as 3.2.). Thanks in advance!
... View more
09-14-2023
09:17 AM
|
0
|
0
|
2270
|
|
IDEA
|
I occasionally find myself doing this as well for the same reasons, and sometimes because we're not happy with the appearance or screen-real-estate usage of the auto-generated legend in an embedded web map or web app. This would be a great accessibility improvement. I like the suggestion of solving this using the new ArcGIS StoryMaps Table block in your mock-up, by enabling one to put an image in a table cell. I'm sure there would be a lot of other uses for that kind of functionality too, in addition to creating a legend.
... View more
09-06-2023
08:58 AM
|
0
|
0
|
1321
|
|
POST
|
Wondering if anyone who's institution has already switched to the DUO Universal Prompt can confirm that the fix in ArcGIS Pro 3.1.3 successfully addressed the login issue?
... View more
09-06-2023
08:13 AM
|
0
|
0
|
2069
|
|
BLOG
|
My contribution to this fun topic... if you want to chain Rooms / StoryMaps together, and only permit a person to get to the next one by solving a puzzle, then you can add Survey123 to the mix. I embed a survey in the story that includes a constraint (using Survey123 Connect), which prevents the user from submitting until they have provided the correct answer for the puzzle in the story. The link to the next room/story is provided in the Thank you message for the survey.
... View more
09-01-2023
02:33 PM
|
4
|
0
|
2313
|
|
POST
|
@ClaO When you collect line or polygon features with the GPS / GNSS metadata fields present in Field Maps, a JSON attachment is used as part of the process. That is not the case for point features. There is note relating to this in Prepare for high-accuracy data collection, "To capture GPS metadata for line and polygon features, attachments must be enabled for the feature layer." @jmaxwell_braun If the GPS / GNSS metadata fields are present, then when you collect a line or polygon -- even with your iPhone's internal receiver -- a JSON attachment gets created. The presence of the fields seems to be the dependency, rather than what receiver is used. Hoping someone else can share a solution to generating a clickable attachment list, minus the _gnss_metadata.json file, and for non-public layers. We often have photo attachments that we want included in the popup, but not the json file.
... View more
09-01-2023
09:03 AM
|
4
|
0
|
3263
|
|
POST
|
Is there an update on when the fix for ArcGIS Pro, to work with DUO's new Universal Prompt, will be rolled out? Our institution is planning to upgrade our Single-Sign-On (SSO) workflow to use DUO's new Universal Prompt this Fall semester, and I've heard of other higher-education institutions following that timing as well. Some universities that have already been through this upgrade discovered that it broke their ability to login to ArcGIS Pro via SSO within the app, using Pro's built-in browser (see ArcGIS Pro 3.0 login: Duo 2FA fails.) Instead, as a workaround, users need to perform additional steps to login by following Pro's Sign In Using Browser workflow. If you are wondering if your institution is using the traditional or universal DUO prompt, below are examples of what they look like here at the University of Michigan. Yours certainly will vary. Traditional: Universal: And, if you are wondering about the "Sign In Using Browser" workflow. The link is located on the Pro login page in the bottom, right. For example, the ArcGIS Pro login dialog looks like this at the University of Michigan: Note that you can also set "Sign In Using Browser" to be the default via the Portal settings page in Pro by checking the box for "Sign in using browser", or via the registry setting, HKEY_CURRENT_USER\Software\ESRI\ArcGIS Online For Pro\SignIn Thanks! -peter _____________ Peter A. Knoop University of Michigan | LSA Technology Services | GIS, XR, Cloud U-M GIS Community of Practice | U-M GLAM-IT Community of Practice
... View more
08-18-2023
08:51 AM
|
0
|
3
|
2185
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 3 weeks ago | |
| 4 | 06-26-2026 01:43 AM | |
| 1 | 06-18-2026 06:19 AM | |
| 3 | 06-05-2026 02:45 PM | |
| 4 | 06-02-2026 06:04 AM |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|