|
POST
|
Take a look at this tool https://marketplace.arcgis.com/listing.html?id=c34019b0623041608df4d06970a7a96a
... View more
08-16-2017
11:50 AM
|
0
|
4
|
4379
|
|
POST
|
We have 2 org accounts for our company. I created groups to share and it works. The issue is if I click Share in a webmap from org 1 and send that link to someone in org 2 the login screen that appears is org1.maps.arcgis.com which then tells them they are not a member of the org. So everyone thinks they do not have access causing help desk calls. I found this post Sharing Between ArcGIS Online Organizations about fixing it for App builder but how do I fix it for a regular webmap? I just want to be able to share a webmap link across orgs. Thanks
... View more
08-16-2017
08:51 AM
|
0
|
2
|
1151
|
|
POST
|
I am having this same issue but with WebMaps. How do I fix this for a regular AGO webmap?
... View more
08-16-2017
08:13 AM
|
0
|
0
|
2267
|
|
BLOG
|
I talked about this a few posts up. Here is why If you turn on editor tracking then publish it will use 'Created_date' (this is true for SDE or file geodb). If you publish first with no tracking then in AGO turn on editor tracking it will use "CreationDate" Why the two ways use different names is beyond me. Plus it used to be ET_EDITOR a few versions ago so we still have that in some random places. The code should be adjusted for this. Hope this helps
... View more
07-21-2017
02:58 PM
|
0
|
0
|
20501
|
|
POST
|
ArcPro 2.0 is now failing on Create Map Tile Package tool. Bummer it was so nice.
... View more
07-06-2017
02:30 PM
|
0
|
0
|
2285
|
|
POST
|
ArcPro 2.0 is now failing on the Create Map Tile Package tool. Bummer cause it was working so well. Not sure why the cache tools always have so many bugs.
... View more
07-06-2017
02:29 PM
|
0
|
0
|
3002
|
|
POST
|
I set my profile so that you can see my email now. Happy to help.
... View more
07-06-2017
02:27 PM
|
0
|
0
|
3631
|
|
POST
|
Problem is back in 2.0. The Manage Tile cache tool still requires a .mxd. When I make a mxd in ArcMap and try to use it i get a weird 9999 error. When can we use these tools in Pro?
... View more
07-06-2017
09:07 AM
|
0
|
0
|
568
|
|
DOC
|
My example on Jun 8 does copy over domains so give that a shot.
... View more
07-03-2017
08:56 AM
|
0
|
0
|
17264
|
|
POST
|
I have users asking how they can View surveys they sent. When they go into their sent box and tap a survey it asks to edit or copy to a new one. They do not want to do either then just want to "Look at" the one they sent. So they get confused and I end up with double data or date stamp changes. Is there any way to just view in the app? I am guessing the answer is - that what Collector is for. But if you collect a survey offline then collector can not help you. Our guys might be a few days with no internet so no way to sync the survey then sync to collector. Any ideas appreciated. Thanks
... View more
06-28-2017
11:45 AM
|
0
|
1
|
1162
|
|
BLOG
|
So that must be why I can always unzip them using windows but can never zip them back up and work. I do have 7zip. Is there any help that tells what the settings are for 7zip to work with TPKs (like what compression method). thanks
... View more
06-27-2017
04:29 PM
|
0
|
0
|
8379
|
|
DOC
|
In case some of you can not get this to work i just got a new way to work great. I had been using the ArcRest Create Replica way but I found a bug in tables (it will not add records to any HFS=Hosted Feature Service tables). So I asked and the ArcRest guy turned me onto another way. This way is equivalent to doing a Export Data from the Item page in AGO (the one with all the settings and such). So you may want to do the Export manually first to see if this works on your data. First you need the Item ID of the HFS - get this from the top of the Item page in AGO. You want the last part after id= URL looks like http://xxx.maps.arcgis.com/home/item.html?id=46954aa9bfb24c53bba320f363af8550 Then I slightly modified the ArcRest sample script called create_replica_portal_item.py (in other words some of this is not my code) ArcREST/create_replica_portal_item.py at master · Esri/ArcREST · GitHub LOOK for the caps on what to change Note the post messed up all the indents - i tried to fix but may be off import arcrest from arcresthelper import securityhandlerhelper from arcresthelper import common import os, time def trace(): """ trace finds the line, the filename and error message and returns it to the user """ import traceback, inspect, sys tb = sys.exc_info()[2] tbinfo = traceback.format_tb(tb)[0] filename = inspect.getfile(inspect.currentframe()) # script name + line number line = tbinfo.split(", ")[1] # Get Python syntax error # synerror = traceback.format_exc().splitlines()[-1] return line, filename, synerror if __name__ == "__main__": proxy_port = None proxy_url = None securityinfo = {} securityinfo['security_type'] = 'Portal'#LDAP, NTLM, OAuth, Portal, PKI securityinfo['username'] = "PUT USERNAME HERE" #<UserName> securityinfo['password'] = "PUT PASSWORD HERE" #<Password> securityinfo['org_url'] = "http://www.arcgis.com" securityinfo['proxy_url'] = proxy_url securityinfo['proxy_port'] = proxy_port securityinfo['referer_url'] = None securityinfo['token_url'] = None securityinfo['certificatefile'] = None securityinfo['keyfile'] = None securityinfo['client_id'] = None securityinfo['secret_id'] = None # where to save the zip files savePath = r"PUT OUTPUT DIR HERE" itemId = "PUT ITEM ID HERE" #sample itemId = "5a9ecdf30f53466bad14f5dbbedb1014" try: shh = securityhandlerhelper.securityhandlerhelper(securityinfo=securityinfo) if shh.valid == False: print shh.message else: admin = arcrest.manageorg.Administration(securityHandler=shh.securityhandler) item = admin.content.getItem(itemId) user = admin.content.users.user(username=item.owner) # use to set jsut some layers. NOT using this ## exportParameters = {"layers":[ ## { ## "id": 0, ## "where": "OBJECTID = 1" ## }] ## } # this version waits for the download so no pause needed res = user.exportItem(title=HFSname, itemId=itemId, exportFormat="File Geodatabase", exportParameters=None, wait=True) exportItemId = res.id exportItem = admin.content.getItem(exportItemId) itemDataPath = exportItem.itemData(f=None, savePath=savePath) # Delete from AGO list to remove clutter exportItem.userItem.deleteItem() # rename file so it makes sense #taken out for ease except (common.ArcRestHelperError),e: print "error in function: %s" % e[0]['function'] print "error on line: %s" % e[0]['line'] print "error in file name: %s" % e[0]['filename'] print "with error message: %s" % e[0]['synerror'] if 'arcpyError' in e[0]: print "with arcpy message: %s" % e[0]['arcpyError'] except: line, filename, synerror = trace() print "error on line: %s" % line print "error in file name: %s" % filename print "with error message: %s" % synerror Let me know how it goes.
... View more
06-08-2017
02:10 PM
|
0
|
0
|
17264
|
|
POST
|
Thank Yes I am thinking about changing the dir I use to Collector but that means going out and switching 170+ tablets that are in the field already. Also we use a file structure that allows for using the tpks zipped and unziped which I am not sure collector will allow (the large basemaps work faster unzipped).
... View more
06-06-2017
04:22 PM
|
0
|
1
|
2240
|
|
POST
|
Well the update came out today and it looks like there is no way to choose a directory as i stated in my post. Since you asked for the list I was really hoping you guys did it. It only lets you change to sdcard then forces you to use ArcGIS_Collector folder (unless I am missing something). Why not just give is a file pick box? Please! If not I will still have two copies of my data. Also it seems like this change was only for basemaps and it does not have the ability to just read in any tpks. Thanks https://community.esri.com/community/gis/applications/collector-for-arcgis/blog/2017/06/06/collector-for-arcgis-updated-today
... View more
06-06-2017
04:07 PM
|
0
|
3
|
2240
|
|
POST
|
I did it using Data Driven pages. See the post here. https://community.esri.com/message/586285#586285
... View more
06-06-2017
02:46 PM
|
0
|
0
|
3972
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | yesterday | |
| 1 | 04-13-2026 01:34 PM | |
| 2 | 04-10-2026 11:25 AM | |
| 1 | 04-09-2026 02:37 PM | |
| 1 | 04-07-2026 08:33 AM |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|