|
POST
|
Everyone, I have my Amazon AWS deployment up and running with an ArcServer site and a Web AppBuilder (Dev Edition) using R-based GP services without any of the issues listed above. I am currently using ArcGIS 10.4.1 and R 3.4.0. Maybe not the latest rbridge but I would say 2-3 sub versions behind the latest. R was installed using the dual 32- and 64-bit installer from CRAN since the whole architecture like Shaun says has to be 64-bit for it to work along with ArcServer. Not sure about the specific error you are reporting since that might be more appropriate for an ESRI tech person to answer you. In my case, I did not receive any error and have a few GP services published using R and the R-bridge. The only thing that took a while to figure out to make it work was the ScratchFolder output...in the R script you want to use $scratchWorkspace from the arcgisbindings package, or the derived output of a script won't be correctly written and throw an error. See this GeoNet blog discussion about it.
... View more
07-25-2018
05:59 AM
|
0
|
3
|
1964
|
|
POST
|
It appears that the way around it for Server deployments is to use arc.env()$scratchWorkspace instead of arc.env()$workspace in your R script when writing the derived output to the scratch folder (equivalent of the arcpy.scratchFolder in Python). This functionality is not well documented so I had to go through ESRI customer support to figure this out. If possible, please make sure the arcgisbindings R package has the env$scratchWorkspace function documented. Closing the issue with this solution.
... View more
07-25-2018
05:59 AM
|
0
|
0
|
943
|
|
IDEA
|
Hello Chris, I am not talking about ArcGIS Earth, but rather ArcGIS Online/Portal. I was not aware that the ESRI dev team was already in the process of working this new addition out. I think it would definitely be of great benefit to all users to be able to add raster data (with some constraints maybe on size and extent) to a web map. In my specific case, I am using the Add Data widget within Web AppBuilder and currently only see the usual shapefile (zipped), GPX, CSV, etc. A lot of our web app users are asking to add the upload raster functionality to the Add Data widget.
... View more
05-24-2018
06:16 AM
|
0
|
0
|
2699
|
|
IDEA
|
Hello Chris, I am not talking about ArcGIS Earth, but rather ArcGIS Online/Portal. I was not aware that the ESRI dev team was already in the process of working this new addition out. I think it would definitely be of great benefit to all users to be able to add raster data (with some constraints maybe on size and extent) to a web map. In my specific case, I am using the Add Data widget within Web AppBuilder and currently only see the usual shapefile (zipped), GPX, CSV, etc. A lot of our web app users are asking to add the upload raster functionality to the Add Data widget.
... View more
05-24-2018
06:16 AM
|
0
|
0
|
987
|
|
POST
|
Amy, I am chiming in only because I am dealing with the same point you are making. In my case, instead of going through the hassle of building a whole widget just to send an email, I solved it by adding a "Contact Us" link to header of the web app and then went into the main config.json file and added "mailto:<your_email_here>" into the existing "url" property of the "Contact Us" field. Wouldn't this work for you as well?
... View more
05-01-2018
08:11 AM
|
0
|
1
|
1548
|
|
IDEA
|
Everyone, I think it will be great to see the Add Data widget (or similar ones) finally enhanced to allow user upload of raster data (maybe up to a certain size limit of course). Currently, this widget only allows upload of shapefile, csv, txt, and GPX. However, many of our users have been asking about the possibility to add their own raster data as well to the web application. Especially with Google Earth Engine becoming more and more popular allowing users to upload their own raster data, I think it is time for ESRI to enhance this aspect and add support for raster data added at runtime. Please vote up if you like this idea!
... View more
04-26-2018
06:37 AM
|
4
|
4
|
3005
|
|
IDEA
|
Everyone, I think it will be great to see the Add Data widget (or similar ones) finally enhanced to allow user upload of raster data (maybe up to a certain size limit of course). Currently, this widget only allows upload of shapefile, csv, txt, and GPX. However, many of our users have been asking about the possibility to add their own raster data as well to the web application. Especially with Google Earth Engine becoming more and more popular allowing users to upload their own raster data, I think it is time for ESRI to enhance this aspect and add support for raster data added at runtime. Please vote up if you like this idea!
... View more
04-26-2018
06:37 AM
|
4
|
2
|
1293
|
|
POST
|
I have noticed you also used a single link.url as href parameter in both Sample Data 1 and Sample Data 2 <a> link tags...These links will have different URLs to point to, so what do you think is the best way to accommodate that in the config.json file? Would something like this work? "links": [ { "label": "BLAH BLAH", "url": [url1, url2] }] then called in the Widget.js as ... href: link.url[0] ... ... href: link.url[1] ...
... View more
04-24-2018
10:52 AM
|
0
|
1
|
2008
|
|
POST
|
I see, so the CSS class 'myMenu' you added along with jimu in case I wanted to add a specific custom style to that element?
... View more
04-24-2018
10:22 AM
|
0
|
3
|
2008
|
|
POST
|
Thanks a lot Rob! Would your chunk of code above replace any existing one in the Widget.js or it should be added to it?
... View more
04-24-2018
07:59 AM
|
0
|
5
|
2008
|
|
POST
|
Rob, I was able to fix the error with ESRI customer service. Basically, I just had to change my "proxyUrl" parameter in the config.json file from HTTPS to HTTP. That way, if a user type the URL with http, it now gets automatically redirected to https without buffering and throwing the cross-origin proxy error. Just thought I would let you and anyone else who might have the same issue here.
... View more
04-20-2018
11:36 AM
|
0
|
0
|
2268
|
|
POST
|
Everyone, the final solution, if you encounter a similar issue in WAB2.5 is to try upgrading to WAB2.7 and re-deploy the web application. The attribute table now seems to work just fine as it should.
... View more
04-20-2018
11:33 AM
|
0
|
0
|
1009
|
|
POST
|
I am using WAB2.7 Dev Edition as a template, and am trying to add a dropdown menu item to the header widget controller element, where all the links are listed. For example (see image below), I would like users to click on the "sample data" link and have a list of N items in a drop-down menu fashion. Sample Data | | Sample Data1 (link) Sample Data2 (link) ... For CSS, I can probably re=use some of the jimu.css style (which one?) but for the functionality, I am looking inside the \themes\FoldableTheme\widgets\HeaderController\Widget.js file: array.forEach(links, function(link) { if (link.label.toUpperCase() === 'SAMPLE DATA'){ html.create('a', { href: link.url, rel: 'noopener noreferrer', innerHTML: utils.sanitizeHTML(link.label), 'class': "jimu-link jimu-align-leading jimu-leading-margin1", style: { lineHeight: this.height + 'px' } }, this.dynamicLinksNode); } }, this); I am aware the customization has to happen here, but I am not sure how to go about it...I would normally add a <div> if I was writing it from scratch, but within the Widget.js, I want to make sure I can do this using the appropriate tags and functions.
... View more
04-20-2018
08:14 AM
|
0
|
7
|
2565
|
|
POST
|
Lucian, does it also display for you as if the whole chunk of imagery over the USA and west of it is black/missing?
... View more
04-17-2018
12:37 PM
|
0
|
0
|
1553
|
|
POST
|
Thanks Lucian, Will I have to re-add the service in my web map or it will automatically update after you do? Also, when I check the service in AGOL, I see the following time range (1972-2017) which does not match that of the service you are referring to for some reason (image 1-2 below). On top of this, when I use the ESRI IS imagery widgets in web appbuilder on the same exact service (see image 3 below), it only shows up to October 2013...no matter what area I zoom in...this for example is over the USA, North Carolina. Any ideas why these mismatches (above and below)?
... View more
04-17-2018
12:18 PM
|
0
|
2
|
1553
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 03-01-2017 10:01 AM | |
| 1 | 04-02-2018 11:35 AM | |
| 1 | 08-14-2018 03:48 PM | |
| 1 | 08-09-2017 07:31 AM | |
| 2 | 09-03-2018 04:32 PM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:25 AM
|