|
POST
|
Susannah... Euclidean distance returns a cell by cell distance from a single location or a bunch of locations denoted by a raster representation of a point, line or polygon feature. Distance to the shoreline from somewhere inland to the shore from somewhere in the water to the shore from the shoreline into the water from the shoreline back inland So the question is what are you measuring distance from? and where do you want to measure it into? You mention the "shoreline" do you want to measure the distance from the shoreline out into the water? or measure from the shoreline back into the land? That determines what is the "origin" of the start locations are and the direction of movement. I said early on... a picture would help . Draw out on paper what you want, when you have that clear, then you know what is needed. 30 wrong outputs only succeeds at frustration...
... View more
03-11-2020
04:07 PM
|
1
|
1
|
7073
|
|
IDEA
|
I think they are trying to keep the interface small if you want to use it inside of Pro...Using it outside it is full-fledged and you can use jupyter lab too if you want more options
... View more
03-11-2020
03:07 PM
|
1
|
0
|
3231
|
|
POST
|
This thread is 9 years old Andres Castillo python 3 had only been out for less than a year
... View more
03-11-2020
11:12 AM
|
0
|
0
|
575
|
|
POST
|
Filing a case with Tech Support might help in case they have some resolution already to your situation prior to any patch release.. or even if it is covered in the release
... View more
03-11-2020
11:09 AM
|
0
|
0
|
1234
|
|
POST
|
So basically you need to provide some origins from where it will calculate the distance. Right now, it is treating your shapefile as the origin and radiating away from it into the 'water'. If you want the reverse, could construct a water raster or use a polyline of your land shapefile to provide the locations. Euclidean Distance—Help | Documentation Understanding Euclidean distance analysis—Help | Documentation And you should convert the shapefile to a raster before beginning the analysis since you want control over the analysis extent and cell size
... View more
03-11-2020
11:06 AM
|
1
|
0
|
7073
|
|
POST
|
A picture might help since I can't figure out where your origin locations are Are they onshore? on the coast? is the water nodata? is the land now a raster?
... View more
03-11-2020
10:53 AM
|
1
|
2
|
7073
|
|
POST
|
Try ... ValidateTableName—ArcPy Functions | Documentation It seems you have your workspace raw encoded, but it either doesn't like it in combination with the new table name. Also, I don't see arcpy.env.overwriteOutput anywhere in your script Checking for the existence of data—ArcPy Get Started | Documentation Also, I totally recommend not using c:\users for anything unless you are stuck in a shared environment. If you can make your own folder ensuring the path subfolders don't begin with \g, \t, \u, \a, \b p = "c:\t\a\n\b"
p
'c:\t\x07\n\x08'
print(p)
c:
# ---- r works, or \\ or /
p = r"c:\t\a\n\b"
print(p)
c:\t\a\n\b
or the os module's path join p = ['C:\\', 't', 'a', 'n', 'b']
os.path.join(*p)
'C:\\t\\a\\n\\b'
... View more
03-11-2020
08:53 AM
|
0
|
1
|
2862
|
|
POST
|
Try a folder that is different, or "raw encode the folder path. Either the \U will make the path unusable, or the \n later on p = "C:\Users\jrm236admin\Documents\new\Hurricane\folder\hurricane_dbf.dbf"
File "<ipython-input-1-e0812d7d099a>", line 1
p = "C:\Users\jrm236admin\Documents\new\Hurricane\folder\hurricane_dbf.dbf"
^
SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UXXXXXXXX escape
# ---- raw encoded... a little 'r' goes a long way
p = r"C:\Users\jrm236admin\Documents\new\Hurricane\folder\hurricane_dbf.dbf"
print(p)
C:\Users\jrm236admin\Documents\new\Hurricane\folder\hurricane_dbf.dbf
... View more
03-11-2020
07:10 AM
|
1
|
3
|
2862
|
|
POST
|
It isn't disabled in any way... Did you find information to the contrary? The only warning is.... We just ask that you use ArcGIS for Personal Use for personal, noncommercial projects.
... View more
03-11-2020
03:57 AM
|
0
|
3
|
1417
|
|
POST
|
did you set your workspace just to be sure Get Count—Data Management toolbox | Documentation and it is a layer or table view? If the input is a layer or table view containing a selected set of records, only the selected records will be counted.
... View more
03-10-2020
03:36 PM
|
1
|
0
|
1301
|
|
POST
|
Sorry, Dave, I have used Pro for too long I guess. If it isn't there, might be worth the install
... View more
03-10-2020
03:29 PM
|
0
|
1
|
5706
|
|
POST
|
How about Generate Transects Along Lines—Data Management toolbox | Documentation Ooops, hope ArcMap has that tool, This is from Pro
... View more
03-10-2020
03:14 PM
|
3
|
5
|
5706
|
|
POST
|
a *.dbf file has to go into a folder, If you want a geodatabase table, then a *.gdb needs to be specified Your workspace name doesn't look right
... View more
03-10-2020
02:16 PM
|
0
|
5
|
2862
|
| 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
|