Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
ivac2:firdef_map_arc [2015/06/29 19:45]
jonathan.hougaard [Example]
ivac2:firdef_map_arc [2017/06/12 21:17] (current)
ian.beswick [Example]
Line 5: Line 5:
 ^Attribute^Format^Remarks^ ^Attribute^Format^Remarks^
 |radius|float|radius of the arc in nautical miles| |radius|float|radius of the arc in nautical miles|
-|start|integer|start angle (method 1)| +|start|float|start angle (method 1)| 
-|end|integer|end angle (method 1)|+|end|float|end angle (method 1)|
 |clockwise|boolean|Draw arc clockwise if “true” ​ (default: true)| |clockwise|boolean|Draw arc clockwise if “true” ​ (default: true)|
 |stroke_pattern|double array|line pattern described in an array of doubles| |stroke_pattern|double array|line pattern described in an array of doubles|
Line 15: Line 15:
 Use this element to draw an element with the shape of an arc. There are two methods available for building arcs : Use this element to draw an element with the shape of an arc. There are two methods available for building arcs :
  
-Method 1 : Using center and start/end+<del>Method 1 : Using center and start/end
  
 Requires one <​point>​ element to be the center of the arc. Requires one <​point>​ element to be the center of the arc.
-Requires start and end attributes to be set to the desired start and end angles of the arc (in degrees, range 0-360)+Requires start and end attributes to be set to the desired start and end angles of the arc (in degrees, range 0-360)</​del>​
  
 +//Method 1 has a known error, please do not use it until further notice.//
 ===== Example ===== ===== Example =====
  
 +<del>
 <code XML> <code XML>
-  <arc radius="​10"​ start="​90"​ end="​270"​ clockwise="​false">​+  <arc radius="​10"​ start="​90"​ end="​270"​ clockwise="​false" stroke_color="​black"​ width="​2">
       <point lat="​N0505405"​ lon="​E0042904"/>​       <point lat="​N0505405"​ lon="​E0042904"/>​
   </​arc>​   </​arc>​
 </​code>​ </​code>​
 +</​del>​
  
 Method 2 : Using 3 points Method 2 : Using 3 points
Line 42: Line 45:
  
 <code XML> <code XML>
-  <arc radius="​10"​ clockwise="​true">​+  <arc radius="​10"​ clockwise="​true" stroke_color="​ctr">
       <point lat="​N0505405"​ lon="​E0042904"/>​       <point lat="​N0505405"​ lon="​E0042904"/>​
       <point lat="​N0505203"​ lon="​E0044435"/>​       <point lat="​N0505203"​ lon="​E0044435"/>​