<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: My wish: Elevation Target with 2 options in Civil 3D Forum</title>
    <link>https://forums.autodesk.com/t5/civil-3d-forum/my-wish-elevation-target-with-2-options/m-p/5555235#M242741</link>
    <description>&lt;P&gt;About this:&lt;/P&gt;
&lt;P&gt;"&lt;SPAN&gt;have you tried auxilary links, auxilary surface links and auxilary intersections?" the intersections is with different links in the same subassembly, &amp;nbsp;and I am not using a target surface, is a design profile with ElevationTarget.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 24 Mar 2015 16:16:41 GMT</pubDate>
    <dc:creator>joantopo</dc:creator>
    <dc:date>2015-03-24T16:16:41Z</dc:date>
    <item>
      <title>My wish: Elevation Target with 2 options</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/my-wish-elevation-target-with-2-options/m-p/5554099#M242734</link>
      <description>&lt;P&gt;Currently, the Elevation target only works in a only one way. It would be good that Civil 3D provides 2 options (2 ways) to provide the elevation to the subassembly. &amp;nbsp;Nowadays, Civil 3D works as the left side (the elevation of the design profile in that station) is dragged to the edge of the subassembly, whereas it would be interesting like the right side one (the new elevation of the subassembly edge is calculated by interpolation (theorical projection) ).&lt;/P&gt;
&lt;P&gt;Thus, it doesn´t&amp;nbsp;have to create a new offset alignment (also used for the Horizontal target) with its corresponding design profile to obtain the properly elevation for the subassembly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;So, in a corridor Region, for a subassembly, you can choose one of the 2 options for the elevation target.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://forums.autodesk.com/t5/image/serverpage/image-id/160010i57496FF7D046E7DB/image-size/original?v=mpbl-1&amp;amp;px=-1" border="0" alt="elevation target options-wish list civil 3D.jpg" title="elevation target options-wish list civil 3D.jpg" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I attach a drawing file which is the source of this screenshoot.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please, Autodesk staff, remember this improvement.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Mar 2015 23:38:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/my-wish-elevation-target-with-2-options/m-p/5554099#M242734</guid>
      <dc:creator>joantopo</dc:creator>
      <dc:date>2015-03-23T23:38:32Z</dc:date>
    </item>
    <item>
      <title>Re: My wish: Elevation Target with 2 options</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/my-wish-elevation-target-with-2-options/m-p/5554612#M242735</link>
      <description>&lt;P&gt;I know this is possible if writing your own subassemblies in .NET. Not sure if this is possible in&amp;nbsp;subassembly composer.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2015 11:06:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/my-wish-elevation-target-with-2-options/m-p/5554612#M242735</guid>
      <dc:creator>michael_robertson</dc:creator>
      <dc:date>2015-03-24T11:06:11Z</dc:date>
    </item>
    <item>
      <title>Re: My wish: Elevation Target with 2 options</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/my-wish-elevation-target-with-2-options/m-p/5554823#M242736</link>
      <description>&lt;P&gt;Yesterday I was reading the help guide of the SAC about this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I also think that it is possible with our own subassembly, perhaps like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;**The subassembly has 2 points (P1 and P2) and a link (L1) between them.&lt;/P&gt;
&lt;P&gt;**TargetElevation is the name of the "Target Parameter" of type=Elevation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(Decision)
TargetElevation.IsValid
(True)

// define variable and set it.

**TargetElevation.Elevation is only the difference bewtween elevations.

ElevationZ_Target= BaseLine.Elevation + TargetElevation.Elevation;
ElevationZ_P1= P1.Elevation;
ElevationZ_BaseLine= BaseLine.Elevation;

//we do the same for the offsets (widths).



//Input parameter, to be filled in by the user.
This input paramater will be used when the subassembly has assigned the Elevation target.

Input parameter (double)---(by default 0) called "offsetBaseLine_ElevTarget"

//new variable:
IncrX= offsetBaseline_ElevTarget - P1.Offset;

//new variable:
IncrY= ElevationZ_Target - ElevationZ_P1;

//new variable:
PartialIncrY= L1.Xlength * IncrY / IncrX ;

//Finally, we put the new elevation for P2 point, which it will be the interpolated elevation using the target elevation.

P2.Elevation= P1.Elevation+ PartialIncrY;


&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In this case, we don´t use an Offset Target, only the ElevationTarget, and the last snippet code only works if the TargetElevation parameter is enabled by the user (is valid).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We don´t use an Offset Target but we use an input parameter called "offsetBaseLine_ElevTarget" to know the horizontal distance between the baseline and the ElevationTarget.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Perhaps, in the API in SAC, it should have a new member (currently there are: ElevationTarget.IsValid &amp;nbsp;and ElevationTarget.Elevation), why not ElevationTarget.Offset ?&lt;/P&gt;
&lt;P&gt;So, I didn´t have to ask this value to the user with an input parameter.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;I would like that the stock subassemblies, in special LaneSuperelevationAOR and ShoulderVertical, have this property to catch the interpolated elevation from a ElevationTarget.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2015 13:17:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/my-wish-elevation-target-with-2-options/m-p/5554823#M242736</guid>
      <dc:creator>joantopo</dc:creator>
      <dc:date>2015-03-24T13:17:09Z</dc:date>
    </item>
    <item>
      <title>Re: My wish: Elevation Target with 2 options</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/my-wish-elevation-target-with-2-options/m-p/5555000#M242737</link>
      <description>&lt;P&gt;for target surface, there is "P1.DistanceToSurface(SurfaceTarget)", why not &amp;nbsp;this new member:"P1.DistanceToElevationTarget(ElevationTarget)", to obtain the horizontal distance?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In my code, the alignment(from the elevation target) must be parallel to the baseline because I add an input parameter for that&amp;nbsp;offset.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2015 14:33:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/my-wish-elevation-target-with-2-options/m-p/5555000#M242737</guid>
      <dc:creator>joantopo</dc:creator>
      <dc:date>2015-03-24T14:33:44Z</dc:date>
    </item>
    <item>
      <title>Re: My wish: Elevation Target with 2 options</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/my-wish-elevation-target-with-2-options/m-p/5555066#M242738</link>
      <description>&lt;P&gt;Oh yeah!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I can apply an Offset Target without overriding my width of the subassembly !&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This way allows me to know the offset assign a Offset Target without overriding.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But, Could I enable the Offset Target Override with an Input parameter, boolean type, (new property of the subassembly) if I would want?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://forums.autodesk.com/t5/image/serverpage/image-id/160127i64D018F0687C94F3/image-size/original?v=mpbl-1&amp;amp;px=-1" border="0" alt="without override.jpg" title="without override.jpg" /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2015 15:02:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/my-wish-elevation-target-with-2-options/m-p/5555066#M242738</guid>
      <dc:creator>joantopo</dc:creator>
      <dc:date>2015-03-24T15:02:21Z</dc:date>
    </item>
    <item>
      <title>Re: My wish: Elevation Target with 2 options</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/my-wish-elevation-target-with-2-options/m-p/5555192#M242739</link>
      <description>&lt;P&gt;Joan, have you tried auxilary links, auxilary surface links and auxilary intersections?&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2015 15:53:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/my-wish-elevation-target-with-2-options/m-p/5555192#M242739</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-03-24T15:53:28Z</dc:date>
    </item>
    <item>
      <title>Re: My wish: Elevation Target with 2 options</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/my-wish-elevation-target-with-2-options/m-p/5555214#M242740</link>
      <description>&lt;P&gt;Since your goal is to use those two stock subassemblies anyway, for now it would be easier to use a generic link to compute the projected slope and pass it on.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2015 16:04:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/my-wish-elevation-target-with-2-options/m-p/5555214#M242740</guid>
      <dc:creator>fcernst</dc:creator>
      <dc:date>2015-03-24T16:04:35Z</dc:date>
    </item>
    <item>
      <title>Re: My wish: Elevation Target with 2 options</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/my-wish-elevation-target-with-2-options/m-p/5555235#M242741</link>
      <description>&lt;P&gt;About this:&lt;/P&gt;
&lt;P&gt;"&lt;SPAN&gt;have you tried auxilary links, auxilary surface links and auxilary intersections?" the intersections is with different links in the same subassembly, &amp;nbsp;and I am not using a target surface, is a design profile with ElevationTarget.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2015 16:16:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/my-wish-elevation-target-with-2-options/m-p/5555235#M242741</guid>
      <dc:creator>joantopo</dc:creator>
      <dc:date>2015-03-24T16:16:41Z</dc:date>
    </item>
    <item>
      <title>Re: My wish: Elevation Target with 2 options</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/my-wish-elevation-target-with-2-options/m-p/5555247#M242742</link>
      <description>&lt;P&gt;Hi fcernst.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I was just thinking in that possibility too.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Mysubassembly would be the closed subassembly of the BaseLine (the first beginning in the right side), I get the properly slope and extract it with an Output parameter, so the the next subassembly( such as LaneSuperelevationAOR ,takes the&amp;nbsp;slope with an Input parameter= Mysubassembly.slope.&lt;/P&gt;
&lt;P&gt;In this case, Mysubassembly should very very short, with a width of 1 milimeter, for example.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2015 16:24:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/my-wish-elevation-target-with-2-options/m-p/5555247#M242742</guid>
      <dc:creator>joantopo</dc:creator>
      <dc:date>2015-03-24T16:24:28Z</dc:date>
    </item>
    <item>
      <title>Re: My wish: Elevation Target with 2 options</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/my-wish-elevation-target-with-2-options/m-p/5555338#M242743</link>
      <description>&lt;P&gt;I have a doubt about changing the elevation of P2.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I can do this "P2.Elevation" but it´s for read or create a varible using that value.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But.. how can I change this value? P2.Elevation? &amp;nbsp;can I set (write) it again in the Subassembly Composer?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2015 17:05:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/my-wish-elevation-target-with-2-options/m-p/5555338#M242743</guid>
      <dc:creator>joantopo</dc:creator>
      <dc:date>2015-03-24T17:05:59Z</dc:date>
    </item>
    <item>
      <title>Re: My wish: Elevation Target with 2 options</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/my-wish-elevation-target-with-2-options/m-p/5555355#M242744</link>
      <description>&lt;P&gt;It could be a subassembly with only one point? And this an auxiliar point?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don´t know if I can make a subassembly without links and only one auxiliar point.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2015 17:12:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/my-wish-elevation-target-with-2-options/m-p/5555355#M242744</guid>
      <dc:creator>joantopo</dc:creator>
      <dc:date>2015-03-24T17:12:01Z</dc:date>
    </item>
    <item>
      <title>Re: My wish: Elevation Target with 2 options</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/my-wish-elevation-target-with-2-options/m-p/5555439#M242745</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/589150"&gt;@joantopo&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Oh yeah!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I can apply an Offset Target without overriding my width of the subassembly !&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This way allows me to know the offset assign a Offset Target without overriding.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But, &lt;FONT color="#ff0000"&gt;Could I enable the Offset Target Override with an Input parameter, boolean type&lt;/FONT&gt;, (new property of the subassembly) if I would want?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Do you mean something like the attached (download it and save with a pkt extension instead of zip)?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://forums.autodesk.com/t5/image/serverpage/image-id/160166i6B82E358CFC71D22/image-size/original?v=mpbl-1&amp;amp;px=-1" border="0" alt="OffsetTargetBool.png" title="OffsetTargetBool.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2015 17:42:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/my-wish-elevation-target-with-2-options/m-p/5555439#M242745</guid>
      <dc:creator>doni49</dc:creator>
      <dc:date>2015-03-24T17:42:15Z</dc:date>
    </item>
    <item>
      <title>Re: My wish: Elevation Target with 2 options</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/my-wish-elevation-target-with-2-options/m-p/5555541#M242746</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/589150"&gt;@joantopo&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;I have a doubt about changing the elevation of P2.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I can do this "P2.Elevation" but it´s for read or create a varible using that value.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But.. how can I change this value? P2.Elevation? &amp;nbsp;can I set (write) it again in the Subassembly Composer?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Instead of defining P2 and then trying to change the elevation of P2 later, I would assign an Aux point in place of P2.&amp;nbsp; Then when you're ready to "chagne" that point, create a real point that is relative to the aux pt.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2015 18:30:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/my-wish-elevation-target-with-2-options/m-p/5555541#M242746</guid>
      <dc:creator>doni49</dc:creator>
      <dc:date>2015-03-24T18:30:28Z</dc:date>
    </item>
    <item>
      <title>Re: My wish: Elevation Target with 2 options</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/my-wish-elevation-target-with-2-options/m-p/5555621#M242747</link>
      <description>&lt;P&gt;Hi.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I attach my pkt file. Perhaps, it could have been another name more correct. XD&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;With only one point (is an auxiliar point) works fine (I don´t need a second point neither a link).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The Target offset is only to get the Horizontal distance from the base line and the design profile(according to its alignment).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The calculated slope is an output parameter to catch it in another subassemblies. (it seems that the output parameter works fine).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The only trouble now, is that the calculated slope is not calculated properly. I don´t know what is the reason. Could you check my variables if they are right?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note: I use the elevation BaseLine and the offset of the AP1, because this subassembly can be used between subassemblies, so it is not obligatory that this subassembly was the first. (it is not necessary it was anchored to the BaseLine).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Later I will see&amp;nbsp;your pkt file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2015 19:16:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/my-wish-elevation-target-with-2-options/m-p/5555621#M242747</guid>
      <dc:creator>joantopo</dc:creator>
      <dc:date>2015-03-24T19:16:53Z</dc:date>
    </item>
    <item>
      <title>Re: My wish: Elevation Target with 2 options</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/my-wish-elevation-target-with-2-options/m-p/5555687#M242748</link>
      <description>&lt;P&gt;Why don't you let the program calculate it for you. See the modified PKT.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2015 19:56:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/my-wish-elevation-target-with-2-options/m-p/5555687#M242748</guid>
      <dc:creator>hmartinez5</dc:creator>
      <dc:date>2015-03-24T19:56:03Z</dc:date>
    </item>
    <item>
      <title>Re: My wish: Elevation Target with 2 options</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/my-wish-elevation-target-with-2-options/m-p/5555706#M242749</link>
      <description>&lt;P&gt;Ok, I think what is the issue in my pkt file.&lt;/P&gt;
&lt;P&gt;The output parameter is a grade type and should be slope type.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2015 20:08:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/my-wish-elevation-target-with-2-options/m-p/5555706#M242749</guid>
      <dc:creator>joantopo</dc:creator>
      <dc:date>2015-03-24T20:08:53Z</dc:date>
    </item>
    <item>
      <title>Re: My wish: Elevation Target with 2 options</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/my-wish-elevation-target-with-2-options/m-p/5555792#M242750</link>
      <description>&lt;P&gt;Great &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/831998"&gt;@hmartinez5&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It works now fine!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I missed assign both targets in AP2 to override the other values, you are right.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I see that the input parameter was right, it must be "grade" but in the expression I multiplied by 100, I thought it should be in percent.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have tested and works perfect.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you all.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2015 21:04:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/my-wish-elevation-target-with-2-options/m-p/5555792#M242750</guid>
      <dc:creator>joantopo</dc:creator>
      <dc:date>2015-03-24T21:04:35Z</dc:date>
    </item>
    <item>
      <title>Re: My wish: Elevation Target with 2 options</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/my-wish-elevation-target-with-2-options/m-p/5555826#M242751</link>
      <description>Grading transition between two different targets........</description>
      <pubDate>Tue, 24 Mar 2015 21:23:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/my-wish-elevation-target-with-2-options/m-p/5555826#M242751</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-03-24T21:23:24Z</dc:date>
    </item>
    <item>
      <title>Re: My wish: Elevation Target with 2 options</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/my-wish-elevation-target-with-2-options/m-p/5555832#M242752</link>
      <description>&lt;P&gt;Well, there is only one Elevation target (from a design profile) , the another one is the design profile of the BaseLine.&lt;/P&gt;
&lt;P&gt;Pehaps, grading transition between design profiles.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We also need the Offset target because we cannot get the Horizontal distance from the design profile to the BaseLine.&lt;/P&gt;
&lt;P&gt;I think in the API in SAC, the ElevationTarget needs a new member: ElevationTarget.Offset thus it wouldn´t be necessary to select an Offset Target too.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And the Auxiliar link doesn´t have to do, because we can do this: AP1.SlopeTo("AP2")&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2015 21:31:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/my-wish-elevation-target-with-2-options/m-p/5555832#M242752</guid>
      <dc:creator>joantopo</dc:creator>
      <dc:date>2015-03-24T21:31:14Z</dc:date>
    </item>
    <item>
      <title>Re: My wish: Elevation Target with 2 options</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/my-wish-elevation-target-with-2-options/m-p/5555834#M242753</link>
      <description>I'm just talking about for grading objects.</description>
      <pubDate>Tue, 24 Mar 2015 21:29:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/my-wish-elevation-target-with-2-options/m-p/5555834#M242753</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-03-24T21:29:47Z</dc:date>
    </item>
  </channel>
</rss>

