|
POST
|
From the esri staff that write the documentation Frequently asked questions—ArcGIS Pro | Documentation Can I use personal geodatabases (.mdb) as data sources for ArcGIS Pro Anything associated with a table in a personal geodatabase can't be read
... View more
04-16-2020
03:30 AM
|
0
|
0
|
2022
|
|
POST
|
You better add some print statements to check that your array is properly formed... You have passed on the dtype names, but there is no indication of the type format (ie text, numbers etc) Here is an example. d[:3]
array([('alabaster', '0.7.12', 'py_0', 'python'),
(... snip ... ),
('argh', '0.26.2', 'py36_0', 'python')],
dtype=[('Name', '<U30'), ('Version', '<U15'), ('Build', '<U15'),
('Requires', '<U293')]) Note that Uxx is for unicode (aka, text fields), and you can use ('Float_fld', '<f8') for double/float fields and ('Int_fld', '<i4') for integer fields (or '<i8' if you need large integers) The help topic uses a dictionary format to form the dtype, which is also permissable, but I prefer explicit and you can use the short forms to cast the text/numeric format NumPyArrayToTable—Data Access module | Documentation PS, I have tons of blog posts on numpy
... View more
04-15-2020
09:49 PM
|
2
|
5
|
6135
|
|
POST
|
Joe 4.1.2 is out and good if you haven't updates conda update blah --no-pin
... View more
04-15-2020
05:38 PM
|
0
|
1
|
3027
|
|
POST
|
Create Network Dataset—ArcGIS Pro | Documentation Once you create and configure the network dataset, it must be built using the Build Network tool. Was that step completed? It is the last step in the tutorials links I posted to you earlier Create a network dataset—ArcGIS Pro | Documentation
... View more
04-15-2020
02:40 PM
|
6
|
3
|
3032
|
|
POST
|
It appears you are coming to the Network Analyst after many version of ArcGIS Pro. Perhaps, the tutorials will provide some background on the workflow available now and how things might differ from those in ArcMap This is a link to the first tutorial Tutorial: Closest facility—ArcGIS Pro | Documentation Melinda Morang, Jay Sandhu may have more targeted information on keystroke difference between the two platforms as they apply to the Network Analyst
... View more
04-15-2020
01:12 PM
|
6
|
0
|
1710
|
|
POST
|
ArcGISProject—ArcPy | Documentation filePath (Read Only) Returns a string value that reports the fully qualified project path and file name. How, and where, are you running your script? That might have some influence on the easiest way to proceed. The full path would be useful since you can also extract folder information beyond the aprx as well. Python parsing is simple junk = r"C:\Git_Dan\npgeom\Project_npg\npgeom\junk.aprx"
junk.split("\\")[-1][:-5] # ---- without extension
'junk'
junk.split("\\")[-1] # ---- with extension
'junk.aprx'
... View more
04-15-2020
12:58 PM
|
1
|
1
|
4663
|
|
POST
|
Marius,The coordinates don't automatically appear in the table, you have to add them Add XY Coordinates—Data Management toolbox | Documentation Now if your raster was in decimal degrees to begin with, you are done. However, if your raster was in a projected coordinate system, then you will need to return them in geographic coordinates Add Geometry Attributes—Data Management toolbox | Documentation or you can perform the projection step separately, using the Project tool, followed by the Add XY coordinates.
... View more
04-15-2020
03:13 AM
|
2
|
1
|
3570
|
|
POST
|
The parameter 'dependency' can be set to provide things like field names from a featureclass, but I haven't seen anything that dynamically allows you to copy and paste from excel
... View more
04-15-2020
02:57 AM
|
1
|
0
|
1365
|
|
POST
|
some strange ones which I don't think apply and some are resolved BUG-000113674: The Project tool fails with the error, "ERROR 000365.. but for Pro BUG-000110610: The Project tool in ArcToolbox returns the error mes.. NTv2 Now as for the geometry 'moving', things don't move if there are other data in the dataframe and things get projected on the fly. Can you calculate some geometry property (eg centroid) before and after to see if there is any change
... View more
04-14-2020
04:27 PM
|
0
|
0
|
460
|
|
POST
|
"those sites" ? Feature To Point—Data Management toolbox | Documentation if you just want to use a tool, otherwise, there are other methods depending on your familiarity with GIS
... View more
04-14-2020
03:43 PM
|
0
|
0
|
1535
|
|
POST
|
Is there a reason you are using a VB expression instead of a python one? CalculateField_management(newstreets, "TPK_SYMBL", "Toll Road", "VB", "")
... View more
04-14-2020
01:42 PM
|
1
|
1
|
1115
|
|
POST
|
you said you tried different paths, but did you attempt changing the names?
... View more
04-14-2020
08:09 AM
|
1
|
1
|
2223
|
|
POST
|
Noted in another thread as well https://community.esri.com/thread/251376-python-api-sandbox Atma Mani, Rohit Singh anyone else have info?
... View more
04-13-2020
04:38 PM
|
0
|
0
|
597
|
|
POST
|
Some further comments, not necessarily in order... You can model the radiation on a horizontal surface at each location, then extract those values to polygons that represent your actual rooftops and apply slope and aspect corrections using well known equations (eg. Sellers, 1965 plus the subsequent generations of climatologists). The calculations are ground-based, or have you added building heights to the dem? Shading on a roof vs the ground will be different as you know. As for the skipping the dem from 10 m to 0.7, just 'filter'/'aggregate' the 0.7 dem to a coarser resolution, and run tests to see if there is any break points. And finally, if you are interested in existing roof structures, then you can convert a lot of you dem to nodata to cut down on calculation time significantly. (PS, my undergrad thesis circa 1977, Global Irradiance on Slopes )
... View more
04-13-2020
04:19 PM
|
2
|
1
|
2519
|
| 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
|