|
POST
|
Hi, What is the proper way to project state plan coordinate to WGS 1984? Using ArcGIS Pro I am utilizing Project tool to convert a feature class that has "NAD 1983 StatePlane Nevada East FIPS 2701 Feet" as a coordinate system to "WGS 1984 Web Mercator Auxiliary Sphere" for this projection what is the name of the transformation ? Also, I see that NAD 1983 StatePlane is in feet does this affect the transformation process? The project tool doesn't do anything and the data stays at the same location in the output FC. Thank you, Ahmad
... View more
10-09-2018
11:05 PM
|
0
|
6
|
2225
|
|
POST
|
Hi Simo, This is very helpful, but how could I use "use_proximity.create_buffers" with a list of address? lets say I have: list=['address1','address2','address3'] a=batch_geocode(list) for address in a: dict=a[0]['location'] x=dict["x"] y=dict["y"] prox=use_proximity.create_buffers((y,x),distances=[10],units='Miles')[0] m1.add_layer(prox) This method shows only one buffer of the last address, and this is expected because m1.add_layer(prox) will be the last address! I tried to pass the batch geocode results but I got this error: " Invalid format of input layer. url string, feature service Item, feature service instance or dict supported " Thank you, Ahmad
... View more
10-08-2018
07:45 PM
|
0
|
1
|
2778
|
|
POST
|
Simo, I was able to use it before on the same notebook, I think something happened after esri upgraded to Pro 2.2 The same thing happened with me when I upgraded from 2.1 to 2.2. and I was able to fix it by cloning the env. Thank you, Ahmad
... View more
10-04-2018
08:51 PM
|
0
|
0
|
1260
|
|
POST
|
Thank you very much, But I am talking about the notebook which is hosted on esri's servers notebook.esri.com. Maybe my question wasn't clear enough. Regards,
... View more
10-04-2018
01:38 PM
|
0
|
0
|
1260
|
|
POST
|
Hi all, Have you noticed that Esri Jupyter Notebook site (notebook.esri.com) is not working properly at least with the arcpy model: It seems a python env issue! Thank you, Ahmad
... View more
10-04-2018
12:48 PM
|
0
|
4
|
1805
|
|
POST
|
Adelaide, My versions are created from ArcMap, and most of them are less that a day, from my testing I found that even if you created the version when you start working (less than 1 hour age) you will still get this error! Thank you,
... View more
09-21-2018
10:08 AM
|
0
|
0
|
6799
|
|
POST
|
Thanks Asrujit, Usually I do run those 2 tools, sometimes I get that there is multiversioned tables had orphaned and sometimes I get nothing orphaned. this issue keeps happening all the day and its hard to keep disconnecting all users to apply diagnose and repair. I am looking for a method to prevent this from happening. any ideas? Thank you, Ahmad
... View more
09-21-2018
10:05 AM
|
0
|
0
|
751
|
|
POST
|
Mitch, This looks awesome , I think this is a great tool to get the current status of the DB, but it doesn't provide full history of the database of course I can run it very time I change something in DB and get a new xls file. It would be great if it tracks the history in one page. I know that this might be challenging in python. Example: Field A Field A renamed to A2 on 9/9/2018 Field A renamed to A_02 on 9/19/2018 Feild B Deleted on 9/19/2018 Field C Added on 9/19/2018 Thank you, Ahmad
... View more
09-20-2018
12:59 PM
|
0
|
1
|
1210
|
|
POST
|
Asrujit SenGupta, I am getting this error from ArcMAP when I try to reconcile my edits! also I noticed that the labels in "NodesLocation" feature class -which the error references- are duplicated but the features are not ! what might be the source of this issue, I am just doing simple edits on the features from ArcMAP. Geodatabase version is 10.5.0 ArcMAP 10.5.0 Thank you, Ahmad
... View more
09-20-2018
12:23 PM
|
0
|
4
|
6799
|
|
POST
|
Hi, Is there any software that can be used to track the GIS database schema changes, I am looking for a method or a software that tracks any changes on the schema gives a detailed report about the geodatabase history! Till now I am doing this using excel, it dose the job but not professionally . I draw a chart as an example for what am I thinking of: This chart or report gives the history of Feature Class #1 inside the Database #1: Thank you, Ahmad
... View more
08-30-2018
11:07 AM
|
0
|
3
|
1339
|
|
POST
|
Hi Dan, I tried your answer, combine will work also, here is my script: import datetime
import arcpy
targetfc=r"D:\d2\New File Geodatabase.gdb\gf"
updateDateFields=['created','updated','DesignDate']
with arcpy.da.UpdateCursor(targetfc, updateDateFields) as userUpdateCursor2:
for row in userUpdateCursor2:
rowTime=str(row[2])
y= (rowTime[:4]) #Y
m= (rowTime[5:7]) #M
d= (rowTime[8:10]) # D
x= datetime.datetime.combine(datetime.date(int(y),int(m),int(d)), datetime.time(12, 00))
print (x)
row[0]=x
row[1]=x
userUpdateCursor2.updateRow(row)
del userUpdateCursor2
... View more
08-30-2018
09:43 AM
|
0
|
0
|
5232
|
|
POST
|
Hello, Is there anyway t add a filter tool to the map in the dashboard same as the WAB? I see that I can add a search button but not filter! Thank you, Ahmad
... View more
08-30-2018
09:29 AM
|
0
|
2
|
993
|
|
POST
|
Thank you Dan, I used different approach, and it worked with me, here is my script: import datetime
import arcpy
targetfc=r"D:\d2\New File Geodatabase.gdb\gf2"
updateDateFields=['created','updated','LastUpdatedDate']
time='12:01:00 AM'
with arcpy.da.UpdateCursor(targetfc, updateDateFields) as userUpdateCursor2:
for row in userUpdateCursor2:
rowTime = "{0}".format(row[2]) # this prints somthing like 2015-1-1 00:00:00
rowTime2=rowTime[:10] # this prints 2015-1-1
rowTime3 = "{0} {1}".format(rowTime2, time) # this prints 2015-1-1 12:01:00 AM
x = datetime.datetime.strptime(str(rowTime3), '%Y-%m-%d %I:%M:%S %p')
print (x)
row[0]=x
row[1]=x
userUpdateCursor2.updateRow(row)
del userUpdateCursor2
Thank you,
... View more
08-28-2018
08:42 AM
|
0
|
2
|
5232
|
|
POST
|
Dan, I could do something like this: import datetime
import arcpy
targetfc=r"D:\d2\New File Geodatabase.gdb\gf"
updateDateFields=['created','updated','DesignDate']
time='12:01:00 AM'
with arcpy.da.UpdateCursor(targetfc, updateDateFields) as userUpdateCursor2:
for row in userUpdateCursor2:
row[0]=str(row[2])+ ' ' + time
row[1]=str(row[2])+ ' ' + time
userUpdateCursor2.updateRow(row) But the issue here is that I am changing the dates to strings and will not be able to insert the values in Created /updated fields since they have date as field type! Thank you,
... View more
08-27-2018
02:14 PM
|
0
|
4
|
5232
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 01-15-2019 10:54 AM | |
| 3 | 01-08-2019 10:42 AM | |
| 1 | 12-03-2018 12:18 PM | |
| 1 | 08-18-2020 06:32 AM | |
| 1 | 02-21-2018 07:20 AM |
| Online Status |
Offline
|
| Date Last Visited |
05-27-2024
05:35 PM
|