<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Envision CAD &#124; MicroStation Training &#38; InRoads Training &#187; Tips</title>
	<atom:link href="http://envisioncad.com/category/tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://envisioncad.com</link>
	<description>CAD Resources &#38; Training</description>
	<lastBuildDate>Mon, 30 Aug 2010 20:27:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Change Font Size in Word Processor&#160;Dialog</title>
		<link>http://envisioncad.com/tips/change-font-size-in-word-processor-dialog/</link>
		<comments>http://envisioncad.com/tips/change-font-size-in-word-processor-dialog/#comments</comments>
		<pubDate>Tue, 03 Aug 2010 19:22:25 +0000</pubDate>
		<dc:creator>Matt Jacoby</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Keyin]]></category>
		<category><![CDATA[MicroStation]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[V8i]]></category>

		<guid isPermaLink="false">http://envisioncad.com/?p=1936</guid>
		<description><![CDATA[If the text in the word processor dialog is too small or jagged try increasing the display size with this key-in.
“wordprocessor displayfontsize x&#8221;  where x is the size
￼
In the above screen capture the key-in “wordprocessor displayfontsize 20“ was used to increase the font display size.
]]></description>
			<content:encoded><![CDATA[<p>If the text in the word processor dialog is too small or jagged try increasing the display size with this key-in.</p>
<p><strong>“wordprocessor displayfontsize x&#8221;</strong>  where x is the size</p>
<p>￼<img src="http://www.envisioncad.com/wp-content/images/wordprocessor-1.png" border="0" alt="" /></p>
<p>In the above screen capture the key-in <strong>“wordprocessor displayfontsize 20“</strong> was used to increase the font display size.</p>
]]></content:encoded>
			<wfw:commentRss>http://envisioncad.com/tips/change-font-size-in-word-processor-dialog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Run an External&#160;Program</title>
		<link>http://envisioncad.com/tips/run-an-external-program/</link>
		<comments>http://envisioncad.com/tips/run-an-external-program/#comments</comments>
		<pubDate>Tue, 03 Aug 2010 19:21:16 +0000</pubDate>
		<dc:creator>Matt Jacoby</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://envisioncad.com/?p=1952</guid>
		<description><![CDATA[Some macros need to run an external program (or script) as part of its execution. VBA provides the Shell function for this task. While this may be a simple to use function its main limitation is that it does not wait for the external program to complete. The Windows Script Host Object Model provides a [...]]]></description>
			<content:encoded><![CDATA[<p>Some macros need to run an external program (or script) as part of its execution. VBA provides the <strong>Shell</strong> function for this task. While this may be a simple to use function its main limitation is that it does not wait for the external program to complete. The Windows Script Host Object Model provides a Shell object with a <strong>Run</strong> method that will wait for the external program to complete before continuing. The two methods are shown below.<br />
<code><br />
'<br />
'MacroRun – launches Notepad and immediately moves on to completion<br />
'<br />
Sub MacroRun()<br />
    Shell "Notepad"<br />
    MsgBox "Complete"<br />
End Sub</p>
<p>'<br />
'MacroRunAndWait – launches Notepad and waits for user to exit<br />
'the Notepad application before continuing.<br />
‘<br />
'This macro requires a reference to:<br />
'Windows Script Host Object Model (C:\Windows\System32\wshom.ocx)"<br />
'<br />
Sub MacroRunAndWait()<br />
    Dim myShell As WshShell</p>
<p>    Set myShell = New WshShell<br />
    myShell.Run "Notepad", , True</p>
<p>    Set myShell = Nothing<br />
    MsgBox "Complete"<br />
End Sub<br />
</code><br />
Note: to call a program or script not in the system path provide the full path, and any arguments to the file inside the double quotes. </p>
<p>Example: <code>Shell "C:\Company\Scripts\Process.bat 1 2 3"</code></p>
]]></content:encoded>
			<wfw:commentRss>http://envisioncad.com/tips/run-an-external-program/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Import Contours from&#160;Graphics</title>
		<link>http://envisioncad.com/tips/import-contours-from-graphics/</link>
		<comments>http://envisioncad.com/tips/import-contours-from-graphics/#comments</comments>
		<pubDate>Tue, 03 Aug 2010 19:19:35 +0000</pubDate>
		<dc:creator>Matt Jacoby</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Video Tips]]></category>
		<category><![CDATA[Contour]]></category>
		<category><![CDATA[Import]]></category>
		<category><![CDATA[InRoads]]></category>
		<category><![CDATA[Surface]]></category>

		<guid isPermaLink="false">http://envisioncad.com/?p=1940</guid>
		<description><![CDATA[It is still common that you are given a file with just contours, no spot elevations and no breaklines.  Your job is to create a DTM that will match contours in the drawing.  This workflow will show you the best way to create a DTM from just contours.

Import From Graphics – Contour Point [...]]]></description>
			<content:encoded><![CDATA[<p>It is still common that you are given a file with just contours, no spot elevations and no breaklines.  Your job is to create a DTM that will match contours in the drawing.  This workflow will show you the best way to create a DTM from just contours.</p>
<p><img src="http://www.envisioncad.com/wp-content/images/contours-1.png" border="0" alt="" style="float:right; height:400px; margin-left:10px;" /></p>
<p><strong>Import From Graphics – Contour Point Type</strong></p>
<ol>
<li>Select the contours using a MicroStation selection set.</li>
<li>From the InRoads pull down menu <strong> File > Import > Surface</strong>. The Import Surface dialog will appear.</li>
<li>From the From Graphics tab.
<ol style="list-style-type:lower-alpha;">
<li><em>Surface</em>: <strong><Type Name Here></strong></li>
<li><em>Load From</em>: <strong>Single Element</strong></li>
<li><em>Elevations</em>: <strong>Use Element Elevations</strong></li>
<li><em>Seed Name</em>: <strong>Contour1</strong></li>
<li><em>Feature Style</em>: <strong>Contour</strong> (if available or similar feature style name)</li>
<li><em>Point Type</em>: <strong>Contour</strong></li>
</ol>
</li>
<li>Select the <strong>Apply</strong> button Select <strong>OK</strong> to use elements contained in selection set.</li>
<li>Select the <strong>Close</strong> button.</li>
<li>From the InRoads pull down menu <strong>Surface > Triangulate</strong>.  The Triangulate Surface dialog will appear</li>
<li>Select the <strong>Apply</strong> button the surface will be triangulated.</li>
<li>From the InRoads pull down menu select <strong> Surface > Utilities > Generate Inferred Breaklines</strong>.  The Generate Inferred Breaklines dialog will appear.  ￼ 
<p><img src="http://www.envisioncad.com/wp-content/images/contours-2.png" border="0" alt="" /></p>
<p><strong>Note:</strong> Generating Inferred Breaklines is only available when there are Contour point types loaded into the surface. </li>
<li>Select the <strong>Apply</strong> then <strong>Close</strong> buttons.  The inferred breaklines will be added to the surface.</li>
<li>From the InRoads pull down menu <strong>Surface > Triangulate</strong>.  The Triangulate Surface dialog will appear</li>
<li>Select the <strong>Apply</strong> button the surface will be triangulated now with the inferred breaklines.</li>
<li>Display the contours and verify how close they match.</li>
</ol>
<p><strong>Video Demo</strong><br />
<embed src="http://blip.tv/play/AYHy1y0C" type="application/x-shockwave-flash" width="480" height="300" allowscriptaccess="always" allowfullscreen="true"></embed></p>
]]></content:encoded>
			<wfw:commentRss>http://envisioncad.com/tips/import-contours-from-graphics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Associative Annotation for&#160;Geometry</title>
		<link>http://envisioncad.com/tips/associative-annotation-for-geometry/</link>
		<comments>http://envisioncad.com/tips/associative-annotation-for-geometry/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 14:51:21 +0000</pubDate>
		<dc:creator>Matt Jacoby</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Annotation]]></category>
		<category><![CDATA[Geometry]]></category>
		<category><![CDATA[InRoads]]></category>

		<guid isPermaLink="false">http://envisioncad.com/?p=1904</guid>
		<description><![CDATA[Tired of having to re-annotate stationing and geometry labels every time you make an edit to a horizontal or vertical alignment? Thanks to the InRoads V8i (SELECTseries 1) release associated annotation is now available.
Geometry Options 

Select Geometry Options from the InRoads Geometry task bar. Or from the classic InRoads pull-down menu select Geometry > View Geometry> Options. [...]]]></description>
			<content:encoded><![CDATA[<p>Tired of having to re-annotate stationing and geometry labels every time you make an edit to a horizontal or vertical alignment? Thanks to the InRoads V8i (SELECTseries 1) release associated annotation is now available.</p>
<p><strong>Geometry Options</strong> </p>
<ol>
<li>Select <strong>Geometry Options</strong> from the InRoads Geometry task bar. Or from the classic InRoads pull-down menu select <strong>Geometry > View Geometry> Options</strong>.  The Geometry Options dialog will appear.<br />
 ￼<br />
<img src="http://www.envisioncad.com/wp-content/images/annotation-1.jpg" border="0" alt="" />
</li>
<li>Toggle on the appropriate items and select Apply</li>
</ol>
<p><strong>Synchronized Geometry Style and Saved Preference</strong><br />
 As normal, the alignments must be assigned a geometry style name. The key to making annotation automatic is that the annotation commands (view stationing, view horizontal/vertical annotation, etc.) must have a saved <strong>preference</strong> with a name that is identical to the <strong>Style</strong> name assigned to the geometry.</p>
<p><img src="http://www.envisioncad.com/wp-content/images/annotation-2.jpg" border="0" alt="" /><br />
￼ <br />
Upon creation or while making geometry edits the annotation will dynamically update and be re-written to graphics.</p>
]]></content:encoded>
			<wfw:commentRss>http://envisioncad.com/tips/associative-annotation-for-geometry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Environment&#160;Variables</title>
		<link>http://envisioncad.com/tips/environment-variables/</link>
		<comments>http://envisioncad.com/tips/environment-variables/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 14:50:00 +0000</pubDate>
		<dc:creator>Matt Jacoby</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://envisioncad.com/?p=1909</guid>
		<description><![CDATA[In many macros you need access active session environment settings like username, computer name, etc. The easiest way to do this is using Windows environment variables. To see what environment variables are available open a Command Prompt window and enter the SET command. Some of the more common examples are shown in the code sample [...]]]></description>
			<content:encoded><![CDATA[<p>In many macros you need access active session environment settings like username, computer name, etc. The easiest way to do this is using Windows environment variables. To see what environment variables are available open a Command Prompt window and enter the <strong>SET</strong> command. Some of the more common examples are shown in the code sample below:</p>
<p><code>Sub MyMacro()<br />
    Dim strUsername As String<br />
    Dim strComputername As String<br />
    Dim strTempFolder As String<br />
    Dim strUserProfile As String</p>
<p>    strUsername = Environ$(“USERNAME”)<br />
    strComputername = Environ$(“COMPUTERNAME”)<br />
    strTempFolder = Environ$(“TEMP”)<br />
    strUserProfile = Environ$(“USERPROFILE”)</p>
<p>End Sub </code></p>
]]></content:encoded>
			<wfw:commentRss>http://envisioncad.com/tips/environment-variables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Geographic&#160;Keyins</title>
		<link>http://envisioncad.com/tips/geographic-keyins/</link>
		<comments>http://envisioncad.com/tips/geographic-keyins/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 14:43:47 +0000</pubDate>
		<dc:creator>Matt Jacoby</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Coordinate]]></category>
		<category><![CDATA[Keyin]]></category>
		<category><![CDATA[MicroStation]]></category>
		<category><![CDATA[V8i]]></category>

		<guid isPermaLink="false">http://envisioncad.com/?p=1898</guid>
		<description><![CDATA[In MicroStation V8i and later releases that support geographic coordinate systems there are key-in commands available to manage coordinate system definitions.
geocoordinate assign &#60;gcsname&#62;
Assigns a geographic coordinate system to the active model.
geocoordinate assign reproject &#60;gcsname&#62;
Reprojects design file graphics in the active model from the current geographic coordinate system to a new geographic coordinate system.
geocoordinate delete
Deletes the [...]]]></description>
			<content:encoded><![CDATA[<p>In MicroStation V8i and later releases that support geographic coordinate systems there are key-in commands available to manage coordinate system definitions.</p>
<p><strong>geocoordinate assign</strong> &lt;gcsname&gt;<br />
Assigns a geographic coordinate system to the active model.</p>
<p><strong>geocoordinate assign reproject</strong> &lt;gcsname&gt;<br />
Reprojects design file graphics in the active model from the current geographic coordinate system to a new geographic coordinate system.</p>
<p><strong>geocoordinate delete</strong><br />
Deletes the current geographic coordinate system assignment</p>
<p>Where &lt;gcsname&gt; is the coordinate system name displayed in the Geographic Coordinate System dialog.</p>
<p>￼<img src="http://www.envisioncad.com/wp-content/images/keyins-1.jpg" border="0" alt="" /></p>
<p>Example: <strong>geocoordinate assign wi-s</strong></p>
<p>These key-in commands can be used with the MicroStation <strong>Batch Process</strong> utility to assign, reproject, or delete geographic coordinate systems on a group of files in batch mode.</p>
]]></content:encoded>
			<wfw:commentRss>http://envisioncad.com/tips/geographic-keyins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Applying Link Sets to&#160;Elements</title>
		<link>http://envisioncad.com/tips/applying-link-sets-to-elements/</link>
		<comments>http://envisioncad.com/tips/applying-link-sets-to-elements/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 09:23:43 +0000</pubDate>
		<dc:creator>Matt Jacoby</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Video Tips]]></category>
		<category><![CDATA[MicroStation]]></category>
		<category><![CDATA[V8i]]></category>

		<guid isPermaLink="false">http://envisioncad.com/?p=1135</guid>
		<description><![CDATA[In MicroStation V8i the ability to link elements to files, folders, keyins, and websites is handled through the Project Explorer dialog.  By linking supporting data such as existing photos and details to your design you are maximizing your design.  In the following example we have a culvert replacement, there are photos and details [...]]]></description>
			<content:encoded><![CDATA[<p>In MicroStation V8i the ability to link elements to files, folders, keyins, and websites is handled through the Project Explorer dialog.  By linking supporting data such as existing photos and details to your design you are maximizing your design.  In the following example we have a culvert replacement, there are photos and details that will be linked to the elements in the design file. </p>
<p><img src="http://envisioncad.com/wp-content/images/link-set-1.png" width="379" height="220" alt="" title="" /></p>
<h3>Create a New Link Set</h3>
<p><img src="http://envisioncad.com/wp-content/images/link-set-2.png" width="195" height="211" alt="" style="float: right; margin: 0 0 2px 10px"/></p>
<ol>
<li>From the MicroStation pull down menu <strong>File > Project Explorer</strong>.  The Project Explorer dialog will appear.</li>
<li>Click the <strong>Browse</strong> button (magnifying glass). The Link Sets dialog will appear.</li>
<li>From the drop down list select <strong>Active File</strong>.</li>
<li>Click the <strong>New</strong> button in the Link Set dialog.
<p><img src="http://envisioncad.com/wp-content/images/link-set-3.png" width="230" height="211" alt="" title="" /></li>
<li>Type the new <strong>Link Set Name</strong>. Click the <strong>OK</strong> button to create the link set.  <strong>Close</strong> the <strong>Link Sets</strong> dialog.
<p><img src="http://envisioncad.com/wp-content/images/link-set-4.png" width="241" height="107" alt="" title="" /></li>
</ol>
<h3>Define Project Explorer</h3>
<ol start="6">
<li>If desired create new Folders in the Project Explorer dialog to organize the <em>Details, Drawings</em>, and <em>Photos</em>.</li>
<li><strong>Drag and Drop</strong> desired files from <em>Windows Explorer</em> to the MicroStation <em>Project Explorer</em>.
<p><img src="http://envisioncad.com/wp-content/images/link-set-5.png" width="432" height="164" alt="" title="" /></li>
</ol>
<h3>Add Link to Element </h3>
<ol start="8">
<li>From the Project Explorer dialog <strong>Right Click</strong> the file and select <strong>Add Link to Element</strong>.  Then <strong>Select</strong> and <strong>Accept</strong> the existing culvert from the topo file.
<p><img src="http://envisioncad.com/wp-content/images/link-set-6.png" width="200" height="310" alt="" title="" /></li>
<li>Now the JPEG has been linked to the element.  <strong>Right Click</strong> on the culvert element in the design file and select <strong>Follow Link > culvert.jpg</strong>.  The JPEG will open in MicroStation as read only for viewing.
<p><img src="http://envisioncad.com/wp-content/images/link-set-7.png" width="215" height="203" alt="" title="" /></p>
<p><img src="http://envisioncad.com/wp-content/images/link-set-8.png" width="416" height="243" alt="" title="" /></li>
<li>Additionally the PDF details could be linked to the proposed culvert.</li>
</ol>
<h3>VIDEO DEMO</h3>
<p><embed src="http://blip.tv/play/AYGkjFkC" type="application/x-shockwave-flash" width="480" height="300" allowscriptaccess="always" allowfullscreen="true"></embed></p>
]]></content:encoded>
			<wfw:commentRss>http://envisioncad.com/tips/applying-link-sets-to-elements/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Geometry Extended&#160;Descriptions</title>
		<link>http://envisioncad.com/tips/geometry-extended-descriptions/</link>
		<comments>http://envisioncad.com/tips/geometry-extended-descriptions/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 16:05:09 +0000</pubDate>
		<dc:creator>Matt Jacoby</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Cogo]]></category>
		<category><![CDATA[Geometry]]></category>
		<category><![CDATA[InRoads]]></category>
		<category><![CDATA[survey]]></category>

		<guid isPermaLink="false">http://envisioncad.com/?p=1826</guid>
		<description><![CDATA[In the InRoads V8i (SELECTseries 1) release there is additional information that can be pushed from the Survey Fieldbook to the Geometry Project.  When Saving Survey Data to Geometry there is a new section in the dialog for building descriptions based on Codes, Attributes, Values, and Notes.
Create Extended Descriptions
1.    From the [...]]]></description>
			<content:encoded><![CDATA[<p>In the InRoads V8i (SELECTseries 1) release there is additional information that can be pushed from the Survey Fieldbook to the Geometry Project.  When Saving Survey Data to Geometry there is a new section in the dialog for building descriptions based on Codes, Attributes, Values, and Notes.</p>
<p><strong>Create Extended Descriptions</strong></p>
<p>1.    From the InRoads pull down menu select <strong>Survey > Survey Data to Geometry</strong>.  The Survey Data to Geometry dialog will appear.</p>
<p>2.    In the <strong>Build Extended Description</strong> section of the dialog double click the Insert section names to add them to the description below.  Additional buttons for undo, adding spaces and returns are located in the dialog.</p>
<p><img src="http://www.envisioncad.com/wp-content/images/ged-2.png" border="0" alt="" /></p>
<p>3.    Select the <strong>Apply</strong> and <strong>Close</strong> buttons.  The Survey Data will be saved to a Geometry Project with the points having attributes being saved as extended descriptions.</p>
<p><strong>View Extended Descriptions</strong></p>
<p>4.    From the InRoads pull down menu select<br />
<strong>Geometry > Cogo Points > Edit / Review Extended Descriptions</strong>.<br />
The Edit / Review Extended Descriptions dialog will appear.</p>
<p>5.    The Extended Descriptions from the Survey Control Point will be shown in the dialog.</p>
<p><img src="http://www.envisioncad.com/wp-content/images/ged-5-2.jpg" border="0" alt="" /></p>
<p>6.    In addition to Attributes and Values, file links can be attached to the cogo points.  In the example above a photo of the monument was linked to the cogo point shot in the field.</p>
]]></content:encoded>
			<wfw:commentRss>http://envisioncad.com/tips/geometry-extended-descriptions/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>MicroStation 3D Solids&#160;Tutorial</title>
		<link>http://envisioncad.com/tips/microstation-3d-solids-tutorial/</link>
		<comments>http://envisioncad.com/tips/microstation-3d-solids-tutorial/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 16:00:11 +0000</pubDate>
		<dc:creator>Matt Jacoby</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Video Tips]]></category>

		<guid isPermaLink="false">http://envisioncad.com/?p=1840</guid>
		<description><![CDATA[In this tutorial we will look at some simple 3d tools for creating a flange.

]]></description>
			<content:encoded><![CDATA[<p>In this tutorial we will look at some simple 3d tools for creating a flange.</p>
<p><embed src="http://blip.tv/play/AYHjyRAC" type="application/x-shockwave-flash" width="480" height="300" allowscriptaccess="always" allowfullscreen="true"></embed></p>
]]></content:encoded>
			<wfw:commentRss>http://envisioncad.com/tips/microstation-3d-solids-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Longitude, Latitude Coordinate&#160;Readout</title>
		<link>http://envisioncad.com/tips/longitude-latitude-coordinate-readout/</link>
		<comments>http://envisioncad.com/tips/longitude-latitude-coordinate-readout/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 14:01:58 +0000</pubDate>
		<dc:creator>Matt Jacoby</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Coordinate]]></category>
		<category><![CDATA[MicroStation]]></category>
		<category><![CDATA[V8i]]></category>

		<guid isPermaLink="false">http://envisioncad.com/?p=1822</guid>
		<description><![CDATA[In MicroStation V8i and later releases that support geographic coordinate systems it is possible to obtain Longitude, Latitude coordinates from a design file. When a geographic coordinate system is selected using the Geographic tool box MicroStation automatically creates an Auxiliary Coordinate System based on the selected geographic coordinate system. By activating the geographic auxiliary coordinate [...]]]></description>
			<content:encoded><![CDATA[<p>In MicroStation V8i and later releases that support geographic coordinate systems it is possible to obtain Longitude, Latitude coordinates from a design file. When a geographic coordinate system is selected using the Geographic tool box MicroStation automatically creates an Auxiliary Coordinate System based on the selected geographic coordinate system. By activating the geographic auxiliary coordinate system MicroStation can display coordinates in Longitude, Latitude units.</p>
<p>1. From the <strong><em>Primary Tools</em></strong> tool box select the <strong>Auxiliary Coordinates</strong> icon.</p>
<p><img src="http://www.envisioncad.com/wp-content/images/longlat-1.jpg" border="0" alt="" /></p>
<p>2. In the <strong><em>Auxiliary Coordinates</em></strong> dialog double click on the geographic auxiliary coordinate system to make it active.</p>
<p><img src="http://www.envisioncad.com/wp-content/images/longlat-2.jpg" border="0" alt="" /></p>
<p>3. Right click in the anywhere in the bottom <strong><em>Status Bar</em></strong> area and check on the <strong>Running Coordinates</strong> display.</p>
<p><img src="http://www.envisioncad.com/wp-content/images/longlat-3.jpg" border="0" alt="" /></p>
<p>4. Left click in the <strong><em>Running Coordinates</em></strong> area and set the display to <strong>ACS Position</strong>.</p>
<p> <img src="http://www.envisioncad.com/wp-content/images/longlat-4.jpg" border="0" alt="" /></p>
<p>5. The Running Coordinates will now display in Latitude, Longitude units.</p>
<p><img src="http://www.envisioncad.com/wp-content/images/longlat-5.jpg" border="0" alt="" /></p>
<p><strong>Note:</strong> Tentative Snap coordinates displayed in the Message Center area will also display in Longitude, Latitude units.</p>
]]></content:encoded>
			<wfw:commentRss>http://envisioncad.com/tips/longitude-latitude-coordinate-readout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
