|
POST
|
It should work by this: http://resources.arcgis.com/en/help/main/10.2/003n/003n00000008000000.htm I would try to create a new connection in the simple way. Mody
... View more
08-07-2013
08:54 PM
|
0
|
0
|
2089
|
|
POST
|
That was my first idea. It is true but you must implmenet IFeatureLayer too even if you put no code in it.
... View more
08-06-2013
08:31 PM
|
0
|
0
|
668
|
|
POST
|
Hi Vince Sorry but we are getting even more confused. You are writing "feature class precision makes a *HUGE* difference" and "getting the coordref right is the most significant" Isn't this parameter part of the default information per coordinate system and should not be changed by ESRI recommendation? Then you write "A better method is to calculate indexes based on both the feature envelopes and the mean query size" �?? even if we know what a better grid size is (even without si_stats) �?? how can we change the grid size to any specific values after the feature class already exists? Thanks again Mody
... View more
08-04-2013
11:54 PM
|
0
|
0
|
790
|
|
POST
|
Hello all We are trying to run Engine JAVA application on Linux Red Hat. It runs without any problems on 3 different Linux VM machine that we created. On 2 Physical machines we can run non visual application ??? for example application that create shape file and does not use map bean in it. When we run applications that shows maps on the screen we get error of graphic card on one machine (nVidia graphic card) and core dump on the other one (intel graphic card). Is there any drivers needed for physical machines and where can we find them? Both machines are not connected directly to the internet but we can transfer any files to them. Thanks Mody
... View more
08-02-2013
01:42 AM
|
0
|
0
|
829
|
|
POST
|
Hi Vince Thanks for the answer. Most if it is understood but not all. I create an empty feature class. It has automatic index. Then I add 1000 feature with envelope size of 100 meter. Do I need to recalc my grid size? How? A week later I add 1000 more features that has envelope size of 10000 �?? what should I do? It does not make a big different with 2000 features but when you have 2000000 features and 50 people is working (display and spatial queries) on this layer it should make a different. Thanks
... View more
08-01-2013
08:10 AM
|
0
|
0
|
790
|
|
POST
|
In Version 10.1 you can no longer set the spatial grids sizes for st_geometry feature classes in Oracle. In fact you cannot even see what the sizes are. You must use some other tools like command lines (that are not going to be supported in the coming versions) to deal with the grid sizes. We have a few questions on the subject. 1) Is the index still base on girds (up to 3 levels)? 2) How the initial size is set when you create an empty layer (by spatial reference?) 3) Is it going to be changed automatically? If we enter the first 1000 line with a length of 1000 meters and then add 1000 other lines with length of 10000 �?? is the grid size going to be changed? 4) Is there any way to check the sizes and should we do it? In 10.0 we found a few feature classes where the system recommendation was far from ideal! 5) Should we rebuild it? Does it change the sizes or just rewriting the index data? It works just like File GDB but then we do not save big layers for many users in FGDB. Thanks Mody
... View more
08-01-2013
04:59 AM
|
0
|
4
|
1042
|
|
POST
|
Hello all We have a custom layer (not dynamic) and we would like ArcMap to be able to use the standard selection tool on it. Currently, when we load it into ArcMap the selection tool is disable. What interfaces do we need to implement to make this tool work? Thanks Mody
... View more
07-29-2013
09:38 PM
|
0
|
2
|
1105
|
|
POST
|
Hi All We have very large ArcSDE database (many layers) and very limited memory on the desktop machine. We would like to try to disable the Schema Cache in order to save some memory on the client. In our case the user open a ready-to-use MXD and does not add any layers to it. It is not very clear from the doc's what is the correct way to use it. Should we use it in ArcMap extension? or in any event? ??? Where should we put the code that disables it? Is there any other "prices" other than the time it will take to open another feature class from the same source? Thanks Mody
... View more
07-28-2013
09:33 PM
|
0
|
0
|
681
|
|
POST
|
The default location is inside the geodatabase �?? it creates a directory with the <fgdb name>.Overviews but this is hidden when you use desktop. I always create an OV directory together with the original tiles and not save it in the fgdb. It keeps the fgdb easier to move and it put the overview rasters together with the original data (where they can be backup together). Then you can see then just like any other raster. Mody
... View more
07-09-2013
05:34 AM
|
0
|
0
|
1420
|
|
POST
|
Hi The Define Overviews give you full control on everything you need. After you define the Build Overviews will use what ever you defined. Have Fun Mody
... View more
07-08-2013
09:42 PM
|
0
|
0
|
1420
|
|
POST
|
You must access geographic layers in mdb using ESRI ArcPy and not general python IO commands. You can open a cursor to get information from this layer. Check this: http://resources.arcgis.com/en/help/main/10.1/018w/018w00000011000000.htm Just replace the "gdb" with "mdb" Have Fun Mody
... View more
07-08-2013
09:39 PM
|
0
|
0
|
919
|
|
POST
|
Hi there is information here: http://resources.arcgis.com/en/help/main/10.1/0021/002100000021000000.htm but the link is broken. You can find in google. I think PyScripter is much better, it has parameters too. Have Fun Mody
... View more
07-04-2013
03:57 AM
|
0
|
0
|
2490
|
|
POST
|
Hi Troy As far as I know there is no way for parameters in IDLE. You can run it from CMD window if you like. Since you cannot stop for debug you do not really important. I just replace the line "x = sys.argv[1]" with "x = SomeValue" when I want to run from IDLE Have fun
... View more
07-03-2013
09:07 PM
|
0
|
0
|
2490
|
|
POST
|
Hi This: http://resources.arcgis.com/en/help/arcobjects-net/conceptualhelp/0001/00010000049w000000.htm can give you idea of what you can do (with some examples). After you build a tool you can use it just like any other tool (for example - put it in Model Builder). It is not simple but it works. Have Fun Mody
... View more
06-12-2013
10:04 PM
|
0
|
0
|
575
|
|
POST
|
Hi Ke All data sources of ArcPy can be represented as strings as well as more complex types (sometimes). The easiest way is to run the tool once from ArcMap and see what the strings are. Do not load data into ArcMap so you will get the real string representation of all the data types. Have Fun Mody
... View more
05-29-2013
09:23 PM
|
0
|
0
|
982
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | a week ago | |
| 1 | 11-25-2024 06:09 AM | |
| 1 | 01-21-2026 09:53 PM | |
| 1 | 12-15-2025 10:07 PM | |
| 1 | 09-17-2025 06:35 AM |
| Online Status |
Offline
|
| Date Last Visited |
Wednesday
|