What does it mean ?

From: Eriovaldo Andrietta <ecandrietta_at_gmail.com>
Date: Wed, 18 Mar 2015 23:12:53 -0300
Message-ID: <CAJdDhaOYKAt6KGrCOZELJW2Eibu-EMOe-s2hQSQgev_QEwoSMA_at_mail.gmail.com>



Hi,

I have a doubt related this resource.
I got this code and would like to know what does it mean ? The coords -49, -12 are the same in four blocks, I changed others, that are in the north, south , east and west of the coord -49, -12.

How to analize the result ?
What are the numbers in the result ?

DECLARE
  bearing NUMBER;
  tilt NUMBER;
BEGIN
  SDO_UTIL.BEARING_TILT_FOR_POINTS(
    SDO_GEOMETRY(2001, 8307,
      SDO_POINT_TYPE(-49, -12, 0), NULL, NULL), -- start_point     SDO_GEOMETRY(2001, 8307,
      SDO_POINT_TYPE(-49, -4, 5000), NULL, NULL), -- end_point     0.05, --tolerance
    bearing,
    tilt);
  DBMS_OUTPUT.PUT_LINE('Bearing = ' || bearing);   DBMS_OUTPUT.PUT_LINE('Tilt = ' || tilt); END;
/

Bearing = .000000000000000798346493672419 Tilt = .005651061152948927719815920474808513661231

DECLARE
  bearing NUMBER;
  tilt NUMBER;
BEGIN
  SDO_UTIL.BEARING_TILT_FOR_POINTS(
    SDO_GEOMETRY(2001, 8307,
      SDO_POINT_TYPE(-49, -12, 0), NULL, NULL), -- start_point     SDO_GEOMETRY(2001, 8307,
      SDO_POINT_TYPE(-49, -24, 5000), NULL, NULL), -- end_point     0.05, --tolerance
    bearing,
    tilt);
  DBMS_OUTPUT.PUT_LINE('Bearing = ' || bearing);   DBMS_OUTPUT.PUT_LINE('Tilt = ' || tilt); END;
/

Bearing = 3.14159265358979
Tilt = .003764463662853474911130313640967686694478

DECLARE
  bearing NUMBER;
  tilt NUMBER;
BEGIN
  SDO_UTIL.BEARING_TILT_FOR_POINTS(
    SDO_GEOMETRY(2001, 8307,
      SDO_POINT_TYPE(-49, -12, 0), NULL, NULL), -- start_point     SDO_GEOMETRY(2001, 8307,
      SDO_POINT_TYPE(-59, -12, 5000), NULL, NULL), -- end_point     0.05, --tolerance
    bearing,
    tilt);
  DBMS_OUTPUT.PUT_LINE('Bearing = ' || bearing);   DBMS_OUTPUT.PUT_LINE('Tilt = ' || tilt); END;
/

Bearing = 4.69420078448763
Tilt = .004591476845011205890864575078291479016976

DECLARE
  bearing NUMBER;
  tilt NUMBER;
BEGIN
  SDO_UTIL.BEARING_TILT_FOR_POINTS(
    SDO_GEOMETRY(2001, 8307,
      SDO_POINT_TYPE(-49, -12, 0), NULL, NULL), -- start_point     SDO_GEOMETRY(2001, 8307,
      SDO_POINT_TYPE(-41, -11, 5000), NULL, NULL), -- end_point     0.05, --tolerance
    bearing,
    tilt);
  DBMS_OUTPUT.PUT_LINE('Bearing = ' || bearing);   DBMS_OUTPUT.PUT_LINE('Tilt = ' || tilt); END;
/

Bearing = 1.45887432965594
Tilt = .005683464806961181817171102451150621779018

Regards
Eriovaldo

--
http://www.freelists.org/webpage/oracle-l
Received on Thu Mar 19 2015 - 03:12:53 CET

Original text of this message