|
POST
|
Chris, Thanks for pointing me to that drop down that allows me to identify multiple features. I guess I am showing that I am firmly rooted in desktop and not use to tools doing multiple things. Another tool that seems to have disappeared is the the zoom to extent but by chance I discovered holding the shift key allows you to draw a box. It feels that these changes in how we interact with the map is similar to the leap from mobile phones with keys to touch screens. So now I can identify multiple features from multiple maps without the need of selecting them. Just one last question is there a way to draw a box, it seems like I am only able to click a point location when trying to identify something? Duncan
... View more
05-13-2015
02:11 AM
|
2
|
6
|
14729
|
|
POST
|
Joshua, Thanks for your help. Would not have thought the zoom in/out/pan tool is also an identify tool! "Pop-up"... yuk! So now you can only click on one thing at a time and you cannot filter such as <visible layer>. The select features allows you to select multiple features in multiple layers and displays it as tree in that attribute panel, kind of like the identify tool in Arcmap. Problem with that is that you have to select stuff... The ability to configure the pop up seems a bit pointless although I could imagine a subset of people may find that helpful. It's not a work flow that works in my eyes. The identify tool in ArcMap is superior, you identify across multiple layers for multiple features, whilst filtering. You can select and copy the coordinates and see all the fields without the need of imposing a selection. This is enough for me to not use Pro.
... View more
05-12-2015
08:50 AM
|
1
|
10
|
14729
|
|
POST
|
Can some one from ESRI please confirm this? I've just been experimenting with ArcGIS Pro your new flagship software and I can't believe there is no Identify tool? Has it been given a new name and icon, some sort of re-branding? Since the dawn of time all GIS software have had a button with a classic "i" icon and I cannot find anything like it! Is there no way of drawing a box around a set of features on multiple layers like the identify tool in ArcMap? I hope this is just me being thick and not seeing the "obvious" button staring me in the face? If we can't query data with an identify tool in the classic manner this would be a definite barrier to anyone thinking about migrating to ArcGIS Pro.
... View more
05-12-2015
05:11 AM
|
3
|
0
|
14729
|
|
POST
|
Interesting tool, forgot this existed! Got interested in it and I did a little exploring of this and I don't think this tool will be useful in this case as the tool only extends lines that are perpendicular to the line its extending to. If the gaps in his river are between u/s and d/s polylines (Martin never says where they are) then this tool will not generate the expected results as the ends with be parallel. If he uses this to join a tributary to a main stem then it should work but it does not introduce a node so he will need to be doing that afterwards. Still I can see this being a useful tool for other types of processing.
... View more
05-08-2015
02:45 AM
|
1
|
0
|
5646
|
|
POST
|
I do not program in java so not sure if this is even an option for you. There is an interface called IFeatureClassLoad which alters the behaviour of the Feature class when doing bulk loads, have a look at that?
... View more
05-08-2015
02:22 AM
|
0
|
1
|
1432
|
|
POST
|
I wonder if it is due to the join? Maybe put in an export to temporary table then do the get field? Just an idea?
... View more
05-07-2015
03:46 AM
|
0
|
0
|
2655
|
|
POST
|
The thumbnail for the mxd created by File > Map document properties > Make Thumbnail is stored in the MXD itself. If you have file explorer open when you create/delete the thumbnail (then save the mxd) you can see the file size change. I would be surprised if other applications could access this as it would require those applications to know the internal structure on an MXD. The following VBA can be run from within the MXD to export it. If you place this in the normal template then you should be able to run this code in all MXD's Public Sub ExportMXDThumbnail()
' Creates a bitmap in c:\temp of the MXD thumbnail
On Error GoTo eh
Dim pMxDocument As IMxDocument
Set pMxDocument = ThisDocument
Dim pMapDocument As IMapDocument
Set pMapDocument = pMxDocument
Dim pPicture As IPicture
Set pPicture = pmd.Thumbnail
SavePicture pPicture, "c:\temp\mythumb.bmp"
Exit Sub
eh:
MsgBox "No thumbnail to export!"
End Sub
... View more
04-23-2015
07:56 AM
|
0
|
0
|
1067
|