|
BLOG
|
What if your json hierarchy begins with a dynamic value such as a time stamp?
... View more
05-13-2019
09:34 AM
|
0
|
0
|
30179
|
|
POST
|
I've found the following to be an adequate solution... https://community.esri.com/thread/176433 Basically, this thread shows you how to output a link in the 'output' window for the user to click on.
... View more
03-22-2019
01:19 PM
|
1
|
0
|
944
|
|
POST
|
I'm using the geoprocessing widget for WAB to create a report in html. This html document is saved on the ArcGIS server. I would like the html document to automatically open as the completion to the geoprocressing widgets task. Does anyone have an idea on how to accomplish this? I have tried the following two solutions with no luck... f = codecs.open(url, 'r') print f.read() & webbrowser.open(url, new=2) The webbrowser.open solution works great when running the tool from ArcCatalog but not from the GP tool. Thanks.
... View more
03-22-2019
08:08 AM
|
0
|
1
|
1052
|
|
POST
|
I wonder if your logs are getting so large is due to the "debug" log setting being selected. I've heard that having the debug setting selected can create large file outputs. However, I have not had any experience with this issue. You may want to check into this though. You can check it by going to the "logs" section in geoevent manager and click on "settings" and check the "log level". Next to the settings button is also a "delete logs" button. I am not sure the full extent of using this feature but it's something you could look into. Good luck.
... View more
01-29-2019
11:13 AM
|
1
|
1
|
1542
|
|
POST
|
We have a series of mqtt inputs which output into a series of feature services. We have an issue of some of the inputs randomly failing causing it to not produce an output. Basically, the input looks as though it is running (counting up) but no data is getting passed it. In order to solve the issue we just clone the input and it works. Therefore, we know it's not an issue with the GE service. So, somehow the input is getting corrupted or something. Has anyone run into this and solve it? Geoevent 10.6.1 Windows Server 2012 R2
... View more
01-15-2019
02:04 PM
|
0
|
1
|
3198
|
|
POST
|
I was able to get stayAwake to work with an app from the google play store. It did not work when adding the property in the Component.onCompleted section of the code of an app in the play store but it did within the appstudio player. So, I added stayAwake to an onselected function within the code and it works. I'm not sure if this is a coding issue or just an issue of my understanding of the quickcapture application. Thanks Tina Jin for all the help on this.
... View more
01-04-2019
12:42 PM
|
0
|
1
|
2011
|
|
POST
|
Hey Tina, Have you tried to install the app directly on your Android device, does it work? The stayawake function did not work when the apk was installed directly on the phone. What's your device model and Android version? Samsung Galaxy S7; Android version 8 Do you have the latest AppStudio Desktop installed? version is 3.2.79 Notice that stay awake will work when your app is running on foreground. If you minimize or close the app, stay awake will not work. Stayawake performs perfectly while in the appstudio player but not from the apk for some reason.
... View more
01-04-2019
07:25 AM
|
0
|
0
|
2011
|
|
POST
|
This function appears to only work while using in the appstudio player. When I built an apk file and deployed the app through the playstore, the stayawake function did not work.
... View more
01-03-2019
02:28 PM
|
0
|
4
|
2011
|
|
POST
|
I was able to keep attributes along with geometry by using the ".as_dict" with the features module... #loops through features and updates the processed attribute
for f in snowplow_fset.features:
sp_edit = f
sp_edit.attributes['Processed']=8
update_result = snowplow.edit_features(updates=[sp_edit])
update_result
t = sp_edit.as_dict
#appends select features to local feature service
add_result = fs_layers.edit_features(adds = [t])
add_result
... View more
12-24-2018
08:51 AM
|
0
|
0
|
905
|
|
POST
|
I was able to figure it out. ***this may not be best practice but it worked, newbie here...*** However, it does not carry over the attribute information. Any help on that would be great. Thanks. #loops through features and updates the processed attribute
for f in snowplow_fset.features:
sp_edit = f
sp_edit.attributes['Processed']=8
update_result = snowplow.edit_features(updates=[sp_edit])
update_result
t=(update_result)
#appends select features to local feature service
add_result = fs_layers.edit_features(adds = [t])
add_result
... View more
12-21-2018
02:14 PM
|
0
|
1
|
905
|
|
POST
|
Is there a way to append/POST queried features from a AGOL hosted layer to a ArcGIS server feature service using ArcGIS python api? If so, have would I go about doing so? Right now I'm able to access both feature services and query the features I want. However, I cannot figure how to get them from the hosted feature layer into the local feature service. Any help would be great thanks.
... View more
12-21-2018
01:45 PM
|
0
|
2
|
1034
|
|
POST
|
Thanks Tina, this is very helpful and a great new feature. I really appreciate the quick and detailed response. Thanks again.
... View more
12-18-2018
11:58 AM
|
0
|
0
|
2011
|
|
POST
|
I am now working with Appstudio 3.2. I am using the QuickCapture template as well. I placed "property bool stayAwake: true" in several places but I can't seem to get it to work. I would like the screen to stay on while the app is open or while the data capture page is open. Can you help me understand how to use this feature? I apologize if this seems like a basic question. Thanks for your time.
... View more
12-18-2018
07:46 AM
|
0
|
7
|
2011
|
|
POST
|
Has this been solved? I upgraded to ArcGIS pro 2.2.4 yesterday and lost my python prompt in the python window.
... View more
12-13-2018
02:11 PM
|
0
|
1
|
808
|
|
POST
|
I have a two part question. I have a quickcapture application which uses a AGOL hosted feature layer. We do not have portal but I would like to be able to use our own GIS server. Can quickcapture be configured to use a feature service hosted on our own ArcGIS server? Second question is, can I have multiple geometry types available to be collected at the same time? I would like to have a point feature button as well as a line within the same screen. Thanks.
... View more
12-10-2018
01:50 PM
|
0
|
1
|
696
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | Wednesday | |
| 1 | 06-19-2018 08:41 AM | |
| 1 | 03-22-2019 01:19 PM | |
| 1 | 09-08-2020 06:22 AM | |
| 1 | 12-10-2015 09:24 AM |
| Online Status |
Offline
|
| Date Last Visited |
Friday
|