|
POST
|
Yes you are right , Professor Patterson ... I am perplex here but I'll wait til someone gives me the new correct website..
... View more
04-14-2015
08:42 AM
|
0
|
5
|
3090
|
|
POST
|
Hello, Where do I find scripts or arctoolbox on ESRI website that I can find ? Did they move it to somewhere ? I am looking for something a tool that creates image footprints.
... View more
04-14-2015
08:09 AM
|
0
|
11
|
6822
|
|
POST
|
Or there is another way around that you can do is to go to the folder where the files you want to look for such as shapefiles, excel or so on... Explaining the Views Available in Windows Explorer and File Explorer Look at number 3 and see the list under the View..change it to "Details" because it will give you all the deteails about the files and show you the columns. When you see "Type" there is a down arrow that will give you the list to choose from to display... That is what I always do is to select one and delete anything you don't need not only for gis but in general...
... View more
03-29-2015
08:07 AM
|
1
|
0
|
1862
|
|
POST
|
Are you sure the all of the excel files have the same field name, data types etc ? From what I understand that they have to be in the same data type, or field name etc... See if this helps Lab 3 - Part 1 - Preparing Excel Spread Sheets for ArcMap. - YouTube
... View more
03-28-2015
08:36 PM
|
1
|
0
|
2827
|
|
POST
|
Hi Jessiecar, I would agree with Jake's recommend however what I did was just to copy the overview folder and paste to another folder over the shared network and test it. For example, when I was working on my NAIP on my c hard drive and then copy it to the server . Then I would copy the dataset to the server as well. Then I would test it to ensure if this is working...
... View more
03-28-2015
08:26 PM
|
2
|
0
|
3115
|
|
POST
|
I have not tried this personally in python script but give it a try and see if this works...
... View more
03-26-2015
11:15 AM
|
0
|
1
|
1940
|
|
POST
|
Have you tried other Image Processing softwares such as ERDAS or ENVI or any other programs that might do that ?
... View more
03-26-2015
09:41 AM
|
0
|
0
|
2904
|
|
POST
|
What I would do is copy and paste and then rename the shapefile and try to reproject to Geographic Coordinate system and then rerpoject to the correct project of that locate projected system
... View more
03-26-2015
08:54 AM
|
0
|
0
|
823
|
|
POST
|
Can you screen capture it and this will give us know what you were looking for and yes, Dan is right that you would need the correct projection to perform these quantities. What is the local or the area you want to projection from Geographic to Known projected coordinate system.that you wish to ?
... View more
03-22-2015
04:42 PM
|
0
|
0
|
681
|
|
POST
|
Can you create a topology and then create a rule that says "Must Not Overlaps" ? This way it will give you the error and and double click on it and select the ones you wanted You can read about it here ArcGIS Help (10.2, 10.2.1, and 10.2.2)
... View more
03-22-2015
04:39 PM
|
0
|
1
|
1172
|
|
POST
|
Thanks, The king of Python Dan ! I was going to show that to you but I didnt have a good screen capture on my laptop.. I have the same thing..if you click the older one it would not show...so the only thing I can is the Pyscripter 2.7 or later....the Pyscirpter for Python 2.6 would not work... Many thanks !
... View more
03-22-2015
08:02 AM
|
0
|
0
|
2087
|
|
POST
|
Would like to check with everyone that when I launched my Pyscripter and it came up asked me... Before I continue to do this, would 2.60 upgrade work ? Thanks
... View more
03-21-2015
11:59 AM
|
0
|
3
|
5733
|
|
POST
|
Can you use Mosaic Dataset instead of Raster Dataset and it is probably why you were having problems with the MrSID as Dan Patterson suggest ?
... View more
03-18-2015
08:01 PM
|
0
|
0
|
1315
|
|
POST
|
Good news ! While I have been figuring it out and looking at the help on this problem..Sigh It is been battle back and forth for me . The problem is in the Creating Mosaic Dataset.. This works ! I have made a lot of change from the original code I post yesterday... I had to copy the code from this reateMosaicDataset example 2 (stand-alone script) ArcGIS Help 10.1 it was giving several problems.... the prjfile does not work... so I add the the SpatialReference with WKID in it and make sure the code in one line..example see 26
################################################################################
# CREATE FILE GEODATABASE AND THEN CREATE MOSAIC DATASET #
################################################################################
# Name: CreateFileGDB_Example2.py
# Description: Create a file GDB
# Import system modules
import arcpy,os,sys
arcpy.env.workspace = "C:/workspace"
# Set local variables
out_folder_path = "C:/workspace"
out_name = "Think.gdb"
# Execute CreateFileGDB
arcpy.CreateFileGDB_management(out_folder_path, out_name)
# Creating new Mosaic Dataset within Existing File Geodatbase
try:
gdbname = "Think.gdb"
mdname = "SeeIfThisWorks"
prjfile = arcpy.SpatialReference(26913)
noband = "3"
pixtype = "8_BIT_UNSIGNED"
pdef = "NONE"
wavelength = ""
arcpy.CreateMosaicDataset_management(gdbname, mdname, prjfile, noband,pixtype, pdef, wavelength)
except:
print "Create Mosaic Dataset failed"
... View more
03-18-2015
10:02 AM
|
1
|
0
|
2533
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 2 weeks ago | |
| 1 | 04-08-2026 10:11 AM | |
| 1 | 09-01-2022 03:43 PM | |
| 1 | 09-28-2020 09:34 AM | |
| 2 | 09-24-2025 09:48 AM |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|