开发者

Draw Camera Range with Postgis

开发者 https://www.devze.com 2023-04-11 23:41 出处:网络
i am working on some camera data. I have some points which consist of azimuth, angle, distance, and of course coordinate field attributes. In postgresql postgisI want to draw shapes like this with fun

i am working on some camera data. I have some points which consist of azimuth, angle, distance, and of course coordinate field attributes. In postgresql postgis I want to draw shapes like this with functions.

how can i draw this pink range shape? at first should i draw 360 degree c开发者_如何学运维ircle then extracting out of my shape... i dont know how?

Draw Camera Range with Postgis


I would create a circle around the point(x,y) with your radius distance, then use the info below to create a triangle that has a larger height than the radius.

Then using those two polygons do an ST_Intersection between the two geometries.

NOTE: This method only works if the angle is less than 180 degrees.

Note, that if you extend the outer edges and meet it with a 90 degree angle from the midpoint of your arc, you have a an angle, and an adjacent side. Now you can SOH CAH TOA!

Draw Camera Range with Postgis

Get Points B and C

Let point A = (x,y)

To get the top point:

point B = (x + radius, y + (r * tan(angle)))

to get the bottom point:

point C = (x + radius, y - (r * tan(angle)))

Rotate your triangle to you azimouth

Now that you have the triangle, you need to rotate it to your azimuth, with a pivot point of A. This means you need point A at the origin when you do the rotation. The rotation is the trickiest part. Its used in computer graphics all the time. (Actually, if you know OpenGL you could get it to do the rotation for you.)

NOTE: This method rotates counter-clockwise through an angle (theta) around the origin. You might have to adjust your azimuth accordingly.

First step: translate your triangle so that A (your original x,y) is at 0,0. Whatever you added/subtracted to x and y, do the same for the other two points.

(You need to translate it because you need point A to be at the origin)

Second step: Then rotate points B and C using a rotation matrix. More info here, but I'll give you the formula:

Draw Camera Range with Postgis

Your new point is (x', y')

Do this for points B and C.

Third step: Translate them back to the original place by adding or subtracting. If you subtracted x last time, add it this time.

Finally, use points {A,B,C} to create a triangle.

And then do a ST_Intersection(geom_circle,geom_triangle);

Because this takes a lot of calculations, it would be best to write a program that does all these calculations and then populates a table.


PostGIS supports curves, so one way to achieve this that might require less math on your behalf would be to do something like:

SELECT ST_GeomFromText('COMPOUNDCURVE((0 0, 0 10), CIRCULARSTRING(0 10, 7.071 7.071, 10 0), (10 0, 0 0))')

This describes a sector with an origin at 0,0, a radius of 10 degrees (geographic coordinates), and an opening angle of 45°.

Wrapping that with additional functions to convert it from a true curve into a LINESTRING, reduce the coordinate precision, and to transform it into WKT:

SELECT ST_AsText(ST_SnapToGrid(ST_CurveToLine(ST_GeomFromText('COMPOUNDCURVE((0 0, 0 10), CIRCULARSTRING(0 10, 7.071 7.071, 10 0), (10 0, 0 0))')), 0.01))

Gives:

Draw Camera Range with Postgis

This requires a few pieces of pre-computed information (the position of the centre, and the two adjacent vertices, and one other point on the edge of the segment) but it has the distinct advantage of actually producing a truly curved geometry. It also works with segments with opening angles greater than 180°.

A tip: the 7.071 x and y positions used in the example can be computed like this:

  • x = {radius} cos {angle} = 10 cos 45 ≈ 7.0171
  • y = {radius} sin {angle} = 10 sin 45 ≈ 7.0171

Corner cases: at the antimeridian, and at the poles.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号