ASE Home Page Products Download Purchase Support About ASE
ChartDirector Support
Forum HomeForum Home   SearchSearch

Message ListMessage List     Post MessagePost Message

  Odd Contouring Observed
Posted by pfinnerty on Oct-16-2015 04:51
Attachments:
In the attached image - I am generating an XYChart, but doing my own polar conversion to
generate a polar-like plot with contour values.

Is there any way to avoid the contour "connecting" near the surface of the Earth (that's
what the circle represents)?

I have interpolation off since that was giving an even more disturbing plot.
Untitled.png

  Re: Odd Contouring Observed
Posted by Peter Kwan on Oct-17-2015 01:29
Hi pfinnerty,

Given a number of data points, when creating a contour chart, the contour region will be
the largest possible polygon formed by the points (the polygon may only use a subset of the
points) so that the polygon encloses all the points.

For example, if the points form a grid, the polygon will be the rectangle created by joining
the outer most points. If the points are points along the perimeter of a semicircle together
with some points inside the semicircle, the polygon will be the semicircle.

So for your case, it is normal that there are lines at the bottom, as this is the largest
possible polygon created by joining the points and enclosing all the points. It seems the
contours at the bottom accurately reflect your data.

If due to the nature of your application, you do not want any contour in the bottom circle,
one method is to draw a white circle at the bottom above the contour, just to hide the
contour. There are many methods to draw the white circle. For example, you can use a
scatter layer to create a single symbol that covers up the bottom circle. You can also use
another contour layer with points along the bottom circle, and use the white color for that
contour layer.

Hope this can help.

Regards
Peter Kwan