|
POST
|
Does the same thing happen if you use WGS_1984_(ITRF00)_To_NAD_1983? According to this article NAD_1983_To_WGS_1984_5 has an accuracy of 2 meters where WGS_1984_(ITRF00)_To_NAD_1983 is 0.10.
... View more
03-26-2019
06:36 AM
|
0
|
3
|
1944
|
|
POST
|
Sorry I meant does the map have the same units as the imagery and FC? I agree this should not matter, trying to narrow it down.
... View more
03-26-2019
06:27 AM
|
0
|
0
|
1943
|
|
POST
|
You are not completing the cut of the selected polygon. You need to start and end outside the polygon, you cannot complete the cut somewhere in the middle of the polygon.
... View more
03-26-2019
05:58 AM
|
0
|
3
|
1436
|
|
POST
|
Sounds like it might be a meter-feet issue. Check to make sure they are using the same type of units.
... View more
03-26-2019
05:52 AM
|
0
|
2
|
1944
|
|
POST
|
Something like this for row 5 relevant colunm, if(selected(${FiberInterest},'Fiber'), 'yes','no').
... View more
03-25-2019
02:10 PM
|
0
|
0
|
981
|
|
POST
|
Have you tried refreshing your map? I have seen this behavior in both Pro SDK and Python Scripts for Pro. Pro is suppose to not need to be refreshed so there really is no code for it. One work around I had was to zoom in then back out a bit with the camera at the very end of my code. Also try rebuilding your solution, it is not suppose to be needed in small children version builds but I have found it to correct some issues in the past.
... View more
03-21-2019
08:51 AM
|
0
|
5
|
1701
|
|
POST
|
I just tested this and it happens to me as well using 2.3.1, must be a bug. Why not plot the pdf? I historically have had issues plotting from ArcMap and Pro so I always export them to pdf and print those.
... View more
03-21-2019
08:19 AM
|
0
|
1
|
2306
|
|
POST
|
Joshua, this is the answer. I had never worked on a dataset that was not a local coordinate system and it was confusing me too and I have been doing this a while. The original data is using WGS84, using the Asia North corrected the problem.
... View more
03-21-2019
05:40 AM
|
2
|
1
|
2476
|
|
POST
|
Where do you work and what is your role? I currently work for a local government in Kansas. My role is to know a little bit about a lot of things in GIS, from paper maps to SDKs. What GIS success have you had this year and what product did you use? Lately I have been writing a lot of add-ins for Pro so we can move everybody off the ArcMap platform. It forced me, a Python guy, to figure out C#. I have successful wrote them all, luckily I did not have a tight time frame. I am sure I wrote way more code then was actually needed, I feel sorry next guy who needs to modify/update them. What is your expertise (GIS related or not), and how can that help the community? I think I am ahead of the curve on Pro and the Pro SDK. I actual have fun writing Python Scripts. I prefer to help the community by asking/answer questions and ideas. Favorite Location 39°16'38"N 105°46'15"W
... View more
03-20-2019
10:06 AM
|
1
|
1
|
1997
|
|
POST
|
Here is a solution I found on here many years ago, which I cannot find now. This is for ArcMap. import arcpy, os
from arcpy import env
env.overwriteOutput = True
# Get arguments:
# Input point feature class
# Output polygon feature class
# Buffer distance
# Boolean type: Maintain fields and field values of the input in the output
print "initializing"
inPoints = arcpy.GetParameterAsText(0) # Feature Class
outPath = arcpy.GetParameterAsText(1) # Folder
outName = arcpy.GetParameterAsText(2) # Variant
buf1 = float(arcpy.GetParameterAsText(3)) # String
buf2 = float(arcpy.GetParameterAsText(4)) # String
bufDist1 = buf1/2
bufDist2 = buf2/2
outPolys = outPath+"//"+outName+".shp"
print "creating new blank feature"
arcpy.env.outputCoordinateSystem = arcpy.GetParameterAsText(5) # Coordinate System
arcpy.CreateFeatureclass_management(outPath, outName,"POLYGON","","","", "", "","","","")
print "created"
# Open searchcursor
inRows = arcpy.SearchCursor(inPoints)
# Open insertcursor
outRows = arcpy.InsertCursor(outPolys)
# Create point and array objects
pntObj = arcpy.Point()
arrayObj = arcpy.Array()
print "writing geomety"
for inRow in inRows: # One output feature for each input point feature
inShape = inRow.shape
pnt = inShape.getPart(0)
# Need 5 vertices for square buffer: upper right, upper left, lower left,
# lower right, upper right. Add and subtract distance from coordinates of
# input point as appropriate.
for vertex in [0,1,2,3,4]:
pntObj.ID = vertex
if vertex in [0,3,4]:
pntObj.X = pnt.X + bufDist1
else:
pntObj.X = pnt.X - bufDist1
if vertex in [0,1,5]:
pntObj.Y = pnt.Y + bufDist2
else:
pntObj.Y = pnt.Y - bufDist2
arrayObj.add(pntObj)
# Create new row for output feature
feat = outRows.newRow()
# Assign array of points to output feature
feat.shape = arrayObj
# Insert the feature
outRows.insertRow(feat)
# Clear array of points
arrayObj.removeAll()
# Delete inputcursor
del outRows
print "done"
... View more
03-20-2019
09:39 AM
|
1
|
0
|
3221
|
|
POST
|
Try this: for layer in layers:
if layer.getSelectionSet() > 0:
print layer
... View more
03-20-2019
08:05 AM
|
0
|
0
|
1967
|
|
POST
|
Yes you need to check it back in on the device it was checked out of. We had a computer broke and the only way to get the license back was through Esri Customer Service.
... View more
03-19-2019
11:21 AM
|
2
|
1
|
1400
|
|
POST
|
I just saw that you are new to this. First you cannot edit the layer directly from the Living Atlas. Right click the layer and export it. Next use the explode tool, this will break it into all individual features. Next select the two and Merge. I just did this on the same layer and it turns out there is a tiny gap between the two. For it to be seamless you need to draw a polygon over the gap, snapping to the boundaries, select the features and Merge.
... View more
03-19-2019
09:51 AM
|
2
|
2
|
2752
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 4 weeks ago | |
| 1 | a month ago | |
| 1 | 04-12-2021 09:58 AM | |
| 2 | 03-18-2025 10:32 AM | |
| 1 | 07-28-2020 11:56 AM |
| Online Status |
Offline
|
| Date Last Visited |
3 weeks ago
|