|
POST
|
I am wondering what the blocks offshore are called in a NOAA bathymetric chart? And what do they represent. NGDC/MGG-Download NOS Scanned Bathymetric and Fishing Maps Alaska & Bering Sea North of 58 degrees I did some looking around on the web but could not find anything definite. Thanks for any input! Forest
... View more
10-18-2014
01:13 PM
|
0
|
1
|
4260
|
|
POST
|
Thx Cory. I have been playing with it and it and it does in fact do everything I want.
... View more
09-26-2014
12:59 PM
|
0
|
0
|
3896
|
|
POST
|
I need to make a wavy line type in arcgis desktop. What is the simplest way of doing this? Something like: Thanks, Forest
... View more
09-26-2014
11:08 AM
|
0
|
2
|
10116
|
|
POST
|
Sweet. I have already sorted this one out by exporting the schema and then I made a quick xml parser with python. I think that this should be fine. Looks good in testing.... Thanks for the input it is much appreciated.
... View more
09-23-2014
06:04 PM
|
0
|
0
|
1005
|
|
POST
|
Thanks Curtis. I think that the schema method is what I want at this time. Thanks for the input that is very good to know for the future.
... View more
09-19-2014
01:55 PM
|
0
|
0
|
1067
|
|
POST
|
I am testing it now... to see if it can handle all of the datasets at once. If so there will be no need for automation...
... View more
09-19-2014
11:34 AM
|
0
|
0
|
1067
|
|
POST
|
Thanks Jeff. I had no idea about this. Here was looking for a workaround and there is a pre-made thing right there in think right there in arc. lol. I feel a little foolish. oh well lose some win some. Thanks for the help
... View more
09-19-2014
11:33 AM
|
0
|
1
|
1067
|
|
POST
|
I am not sure I understand. You are saying that you have a field that has values like 1,2,2,3,4,4,5 etc. and you want 1,2,3,4,5,6 what is the value of this. Why not just use the OID if you need a UID (unique identifier). If this will not work- what you want can be done with python using an UpdateCursor: here is info on it. ArcGIS Help 10.1 then just update the row with a count variable. and increment it each time though the loop. count += 1 i.e. count = count + 1
... View more
09-19-2014
10:19 AM
|
1
|
0
|
1275
|
|
POST
|
Is it possible to copy a feature dataset but not feature classes within using python?
... View more
09-19-2014
10:09 AM
|
1
|
5
|
1721
|
|
POST
|
Ok sounds like this is kinda a big topic. I am new in my job, never worked with an SDE before, can you tell? lol I think I will talk to my supervises before I do anything else. Thanks for the feed back.
... View more
09-16-2014
10:58 AM
|
0
|
0
|
1221
|
|
POST
|
We have an Oracle SDE at my workplace. I would like to see the size of the datasets and feature classes. I have enable the size in the catalog options. But catalog reports nothing back?? I am using 10.1 sp 1. How do I get the size of the data on the disk? Thanks Forest
... View more
09-15-2014
04:21 PM
|
0
|
3
|
3776
|
|
POST
|
So I think I have a solution worked out with python and a mdb. My plan is to copy the datasets and feature class to a mdb database (esri personal database) and then read the metadata directly with pyodbc. pyodbc - Python ODBC library - Google Project Hosting This should work fine I believe. I have posted the code for just the metadata export for mdb part. Sorry I do not know what happed to the syntax highting option it is gone on my browser. # import arcpy import pyodbc # set up some constants MDB = r"C:\python_working\test.mdb" DRV = '{Microsoft Access Driver (*.mdb)}' PWD = 'pw' # connect to db con = pyodbc.connect('DRIVER={};DBQ={};PWD={}'.format(DRV,MDB,PWD)) cur = con.cursor() # run a query and get the results SQL = 'SELECT Documentation FROM GDB_Items;' # your query goes here rows = cur.execute(SQL).fetchall() for row in rows: temp = row[0] if temp is not None: file = open('C:/python_working/test.xml', 'w') file.write(temp) file.close() print temp cur.close() con.close()
... View more
09-15-2014
11:08 AM
|
0
|
1
|
1005
|
|
POST
|
We need to export all of the metadata for feature data sets and feature classes out of a SDE in FGDC CSDGM XML format without updating it to the new ESRI metadata structure. We have both arcgis 9.3.1 and 10.1. The SDE is 9.3.1. I am looking for the best solution for this problem. My first thought is python; however, my supervisor was unable to implement this because the available tool called updates the metadata to 10.1 (I do not see a way to do it in python for 9.3.1). So maybe vba is the way to go... Please suggest the best approach to this problem. Thanks! Forest
... View more
09-11-2014
02:45 PM
|
0
|
4
|
3823
|
|
POST
|
I just looked around the API for a method in the class com.esri.android.map.MapView for a method for adding a scale bar to the map view. All I see is a getScale() method. Is there an easy way to add a scale bar to the map view that I am missing? I guess I could make one up from the get scale method and then use a fragment....
... View more
07-23-2014
02:22 PM
|
0
|
7
|
7479
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 10-04-2024 05:39 PM | |
| 1 | 07-30-2024 09:05 AM | |
| 1 | 07-08-2024 05:32 PM | |
| 1 | 03-20-2024 10:27 AM | |
| 6 | 03-13-2024 03:38 PM |
| Online Status |
Offline
|
| Date Last Visited |
a month ago
|