|
POST
|
Hi Joshua, as a matter of fact, you can install it: Install and set up | ArcGIS for Developers Well...it is not arcpy is the arcgis package.
... View more
08-20-2019
06:24 AM
|
0
|
2
|
3705
|
|
POST
|
Currently I have several products in my ecosystem: ArcGIS Pro 2.4 ArcGIS Server 10.6.1 ArcGIS Desktop 10.6 Conda with arcpy package. Every one of them allows me to use arcpy package in python. How do I know the version of arcobjects used by each one of the instance of arcpy in my ecosystem? If the versions are different how do I know the compatibility among them?
... View more
08-20-2019
05:54 AM
|
0
|
8
|
3814
|
|
POST
|
Hello fellows, I have an enterprise geodabase with LRS enable. I created that geodatabase using ArcGIS Pro 2.3.3. I updated ArcGis Pro to 2.4. Do I require to update the LRS definition of my geodatabase? A colleague told me that I should run the following, but he did not explain me the reasons: arcpy.locref.ModifyLRS(database, "{0}.{1}.ALRS".format(database_name, user_dataowner)) Could any one explain me that. thanks
... View more
08-19-2019
05:02 AM
|
0
|
0
|
696
|
|
POST
|
I want to have a list of the items inside a folder created by my user in AGOL, I want to use the ArcGIS API for Python. so far I have found this: import sysfrom arcgis import gisimport os sourceURL="https://yourAGOL.maps.arcgis.com"sourceAdmin="adminUser"sourcePassword="thisIsNotMyPassword" clientAcronym = "Sales"source = gis.GIS(sourceURL, sourceAdmin, sourcePassword)existingItems = source.content.search('title:"{0}*" '.format(clientAcronym)) this code list all the items where their title start with Sales, but I know there is a folder called "Sales-Test" and it has some of those items, i want to know which items are inside of that folder: if I get the list of my folders me = source.users.me me.foldersfor folder in me.folders: print(folder['title']) me.items(folder['title']) I can see the folder "Sales-Test" In the Item documentation i cannot see how to get the folder information. Is there a way to relate the information of existingItems with me.folders?
... View more
12-21-2018
08:06 AM
|
0
|
0
|
1638
|
|
IDEA
|
Today, at the end of 2018, with the ArcGIS pro SDK in version 2.2, and I am not able to generate unit tests, not even mention apply TDD, because the SDK does not have Interfaces and most of the classes are sealed.
... View more
10-25-2018
11:59 PM
|
0
|
0
|
3533
|
|
IDEA
|
Today, at the end of 2018, with the ArcGIS pro SDK in version 2.2, and I am not able to generate unit tests, not even mention apply TDD, because the SDK does not have Interfaces and most of the classes are sealed.
... View more
10-25-2018
11:59 PM
|
0
|
0
|
2422
|
|
IDEA
|
Sounds to me a biased answer. It limits the posibilities
... View more
10-25-2018
11:57 PM
|
0
|
0
|
3533
|
|
IDEA
|
Sounds to me a biased answer. It limits the posibilities
... View more
10-25-2018
11:57 PM
|
0
|
0
|
2422
|
|
POST
|
DEAR PEOPLE FROM THE FUTURE: Here's what we've figured out so far... I am using the Python API to access instances of AGOL and Portal for ArcGIS. Using this API I am able to through the items, one of them is a dashboard. I downloaded it, it is a JSON definition. I was wondering....Is it possible to publish this dashboard to the same AGOL (I do not want to worry for the links to the map and feature services used by it) using the API? One option is to clone the existing one, but my objective is to create the dashboard from the object that was downloaded.
... View more
09-21-2018
08:26 AM
|
1
|
0
|
1238
|
|
POST
|
Hello fellows, I am using the ArcGIS API for Python, and I want to to search for a groups previously created. I am using a wild card, but it returns an empty array. from arcgis import gis source = gis.GIS(sourceURL, sourceAdmin, sourcePassword) source.groups.search('title:"*"') [<Group title:"DevStage" owner:admin>, <Group title:"Esri Boundary Layers" owner:esri_boundaries>, <Group title:"Esri Demographic Layers" owner:esri_demographics>, <Group title:"Featured Maps and Apps" owner:admin>, <Group title:"Living Atlas" owner:esri_livingatlas>, <Group title:"Living Atlas Analysis Layers" owner:esri_livingatlas>, <Group title:"Navigator Maps" owner:esri_nav>] >>> source.groups.search('title:"DevStage"') [<Group title:"DevStage" owner:admin>] >>> source.groups.search('title:"*Stage"') [] Any suggestion? What am I doing wrong? is this a bug in the API? thanks!!
... View more
09-11-2018
12:14 PM
|
0
|
0
|
939
|
|
POST
|
Hello Johnathan, I have clone surveys from a portal to another, in that operation I have changed the folder of the survey, and it still works. When I perform that operation I clone the form and the feature service and the layers. But this is when I clone it. As Matthew point, how to organize the content either AGOL or Portal if the surveys cannot be moved?
... View more
04-09-2018
01:00 PM
|
1
|
1
|
9046
|
|
POST
|
This happens because the ArcGIS Administrator application, saves the portal connections in the current user registry of windows, therefore the configurations made by user account PCAdmin are not going to be available for the user account User1. A solution is to modify the registry: Log in the Client1 machine as User1 open the registry editor: Win -> run -> regedit change the following keys: [HKEY_CURRENT_USER\Software\ESRI\ArcGIS Online\Portals] "URL0"=" https://myServerA.mycompany.com/portal" [HKEY_CURRENT_USER\Software\ESRI\ArcGIS Online\SignIn] "HomeServerURIFile"="https://myServerA.mycompany.com/portal" you can put this in a .reg file and make it easier for the User1 account
... View more
03-20-2018
06:38 AM
|
0
|
0
|
1539
|
|
POST
|
In an enterprise environment, not all users has Administrator rights. If you install ArcGIS Desktop in a PC and the user account intended to use the software do not have administrative rights, it wont be able to setup the access to Portal in your company. check this workflow: Install portal in Server A therefore portal will be available at https://myServerA.mycompany.com/portal install ArcGIS desktop in the machine Client1, it is installed using the account PCAdmin (it has administrative rights) the user PCAdmin sets up license and connection to portal using ArcGIS Administrator user User1 (non-admin account) will use ArcGIS Desktop + Catalog using the content hosted in the portal, but neither Desktop, nor Catalog allows him to sign in on the portal, because they does not show even the portal login page, only the AGOL login page. As User1 is not an administrator, he cannot open the ArcGIS Administrator application. It does not matter how many times the PCAdmin account sets up the connection to the User1 wont be able to connect to Portal. How to solve this issue?
... View more
03-20-2018
06:28 AM
|
0
|
1
|
2099
|
|
POST
|
Jake Skinner state in a similar question, the tool Clone items between ArcGIS Online and ArcGIS Enterprise organizations. is the answer. works perfectly!!!
... View more
03-02-2018
08:08 AM
|
1
|
0
|
4275
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 06-11-2021 02:41 AM | |
| 2 | 12-01-2023 02:45 AM | |
| 1 | 07-19-2021 11:25 PM | |
| 1 | 07-21-2023 04:44 AM | |
| 1 | 07-07-2023 05:15 AM |
| Online Status |
Offline
|
| Date Last Visited |
08-02-2024
12:42 AM
|