|
POST
|
We have cloned one of our Hub sites and created new instances of each of the pages within the site. The owner of the site and pages can view and edit the site and pages exactly as expected. However, non-owner members of the site/pages see some very odd behavior: user is a member of the Hub Administration Group the Site and all Pages are shared with the Organization user can view the site in the Site Manager page user can click the 'Pages' button on the Site Manager page and see the list of pages. user can click 'edit pencil' on the Pages page to open up a Page for editing user can make edits to the content of the Page when user clicks on the 'Save' button, a error message is displayed `You do not have permissions to access this resource or perform this operation.`. The error code is `GWM_0003` when user closes out the page and then returns to edit the page, the changes that were made are persisted in the page despite being told that the edits were not saved. from the edit page, when the user clicks the 'view' button, user is asked to login. when providing appropriate credentials user gets messages indicating insufficient permissions Any thoughts about what's going on?
... View more
03-28-2019
10:48 AM
|
0
|
7
|
2670
|
|
POST
|
Hey there. We have run into this problem as well - we want to use a filtered list with a select_multiple question. But, alas, that doesn't seem possible, yet Can you provide some additional details on how you are swapping out list_name for a question based on a 'choice' as you outlined in your response? Thank you.
... View more
03-20-2019
04:54 PM
|
1
|
2
|
9457
|
|
POST
|
John Gravois thanks for the sample. Any idea on how to set the label on the chart defined by the JSON below? I want the y label to to be 'Number of trips'.....I can use the ember-cli-cedar page (and HUB) to draw the chart, but there is no Y axis label. And i can't figure out how to force one to show up. Or is there a better way to configure the chart? Thank you. {
"type": "bar",
"datasets": [{
"url": "https://services2.arcgis.com/McQ0OlIABe29rJJy/ArcGIS/rest/services/mode_share_from_ACS_2017/FeatureServer/0",
"name": "auto",
"query": {
"where": "NOT(County = '4-county') AND Mode = 'Auto'",
"orderByFields": "Trips_SUM DESC",
"groupByFieldsForStatistics": "County",
"outStatistics": [{
"statisticType": "sum",
"onStatisticField": "Trips",
"outStatisticFieldName": "Trips_SUM"
}]
},
"join": "County"
},
{
"url": "https://services2.arcgis.com/McQ0OlIABe29rJJy/ArcGIS/rest/services/mode_share_from_ACS_2017/FeatureServer/0",
"name": "carpool",
"query": {
"where": "NOT(County = '4-county') AND Mode = 'Carpool ride share'",
"orderByFields": "Trips_SUM DESC",
"groupByFieldsForStatistics": "County",
"outStatistics": [{
"statisticType": "sum",
"onStatisticField": "Trips",
"outStatisticFieldName": "Trips_SUM"
}]
},
"join": "County"
},
{
"url": "https://services2.arcgis.com/McQ0OlIABe29rJJy/ArcGIS/rest/services/mode_share_from_ACS_2017/FeatureServer/0",
"name": "bike",
"query": {
"where": "NOT(County = '4-county') AND Mode = 'Bike'",
"orderByFields": "Trips_SUM DESC",
"groupByFieldsForStatistics": "County",
"outStatistics": [{
"statisticType": "sum",
"onStatisticField": "Trips",
"outStatisticFieldName": "Trips_SUM"
}]
},
"join": "County"
},
{
"url": "https://services2.arcgis.com/McQ0OlIABe29rJJy/ArcGIS/rest/services/mode_share_from_ACS_2017/FeatureServer/0",
"name": "walk",
"query": {
"where": "NOT(County = '4-county') AND Mode = 'Walk'",
"orderByFields": "Trips_SUM DESC",
"groupByFieldsForStatistics": "County",
"outStatistics": [{
"statisticType": "sum",
"onStatisticField": "Trips",
"outStatisticFieldName": "Trips_SUM"
}]
},
"join": "County"
},
{
"url": "https://services2.arcgis.com/McQ0OlIABe29rJJy/ArcGIS/rest/services/mode_share_from_ACS_2017/FeatureServer/0",
"name": "transit",
"query": {
"where": "NOT(County = '4-county') AND Mode = 'Transit'",
"orderByFields": "Trips_SUM DESC",
"groupByFieldsForStatistics": "County",
"outStatistics": [{
"statisticType": "sum",
"onStatisticField": "Trips",
"outStatisticFieldName": "Trips_SUM"
}]
},
"join": "County"
}
],
"series": [{
"category": {
"field": "County",
"label": "County"
},
"value": {
"field": "Trips_SUM",
"label": "Car"
},
"source": "auto",
"group": true
},
{
"category": {
"field": "County",
"label": "County"
},
"value": {
"field": "Trips_SUM",
"label": "Carpool"
},
"source": "carpool",
"group": true
},
{
"category": {
"field": "County",
"label": "County"
},
"value": {
"field": "Trips_SUM",
"label": "Bicycle"
},
"source": "bike",
"group": true
},
{
"category": {
"field": "County",
"label": "County"
},
"value": {
"field": "Trips_SUM",
"label": "Walk"
},
"source": "walk",
"group": true
},
{
"category": {
"field": "County",
"label": "County"
},
"value": {
"field": "Trips_SUM",
"label": "Transit"
},
"source": "transit",
"group": true
}
],
"style": {
"colors": [
"#283250",
"#2c5e79",
"#448c96",
"#7abaa9",
"#a1cebe"
]
}
}
... View more
02-21-2019
11:53 AM
|
0
|
3
|
4143
|
|
POST
|
John Gravois and Tom Wayson - i would greatly appreciate some guidance when working on Cedar charts. I am trying to update the axes on a JSON chart in our Hub app. The chart is type Bar and draws as desired, except that there is no Y-axis label and the X-axis labels are draw at a -45 angle. I want to add the Y-axis label and have the x-axis labels displayed at 90 degrees. I have followed the examples describe at this esri link in the JSON specification section and the examples at ember-cli-cedar, but i cant seem to change either the content of the Y-axis label or the rotation of the x-axis labels. Based on the esri docs, i have added the content below to the 'bar' chart example at ember-cli-cedar: "overrides": { "legend": { "enabled": true }, "backgroundColor": "#E6E6FA", "backgroundAlpha": 1, "categoryAxis": { "labelRotation": -90 } } the background color changes and the legend appears, but the axis label does not rotate. I have tried the following code in both the ember-cli-cedar playground (nested in the 'overrides' and as a standalone element) and the amCharts CodePen. It works in the CodePen but not in the cedar playground. "xAxes": [{ "type": "CategoryAxis", "dataFields": { "category": "country" }, "renderer": { "labels": { "rotation": -90, "verticalCenter": "middle", "horizontalCenter": "left" } } }], I've tried similar things with setting the Y-axis label but have had the same general luck - doesn't work in Cedar; works in amCharts Code Pen. Any thoughts on how to change the contents of the Y-Axis label and the rotation of the x-axis labels? Thank you
... View more
02-15-2019
04:29 PM
|
1
|
7
|
4517
|
|
POST
|
After working with Esri Tech Support, the behavior I described has been officially denoted as a bug in Operations Dashboard (BUG-000120067).
... View more
02-13-2019
10:51 AM
|
0
|
0
|
3370
|
|
POST
|
We have created a web map with a pop-up dialog box that generates a URL that opens a Survey123 survey. That functionality works great. However, when we add the web map to an Ops Dashboard, that URL has some funky URL encoding added which messes up the URL so that the survey can not be opened. Here is the URL that is generated in the pop-up from the stand-alone web map (I have replaced the item id, lat, lon and firm name with generic values😞 arcgis-survey123://?itemID=<item-id>¢er=<lat>,<lon>&field:FIRMNAME=<firm-name>&field:METRO_FSCRP_ID=fscrp10000251&field:STREET=4130%20SW%20117TH%20AVE%20%23%20H Here is the URL that is generated in the pop-up from the Ops Dashboard web map: arcgis-survey123://?itemID=<item-id>%C2%A2er=<lat>,<lon>&field:FIRMNAME=<firm-name>&field:METRO_FSCRP_ID=fscrp10000251&field:STREET=4130%20SW%20117TH%20AVE%20%23%20H Note that "¢er" in the URL generated in the stand-alone web map pop-up has been replaced by "%C2%A2er" in the URL in the Ops Dashboard map pop-up. The result is that an invalid itemId is created and Survey123 can't open the survey..... the Survey item ID contains a cent character.
... View more
02-08-2019
11:28 AM
|
0
|
10
|
4210
|
|
IDEA
|
this sounds like the functionality i suggested as well (manually grouping multiple categories into a single category https://community.esri.com/ideas/15668-allow-multiple-categories-to-be-grouped-manually-in-a-pie-chart). I wonder if we can combine them to get a more significant 'push'
... View more
10-19-2018
11:57 AM
|
0
|
0
|
4457
|
|
POST
|
No worries about the delay. You are normally so quick to respond that i was starting to worry about you. I'm glad it was just a business trip. I have created a new idea as per your suggestion: https://community.esri.com/ideas/15668 Thanks. Tom
... View more
10-17-2018
09:51 AM
|
3
|
0
|
2983
|
|
IDEA
|
I'd like the ability to manually include multiple categories into a single slice in a pie chart. Currently categories can only be grouped together based on a minimum percentage threshold (for example, all categories with less than 5% of total can be grouped). One specific use case for this request is based on data generated from Survey123. In our survey we have a multiple choice question. when multiple options are selected, Survey123 stores the selections as a comma separated list. According to esri tech support there is a known bug in Survey123 such that the options are not always listed in the same order. For example, if options A, B and C are selected, Survey123 could store the data as "A,B,C" or "B,A,C", or "C,B,A" and so on. Each of those values are really the same thing, but if you create a pie chart with that data, you will get 3 separate slices. I want to group those three values/categories into a single slice to correctly represent the data. Another example that comes to mind - a survey of middle school students and the extra-curricular act ivies might include answers like: track, basketball, drama club, art club, book club, jazz band, marching band, chess club, cooking club, none, etc. I'd like to be able to group those many options into broad categories like Sports, Art, etc. The pie chart with a few broad level categories, as opposed to many individual slices would be much nicer (i think).
... View more
10-17-2018
09:46 AM
|
50
|
6
|
6954
|
|
POST
|
I don't recall doing a separate pip install. but i do have duplicates of many libraries.......
... View more
10-10-2018
04:27 PM
|
0
|
0
|
2647
|
|
POST
|
Hi Dan. Thanks for your reply..... Mine is a base install. There are no spaces in the PATH (except for the typical ones in 'Program Files')..... ...;C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3;C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\Scripts;C:\Program Files\ArcGIS\Pro\bin\Python\Scripts;C:\Program Files\ArcGIS\Pro\bin\Python;... Can you add some detail about your statement, "I did upgrade python through conda."? Did you do this after, i.e. in addition to, the Pro upgrade? what were the steps that you followed?
... View more
10-10-2018
04:20 PM
|
0
|
0
|
2647
|
|
POST
|
Hello. Yesterday I upgraded to ArcGIS Pro 2.2.3 from 2.2.0. After doing the upgrade, i can no longer import the pandas library - neither within the Pro python interface nor other command line interpreters. Prior to the upgrade i could import pandas just fine. In Pro's Python Package Manager, pandas (version 0.23.3) is listed as an installed package - its listed twice. I am unable to Uninstall pandas and no packages at all are listed in the 'Update Packages' dialog. In my popwershell window (running with admin rights), i can enter propy and see the usual notification that i am running python 3.6.5. at the prompt, i can import arcpy, import numpy, etc. But if i try to import pandas, i get the following error message: >>> import pandas Traceback (most recent call last): File "<stdin>", line 1, in <module> File "C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\pandas\__init__.py", line 42, in <module from pandas.core.api import * File "C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\pandas\core\api.py", line 10, in <module from pandas.core.groupby import Grouper File "C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\pandas\core\groupby\__init__.py", line 2 in <module> from pandas.core.groupby.groupby import ( File "C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\pandas\core\groupby\groupby.py", line 48 in <module> from pandas.core.arrays import ExtensionArray, Categorical File "C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\pandas\core\arrays\__init__.py", line 1, in <module> from .base import ExtensionArray # noqa File "C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\pandas\core\arrays\base.py", line 10, in <module> from pandas.errors import AbstractMethodError ImportError: cannot import name 'AbstractMethodError' Any thoughts on what i need to do to be able to import pandas after the upgrade?
... View more
10-10-2018
01:38 PM
|
0
|
5
|
4581
|
|
POST
|
Hey Derek Law. I checked with Esri tech support and they were not able to answer the question as to whether multiple categories can be combined into a single 'slice' in a pie chart. Do you know if such a thing is possible, and if so how to do it (other than by grouping based on percentage)?
... View more
10-09-2018
11:40 AM
|
0
|
4
|
2983
|
|
POST
|
In Ops Dashboard, I am creating a pie chart from some Survey123 data. The data comes from a 'multiple choice' question so the data is a comma separated list of values. For example, two values are 'invasive_weed,other' and 'other,invasive_weed'. Those are ultimately the same value, but on the Survey the choices were selected in different order. Is there a way that i can combine those two values into a single pie slice? Thanks
... View more
10-05-2018
03:02 PM
|
0
|
5
|
3507
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 4 weeks ago | |
| 1 | 02-24-2021 12:15 PM | |
| 2 | 01-05-2026 10:04 AM | |
| 1 | 09-30-2025 01:30 PM | |
| 1 | 09-25-2025 07:37 PM |
| Online Status |
Offline
|
| Date Last Visited |
3 weeks ago
|