|
POST
|
If has only been implemented for Buffer https://community.esri.com/ideas/2926 It doesn't even appear as a suggestion on ArcGIS Ideas so you might want to add this to the pile. You can introduce the class to another approach using the various overlay tools. For example, create the buffers in singular increasing fashion, then use the Erase tool to remove the overlaps in order from largest to smallest. You could also get them to examine the differences that are produced with Union and Update. Although not perfect, it will introduce the idea that sometimes sequential steps are needed to produce an outcome that isn't available with a single click.
... View more
02-09-2020
08:21 AM
|
0
|
2
|
4726
|
|
BLOG
|
doesn't matter, I just like to keep the cloned environment within the base., Here is an example I have used
... View more
02-09-2020
07:01 AM
|
0
|
0
|
3677
|
|
POST
|
PS... skip the cmd window... if you create a shortcut as I noted, you double click on the shortcut If you are using a "cloned" environment, check out my recent blog /blogs/dan_patterson/2020/02/09/clone-arcgis-pro-25
... View more
02-08-2020
08:02 PM
|
0
|
0
|
1482
|
|
POST
|
PS... if you made a "clone", there is a possibility that you have the wrong conda environment activated. You can check that within ArcGIS Pro. Make sure you switch into the environment ...C:\...X...\bin\Python\envs\arcgispro-py3 where X is your Pro installation folder. You should be able to import the arcgis module from within the python window within Pro. If you can't... proceed on. Assuming failure of the above... Then you have to "repair" ArcGIS Pro. From the start in Windows, search for Add/Remove programs, select Remove, then you will be given the option to repair. If repair doesn't work, then you need to remove everything and start fresh. That is my preference... "upgrading" might leave behind remnants of other stuff you installed along with Pro or options etc, that aren't any good anymore My preference is to completely remove all traces of ArcGIS pro from my system... a basic uninstall should remove most, but I also check the c:\users\You\local... folder for any esri folder in the Apps folder and rename it with an "old" extension Go to My Esri and download the exe into a folder... don't run it... download it, and run the exe from that folder specifying that folder as the destination for unzipping/unpacking. You will end up with a *.msi and *.cab file. double-click on the msi and run it. Also... make a folder for your installation so it isn't in the defaults. I make and use an c:\arc_pro as the folder to install Pro into. Better than that C:\Program.... location.
... View more
02-08-2020
08:01 PM
|
0
|
7
|
4816
|
|
BLOG
|
Clone
The visual guide.
You can do it from within ArcGIS Pro.
The Visual Guide
You can add packages through the ArcGIS Pro interface, but I prefer using conda.
You just need to run the proenv.bat file through the interactive command prompt.
The end.
... View more
02-08-2020
05:37 PM
|
5
|
9
|
5558
|
|
POST
|
carried on over here Spyder IDE no longer works after upgrade to ArcGIS Pro 2.5 Do this Or if you want a shortcut, navigate to one of these files in the installation path: jupyter-notebook-script.py ` jupyter-lab-script.py Create a shortcut to it for your desktop Right-click on the shortcut on your desktop and fix the parameters Target: C:\X\bin\Python\envs\arcgispro-py3\pythonw.exe "C:\arc_pro\bin\python\envs\arcgispro-py3\Scripts\jupyter-lab-script.py" where X is Your_ArcGIS_Pro_Install_folder and note the double quotes around the last portion Start in: C:\Y Where Y is some folder where you store your notebooks eg: C:\Git_Dan\JupyterNoteBooks
... View more
02-08-2020
02:53 PM
|
0
|
10
|
4816
|
|
POST
|
If you have Spyder installed, and you want to import GIS, You can do it from there.. otherwise you have to launch a Jupyter Notebook or Juperlab
... View more
02-08-2020
02:42 PM
|
0
|
6
|
6588
|
|
POST
|
Did you activate the layout as suggested in your other open thread?
... View more
02-08-2020
11:38 AM
|
5
|
1
|
4169
|
|
POST
|
which version of spyder? and did you do it through conda? If not, do so, one of the jupyter's that esri deployed has "issues", and spyder pinned to a particular verison number until jupyter(s) get them resolved. I can't remember what exactly what it is, but I hit on this during beta and posted about it there. So the easiest solution is to use a --no-pin to get the correct version number. Subsequent updates to spyder will update whatever package(s) were the issue and you won't have to worry about it. I have been using Spyder 4 /blogs/dan_patterson/2019/12/12/spyder-4-the-python-ide-for-science and love it. I upgraded numpy from 1.16.5 to 1.18.1. The only reason that 1.16.5 is still being used is because of arcmap which uses python 2.7 and numpy 1.16.5 is the last version that supports python 2.7. Here is what I did on a clean install of 2.5 after removing the 2.5 Beta 3 version conda list --revisions
(arcgispro-py3) C:\arc_pro\bin\Python\envs\arcgispro-py3>conda list --revisions
2020-02-06 19:38:01 (rev 0)
+arcgis-1.7.0 (esri)
+arcgispro-2.5 (esri)
+asn1crypto-0.24.0
+atomicwrites-1.3.0
.... snip .......... #### initial install
2020-02-06 19:42:13 (rev 1)
ipykernel {5.1.2 -> 5.1.4}
jedi {0.15.1 (esri) -> 0.14.1}
.... snip .......... #### I installed spyder, version 4.0.1
+spyder-4.0.1
+spyder-kernels-1.8.1
+typed-ast-1.4.1
+ujson-1.35
+watchdog-0.10.1
+wrapt-1.11.2
+yapf-0.28.0
2020-02-06 20:17:21 (rev 2) #### I upgraded numpy
numpy {1.16.5 -> 1.18.1}
numpy-base {1.16.5 -> 1.18.1}
2020-02-06 20:24:14 (rev 3) #### I down graded numpy
sphinx {2.3.1 -> 1.8.5}
+sphinxcontrib-1.0
+sphinxcontrib-websupport-1.1.2
(arcgispro-py3) C:\arc_pro\bin\Python\envs\arcgispro-py3> Now you can revert to a previous revision using conda list --revisions
# find the revision that you want to revert back to
# Then enter it within the [ ] in the line below
conda install --revision [revision number] And in order to install anything properly, check to see what it will do using # where some_package is "some package" like spyder or whatever
conda install some_package --no-pin --dry-run
# check to see what is going to happen and if you understand what might happen
conda install some_package --no-pin
Good luck
... View more
02-08-2020
11:37 AM
|
0
|
8
|
6588
|
|
POST
|
In pictures You need to Activate the layout Then while on the activated layout, pick the tool you want And away you go
... View more
02-08-2020
11:01 AM
|
7
|
2
|
4296
|
|
POST
|
The tools worked... but it was empty, hence the warning... Did you specify the coordinate system in the Environments tab for the tool? Grid Index Features—ArcGIS Pro | Documentation For best results, all input feature layers and feature classes should be in the same coordinate system as the map or map frame, or if you are using the tool outside of an ArcGIS Pro session, all input feature layers and feature classes should be in the same coordinate system as the first input feature layer or feature class in the list.
... View more
02-08-2020
05:10 AM
|
6
|
2
|
2290
|
|
POST
|
You can't, it is a 'human-ware' issue. BUT! it sure is a handy feature since it cuts down on the zoomy thing, since you can simply put two views (maps) of the same data at two different zoom levels, side-by-each
... View more
02-08-2020
03:14 AM
|
4
|
2
|
1021
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 10-03-2017 11:39 AM | |
| 1 | 08-05-2019 05:21 PM | |
| 1 | 09-02-2016 08:05 AM | |
| 1 | 01-15-2018 01:10 PM | |
| 1 | 09-17-2018 12:48 AM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:22 AM
|