Arcgis Cross Section Tool

  



If you have not already been provided with the Cross Section toolbox and scripts, download the 61MB file “Cross-section-master.zip” from the above URL and extract the file to your project folder. Similar to what we did previously (Section 1.3), open your map in ArcMap and add the custom toolbox “Cross Section Tools” to ArcToolbox. View and analyse your drillholes in 3D by creating cross sections; Create single sections or multiple parallel sections, easily; Use the Viewer tool to “step through” the entire project, one section at a time; Build professional quality maps for reports, printing, and PDFs with ArcGIS Pro Layout tools.

Navigate your scene. Navigate scenes with Scene Viewer tools or use your mouse or touch device to move around scenes. You can move around scenes with the following Scene Viewer tools. Click Initial view to return to the initial camera position.; Click + to zoom in.; Click -to zoom out.; You can also use your mouse and scroll wheel to zoom in and zoom out, or click and hold the wheel.

Toolbars within the header block of ArcGIS can be updated via the drop menu item (Customize >> Toolbars) or alternatively by right clicking within the header block. Commonly used toolbars for TUFLOW modeling are listed below:

  1. Editor
  2. Snapping
  3. Edit Vertices
  4. ET GeoWizards
  5. 3D Analyst
  6. Animation

The Editor toolbar contains a collection of tools to create, update, or delete features directly within the display.
The most commonly used items within the toolbox are:

  1. Create Feature, used to define what feature types will be created.
  2. Edit Tool, used to select a feature which already exists for editing.
  3. Edit Vertices, after selecting a feature using the Edit Tool, this selection will display the vertices of a feature.
  4. Trace, used to trace existing feature geometry when creating new features. The Layers which are selectable for the tracing can be managed using the selection options via right clicking a layer in the Table of Contents. This is shown in the figure below.
  5. Sketch Properties, after selecting a feature using the Edit Tool, this selection will display the geometry properties of a feature in tabular format. Values can be updated within the display, modifying the features spatial display.
  6. Editor>>Stop Editing
  7. Editor>>Save Edits


Snapping is used to associate point features with lines or polygons. ArcGIS snapping options include: Point Snapping, End Snapping, Vertex Snapping and Edge Snapping. Edge snapping is not recommended for TUFLOW model development tasks. Edge snapping can be disabled by deselecting the Edge Snapping icon in the toolbar. After being deselected, the Snapping toolbar should resemble the figure below.

Items within the edit toolbar are used to modify the location of vertices and add or remove vertices. The Edit and Edit Vertices tools within the Editor Toolbar need to be selected before the Edit Vertices options are selectable

Aspect tool arcgis

ET GeoWizard is a central location for a wide range of geometry update tools. ET GeoWizard can be downloaded from http://www.ian-ko.com/ET_GeoWizards/gw_demo.htm. The most commonly used items within the toolbox are:

  1. Polyline >> Split Polyline
  2. Polyline >> Buffer Polyline
  3. Polygon >> Eliminate
  4. Polygon >> Fill Holes
  5. Convert >> Polygon to Polyline
  6. Convert >> Polygon to Point
  7. Convert >> Polyline to Polygon
  8. Convert >> Polyline to Point
  9. Convert >> Point to Polyline
  10. Convert >> Point to Polygon
  11. Geoprocessing >> Clip
  12. Geoprocessing >> Batch Clip
  13. Geoprocessing >> Erase
  14. Geoprocessing >> Batch Erase
  15. Geoprocessing >> Merge Layers
  16. Geoprocessing >> Split by Attribute
  17. Geoprocessing >> Split by Location
  18. Geoprocessing >> Transfer Attributes
  19. Miscellaneous >> Create Station Lines (Water Level Lines)


The 3D Analysis toolbar is used to perform analysis tasks on raster datasets. For example, cross-sections can be extracted from 3D raster datasets using the ArcGIS 3D analysis extension. This tool is useful for viewing and extracting creek cross-section or water surface elevation longprofile information.


The steps how to do this are outlined in the following webinar: Webinar Link: Extracting Cross-section Data From Raster

content to be update


Up
Retrieved from 'https://wiki.tuflow.com/index.php?title=Arc_Toolbar_Customization&oldid=13610'

Arcgis Geologic Cross Section Tool

ESRI’s ArcGIS Explorer (AGX) is a free downloadable GIS viewer which allows viewing of a wide variety of spatial data in either 2D or 3D (Globe) display modes. In Exprodat’s R&D team we’ve been working with the AGX Software Development Kit (SDK) for a few months and have been impressed with what you can do, out-of-the-box. Naturally some tasks require you to do a little more work, and the one we’ll describe here is one of those.

A colleague needed to place a geological section in an AGX presentation, in its correct orientation, and asked for our assistance. He could have done it in Google Sketch-up, but we thought that we could probably create a tool in AGX that would allow us to do it more easily, and repeat the operation whenever we wanted. He supplied us with an example section, as a KML file, that referenced a COLLADA model. We’d vaguely heard of COLLADA (it’s basically an XML schema that enables the definition of 3D models) and took a quick look at the reference manual, and the example section.

One of the many things that COLLADA allows you to do is to define a mesh onto which an image is applied. The simplest mesh onto which a rectangular planar image can be projected is rectangular – i.e. defined by 4 corner points. These corner points are defined by X,Y,Z coordinates, meaning that the mesh can be oriented as required. Looking at the example file, we found that the KML file that referenced the COLLADA .dae file contained a Lat-Long insertion point, some orientation information and some scaling information. This allows the COLLADA model to be inserted, rotated and scaled to meet requirements.

Having worked out how the example file worked, we designed a tool, based on an AGX dockable window, to allow the user to drag out a line representing the section. We added editable text boxes to the window, which we populated with the start/end XYZ values for the section, allowing the user to fine-tune the section placement. We wrote, with help from the internet, some code to calculate the bearing of the line. We then added file selection controls to allow the user to pick an input image and an output KML file (which needs to be placed in a subfolder, as the KML file references files placed in subfolders).

Having created the basic user interface and some of the more generic code, we then worked on the code to actually do the work. It occurred to us that it might be easier to scale the model directly in the COLLADA file, by scaling the mesh, and then handle the rest of the work in the KML (the insertion point and orientation). To do this, we extracted the input image width (by loading it as a System.Drawing.Image and then looking at the width property), then used the length of the line the user had defined to calculate the scaling. We then wrote a COLLADA writer class to generate the .dae file, which we stored in a subfolder called models, mimicking the structure of the models exported from Google Sketchup. The image was copied across to a subfolder called images and then the KML file was created in the main target folder.

We gave the tool a spin and noted that the far end of the section (away from the insertion point) ‘stuck up’ in the air. A quick think made us realise that this was due to the earth’s curvature – the earth’s surface drops away from the base of the section. In order to correct this in a ‘quick and dirty’ fashion, we worked out a routine to drop the far end of the section by the height that it was initially above the surface. Doubtless COLLADA would allow us to do this more elegantly, fitting the base of the mesh to the surface as we went, but that’s something for another day.

So, there you have it, a tool that allows you to place sections on AGX in their correct orientation. Note that you can amend the Z-value of the insertion point to drop the section below the surface, although this then leaves you with the problem of how to actually see it (see the attached documentation for some tips about how to do this).

We’ve made the tool available fo download here (1.2Mb zip file) so please feel free to give it a spin – the download includes the AGX 900 Add-In (.EAZ file) and a PDF containing instructions on how to install and use the Add-In.

Cross-sectional Anatomy

COLLADA looks like it has some legs for GIS, allowing you to create a single complex model which you can then position and orientate to meet your requirements, allowing the construction of animations and the like (or a simpler version of the Enormous Arrows tool that we’ve previously blogged). We’ll be investigating these possibilities over the coming months and will be posting examples and samples as we create them.

Arcgis Cross Section Tool Free

Posted by Ross Smail, Head of R&D, Exprodat.