473,468 Members | 1,965 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

How to visualize network

Hi.

I have a couple of nodes (just ids, no coordinates whatsoever) and
links betweens them (weighted).
Is there any existing solution to visualize this network in php?

Thanks

itschy
Jan 18 '08 #1
15 1731
itschy wrote:
I have a couple of nodes (just ids, no coordinates whatsoever) and
links betweens them (weighted).
Is there any existing solution to visualize this network in php?
You have to ask yourself the following question:

Is there any existing solution to visualize this network in HTML?
Cheers,
--
----------------------------------
Iván Sánchez Ortega -ivansanchez-algarroba-escomposlinux-punto-org-

El tiempo libre es más volátil que el éter...
Jan 18 '08 #2
Hello,

itschy wrote:
Hi.

I have a couple of nodes (just ids, no coordinates whatsoever) and
links betweens them (weighted).
Is there any existing solution to visualize this network in php?

Thanks

itschy
PHP has support to create images, so my guess is - if I understand the
problem correctly - you'll just need to find a way to draw dots and
lines, making them thicker depending on the weight they have.

I'm sure some examples exist, but I can't really name one to be honest.

- Jensen
Jan 18 '08 #3
On 18 Jan., 23:31, Jensen Somers <jensen.som...@gmail.comwrote:
PHP has support to create images, so my guess is - if I understand the
problem correctly - you'll just need to find a way to draw dots and
lines, making them thicker depending on the weight they have.
Not quite.
You missed the part, where I mentiond that I do not have any
coordinates of the nodes. Thus I'cant just draw them, cause I don't
know where. :)
What I seek is some solution, which finds a representation according
to the information I have about the edges (that is, connected or not,
and if, what weight/line length do they have).

E.g.:
I have three nodes A,B,C and 3 connections a(A,B,3), b(B,C,4), c(A,C,
5) (each with infos about from_node, to_node and weight/length.
In this szenario, there are only two possible ways to draw that
network correctly:
5
A-----C B
3\ /4 3/ \4
B A-----C
5

And their rotations.
I try to find some tool/algorithm which is able to do this (and draw
it) in php.
Tough luck I guess... :(

itschy
Jan 18 '08 #4
itschy wrote:
On 18 Jan., 23:31, Jensen Somers <jensen.som...@gmail.comwrote:
>PHP has support to create images, so my guess is - if I understand the
problem correctly - you'll just need to find a way to draw dots and
lines, making them thicker depending on the weight they have.

Not quite.
You missed the part, where I mentiond that I do not have any
coordinates of the nodes. Thus I'cant just draw them, cause I don't
know where. :)
What I seek is some solution, which finds a representation according
to the information I have about the edges (that is, connected or not,
and if, what weight/line length do they have).

E.g.:
I have three nodes A,B,C and 3 connections a(A,B,3), b(B,C,4), c(A,C,
5) (each with infos about from_node, to_node and weight/length.
In this szenario, there are only two possible ways to draw that
network correctly:
5
A-----C B
3\ /4 3/ \4
B A-----C
5

And their rotations.
I try to find some tool/algorithm which is able to do this (and draw
it) in php.
Tough luck I guess... :(

itschy
Didn't they teach you basic geometry at school?

three nodes with three paths, defines a unique shape, which is constant.
It can be rotated and mirrored,without violating the original
definition, but the shape remains constant.

To plot it, simply assume one point (A) is at 0,0, the next one - say
'B' is at the correct distance along the X axis, so in your case its
co-ordinates are 3,0.

Solving the position of the third point C involves solving a pair of
simultaneous quadratic equations. Cf Pythagoras and the dropping of
perpendiculars.

Namely:-

Cx^2+Cy^2=(5)^2
(3-Cx)^2 +Cy^2=(4)^2

Now there are either two, or none, solutions for Cy as there always are
for quadratics. One solution is the mirror of the other.

Now go solve it.

Its your homework, not mine.
Jan 19 '08 #5

"itschy" <go****@00l.deschreef in bericht
news:58**********************************@v67g2000 hse.googlegroups.com...
On 18 Jan., 23:31, Jensen Somers <jensen.som...@gmail.comwrote:
>PHP has support to create images, so my guess is - if I understand the
problem correctly - you'll just need to find a way to draw dots and
lines, making them thicker depending on the weight they have.

Not quite.
You missed the part, where I mentiond that I do not have any
coordinates of the nodes. Thus I'cant just draw them, cause I don't
know where. :)
What I seek is some solution, which finds a representation according
to the information I have about the edges (that is, connected or not,
and if, what weight/line length do they have).

E.g.:
I have three nodes A,B,C and 3 connections a(A,B,3), b(B,C,4), c(A,C,
5) (each with infos about from_node, to_node and weight/length.
In this szenario, there are only two possible ways to draw that
network correctly:
5
A-----C B
3\ /4 3/ \4
B A-----C
5

And their rotations.
I try to find some tool/algorithm which is able to do this (and draw
it) in php.
Tough luck I guess... :(

itschy

aaah, you mean something like:
http://www.graphviz.org/Gallery/directed/hello.html
this is a sample with nodes 'hello' and 'world'
but this sollution does not give you weight...
(see also: http://www.graphviz.org/webdot/basic.html )

and, of course, this is not a PHP solution...


Jan 19 '08 #6
On 19 Jan., 17:19, The Natural Philosopher <a...@b.cwrote:
itschy wrote:
On 18 Jan., 23:31, Jensen Somers <jensen.som...@gmail.comwrote:
PHP has support to create images, so my guess is - if I understand the
problem correctly - you'll just need to find a way to draw dots and
lines, making them thicker depending on the weight they have.
Not quite.
You missed the part, where I mentiond that I do not have any
coordinates of the nodes. Thus I'cant just draw them, cause I don't
know where. :)
What I seek is some solution, which finds a representation according
to the information I have about the edges (that is, connected or not,
and if, what weight/line length do they have).
E.g.:
I have three nodes A,B,C and 3 connections a(A,B,3), b(B,C,4), c(A,C,
5) (each with infos about from_node, to_node and weight/length.
In this szenario, there are only two possible ways to draw that
network correctly:
5
A-----C B
3\ /4 3/ \4
B A-----C
5
And their rotations.
I try to find some tool/algorithm which is able to do this (and draw
it) in php.
Tough luck I guess... :(
itschy

Didn't they teach you basic geometry at school?

three nodes with three paths, defines a unique shape, which is constant.
It can be rotated and mirrored,without violating the original
definition, but the shape remains constant.

To plot it, simply assume one point (A) is at 0,0, the next one - say
'B' is at the correct distance along the X axis, so in your case its
co-ordinates are 3,0.

Solving the position of the third point C involves solving a pair of
simultaneous quadratic equations. Cf Pythagoras and the dropping of
perpendiculars.

Namely:-

Cx^2+Cy^2=(5)^2
(3-Cx)^2 +Cy^2=(4)^2

Now there are either two, or none, solutions for Cy as there always are
for quadratics. One solution is the mirror of the other.

Now go solve it.

Its your homework, not mine.
Thanks for teaching me.
Now, have you read anything I wrote?
In short words i will summarize:
0. They did not only teach me basic geometry in school, but also
analytical geometry, graph theory and such in university.
1. I try to find an EXISTING solution not write my own.
2. Jensen Somers misunderstood my initial post, so I clarified, what
kind of solution I seek. I described to him exactly what you did to me
(in a visual way).
3. I know well how to do it, I wanted to know if it was done before
(because with all the drwaing stuff it is not worth it to implement it
by myself)
4. Your answer is still welcome, maybe someone searching and finding
this thread can use it. but next time please don't assume everyone
else is stupid! :)
Jan 19 '08 #7
On 19 Jan., 19:08, "Luuk" <l...@invalid.lanwrote:
"itschy" <goo...@00l.deschreef in berichtnews:58**********************************@v 67g2000hse.googlegroups.com...
On 18 Jan., 23:31, Jensen Somers <jensen.som...@gmail.comwrote:
PHP has support to create images, so my guess is - if I understand the
problem correctly - you'll just need to find a way to draw dots and
lines, making them thicker depending on the weight they have.
Not quite.
You missed the part, where I mentiond that I do not have any
coordinates of the nodes. Thus I'cant just draw them, cause I don't
know where. :)
What I seek is some solution, which finds a representation according
to the information I have about the edges (that is, connected or not,
and if, what weight/line length do they have).
E.g.:
I have three nodes A,B,C and 3 connections a(A,B,3), b(B,C,4), c(A,C,
5) (each with infos about from_node, to_node and weight/length.
In this szenario, there are only two possible ways to draw that
network correctly:
5
A-----C B
3\ /4 3/ \4
B A-----C
5
And their rotations.
I try to find some tool/algorithm which is able to do this (and draw
it) in php.
Tough luck I guess... :(
itschy

aaah, you mean something like:http://www.graphviz.org/Gallery/directed/hello.html
this is a sample with nodes 'hello' and 'world'
but this sollution does not give you weight...
(see also:http://www.graphviz.org/webdot/basic.html)

and, of course, this is not a PHP solution...
Thanks for your answer.
I know the dot package, actually wrote my master thesis using it, but
as you said, its not a php solution. :(

To anticipate the next answer in this thread: I know about cgi etc,
but I do not have any rights on the server this is supposed to run, so
i search a PURE php solution.
Jan 19 '08 #8

"itschy" <go****@00l.deschreef in bericht
news:f3**********************************@i7g2000p rf.googlegroups.com...
On 19 Jan., 19:08, "Luuk" <l...@invalid.lanwrote:
>"itschy" <goo...@00l.deschreef in
berichtnews:58**********************************@ v67g2000hse.googlegroups.com...
On 18 Jan., 23:31, Jensen Somers <jensen.som...@gmail.comwrote:
PHP has support to create images, so my guess is - if I understand the
problem correctly - you'll just need to find a way to draw dots and
lines, making them thicker depending on the weight they have.
Not quite.
You missed the part, where I mentiond that I do not have any
coordinates of the nodes. Thus I'cant just draw them, cause I don't
know where. :)
What I seek is some solution, which finds a representation according
to the information I have about the edges (that is, connected or not,
and if, what weight/line length do they have).
E.g.:
I have three nodes A,B,C and 3 connections a(A,B,3), b(B,C,4), c(A,C,
5) (each with infos about from_node, to_node and weight/length.
In this szenario, there are only two possible ways to draw that
network correctly:
5
A-----C B
3\ /4 3/ \4
B A-----C
5
And their rotations.
I try to find some tool/algorithm which is able to do this (and draw
it) in php.
Tough luck I guess... :(
itschy

aaah, you mean something
like:http://www.graphviz.org/Gallery/directed/hello.html
this is a sample with nodes 'hello' and 'world'
but this sollution does not give you weight...
(see also:http://www.graphviz.org/webdot/basic.html)

and, of course, this is not a PHP solution...

Thanks for your answer.
I know the dot package, actually wrote my master thesis using it, but
as you said, its not a php solution. :(

To anticipate the next answer in this thread: I know about cgi etc,
but I do not have any rights on the server this is supposed to run, so
i search a PURE php solution.

as you know the stuff.....

and you know php.net

it took me 5 mins to create this:
<?php
header("Content-type: image/png");
$im = @imagecreate(110, 120)
or die("Cannot Initialize new GD image stream");
$background_color = imagecolorallocate($im, 0, 0, 0);
$text_color = imagecolorallocate($im, 233, 14, 91);
//imagestring($im, 1, 5, 5, "A Simple Text String", $text_color);
imageline($im, 10,10, 100, 10, $text_color);
imageline($im, 10,10, 50, 110, $text_color);
imageline($im, 100,10, 50, 110, $text_color);
imagepng($im);
imagedestroy($im);
?>

which is a nice triangular... ;-)
(thanks to the docs..!!!)

i whish you suc6..


Jan 19 '08 #9
On 19 Jan., 19:47, "Luuk" <l...@invalid.lanwrote:
"itschy" <goo...@00l.deschreef in berichtnews:f3**********************************@i 7g2000prf.googlegroups.com...
On 19 Jan., 19:08, "Luuk" <l...@invalid.lanwrote:
"itschy" <goo...@00l.deschreef in
berichtnews:58**********************************@v 67g2000hse.googlegroups.com...
On 18 Jan., 23:31, Jensen Somers <jensen.som...@gmail.comwrote:
PHP has support to create images, so my guess is - if I understand the
problem correctly - you'll just need to find a way to draw dots and
lines, making them thicker depending on the weight they have.
Not quite.
You missed the part, where I mentiond that I do not have any
coordinates of the nodes. Thus I'cant just draw them, cause I don't
know where. :)
What I seek is some solution, which finds a representation according
to the information I have about the edges (that is, connected or not,
and if, what weight/line length do they have).
E.g.:
I have three nodes A,B,C and 3 connections a(A,B,3), b(B,C,4), c(A,C,
5) (each with infos about from_node, to_node and weight/length.
In this szenario, there are only two possible ways to draw that
network correctly:
5
A-----C B
3\ /4 3/ \4
B A-----C
5
And their rotations.
I try to find some tool/algorithm which is able to do this (and draw
it) in php.
Tough luck I guess... :(
itschy
aaah, you mean something
like:http://www.graphviz.org/Gallery/directed/hello.html
this is a sample with nodes 'hello' and 'world'
but this sollution does not give you weight...
(see also:http://www.graphviz.org/webdot/basic.html)
and, of course, this is not a PHP solution...
Thanks for your answer.
I know the dot package, actually wrote my master thesis using it, but
as you said, its not a php solution. :(
To anticipate the next answer in this thread: I know about cgi etc,
but I do not have any rights on the server this is supposed to run, so
i search a PURE php solution.

as you know the stuff.....

and you know php.net

it took me 5 mins to create this:
<?php
header("Content-type: image/png");
$im = @imagecreate(110, 120)
or die("Cannot Initialize new GD image stream");
$background_color = imagecolorallocate($im, 0, 0, 0);
$text_color = imagecolorallocate($im, 233, 14, 91);
//imagestring($im, 1, 5, 5, "A Simple Text String", $text_color);
imageline($im, 10,10, 100, 10, $text_color);
imageline($im, 10,10, 50, 110, $text_color);
imageline($im, 100,10, 50, 110, $text_color);
imagepng($im);
imagedestroy($im);
?>

which is a nice triangular... ;-)
(thanks to the docs..!!!)

i whish you suc6..
Luuk, please explain to me how you do that without ANY explicit
coordinates, like 10,10,100,10!
Please, everybody, READ what I write! cheers
Jan 19 '08 #10

"itschy" <go****@00l.deschreef in bericht
news:2f**********************************@s12g2000 prg.googlegroups.com...
On 19 Jan., 19:47, "Luuk" <l...@invalid.lanwrote:
>"itschy" <goo...@00l.deschreef in
berichtnews:f3**********************************@ i7g2000prf.googlegroups.com...
On 19 Jan., 19:08, "Luuk" <l...@invalid.lanwrote:
"itschy" <goo...@00l.deschreef in
berichtnews:58**********************************@ v67g2000hse.googlegroups.com...
On 18 Jan., 23:31, Jensen Somers <jensen.som...@gmail.comwrote:
PHP has support to create images, so my guess is - if I understand
the
problem correctly - you'll just need to find a way to draw dots and
lines, making them thicker depending on the weight they have.
Not quite.
You missed the part, where I mentiond that I do not have any
coordinates of the nodes. Thus I'cant just draw them, cause I don't
know where. :)
What I seek is some solution, which finds a representation according
to the information I have about the edges (that is, connected or
not,
and if, what weight/line length do they have).
E.g.:
I have three nodes A,B,C and 3 connections a(A,B,3), b(B,C,4),
c(A,C,
5) (each with infos about from_node, to_node and weight/length.
In this szenario, there are only two possible ways to draw that
network correctly:
5
A-----C B
3\ /4 3/ \4
B A-----C
5
And their rotations.
I try to find some tool/algorithm which is able to do this (and draw
it) in php.
Tough luck I guess... :(
itschy
>aaah, you mean something
like:http://www.graphviz.org/Gallery/directed/hello.html
this is a sample with nodes 'hello' and 'world'
but this sollution does not give you weight...
(see also:http://www.graphviz.org/webdot/basic.html)
>and, of course, this is not a PHP solution...
Thanks for your answer.
I know the dot package, actually wrote my master thesis using it, but
as you said, its not a php solution. :(
To anticipate the next answer in this thread: I know about cgi etc,
but I do not have any rights on the server this is supposed to run, so
i search a PURE php solution.

as you know the stuff.....

and you know php.net

it took me 5 mins to create this:
<?php
header("Content-type: image/png");
$im = @imagecreate(110, 120)
or die("Cannot Initialize new GD image stream");
$background_color = imagecolorallocate($im, 0, 0, 0);
$text_color = imagecolorallocate($im, 233, 14, 91);
//imagestring($im, 1, 5, 5, "A Simple Text String", $text_color);
imageline($im, 10,10, 100, 10, $text_color);
imageline($im, 10,10, 50, 110, $text_color);
imageline($im, 100,10, 50, 110, $text_color);
imagepng($im);
imagedestroy($im);
?>

which is a nice triangular... ;-)
(thanks to the docs..!!!)

i whish you suc6..

Luuk, please explain to me how you do that without ANY explicit
coordinates, like 10,10,100,10!
Please, everybody, READ what I write! cheers
you dont need to know,
as 'the philosopher' said: "To plot it, simply assume one point (A) is at
0,0"
or, as i did, asume its at (10,10)

you can posistion the second node anywhere YOU like, so in my example (100,
10)

and when the third node is mention, you have to calculate where you should
put this node...(based on you knowledge)
[[knowledge of itschy: I have three nodes A,B,C and 3 connections a(A,B,3),
b(B,C,4), c(A,C,5) ]]

and i think i did READ what you WROTE, but i dont think you UNDERSTAND what
you ASK ??

;-)

Jan 19 '08 #11
itschy wrote:
On 19 Jan., 17:19, The Natural Philosopher <a...@b.cwrote:
>itschy wrote:
>>On 18 Jan., 23:31, Jensen Somers <jensen.som...@gmail.comwrote:
PHP has support to create images, so my guess is - if I understand the
problem correctly - you'll just need to find a way to draw dots and
lines, making them thicker depending on the weight they have.
Not quite.
You missed the part, where I mentiond that I do not have any
coordinates of the nodes. Thus I'cant just draw them, cause I don't
know where. :)
What I seek is some solution, which finds a representation according
to the information I have about the edges (that is, connected or not,
and if, what weight/line length do they have).
E.g.:
I have three nodes A,B,C and 3 connections a(A,B,3), b(B,C,4), c(A,C,
5) (each with infos about from_node, to_node and weight/length.
In this szenario, there are only two possible ways to draw that
network correctly:
5
A-----C B
3\ /4 3/ \4
B A-----C
5
And their rotations.
I try to find some tool/algorithm which is able to do this (and draw
it) in php.
Tough luck I guess... :(
itschy
Didn't they teach you basic geometry at school?

three nodes with three paths, defines a unique shape, which is constant.
It can be rotated and mirrored,without violating the original
definition, but the shape remains constant.

To plot it, simply assume one point (A) is at 0,0, the next one - say
'B' is at the correct distance along the X axis, so in your case its
co-ordinates are 3,0.

Solving the position of the third point C involves solving a pair of
simultaneous quadratic equations. Cf Pythagoras and the dropping of
perpendiculars.

Namely:-

Cx^2+Cy^2=(5)^2
(3-Cx)^2 +Cy^2=(4)^2

Now there are either two, or none, solutions for Cy as there always are
for quadratics. One solution is the mirror of the other.

Now go solve it.

Its your homework, not mine.

Thanks for teaching me.
Now, have you read anything I wrote?
In short words i will summarize:
0. They did not only teach me basic geometry in school, but also
analytical geometry, graph theory and such in university.
1. I try to find an EXISTING solution not write my own.
2. Jensen Somers misunderstood my initial post, so I clarified, what
kind of solution I seek. I described to him exactly what you did to me
(in a visual way).
3. I know well how to do it, I wanted to know if it was done before
(because with all the drwaing stuff it is not worth it to implement it
by myself)
4. Your answer is still welcome, maybe someone searching and finding
this thread can use it. but next time please don't assume everyone
else is stupid! :)
I don't assume. I go on the evidence.

Maths packages exist.
Graphics packages exists.
The mathematics of quadratics is well known.

So all it needs s an unstupid unlazy person to put them all together.

Php doesn't have a package to calculate the net loss in weight of a
rutting elephant after sex, either.

If you want soenmthing that obscure, write it.


Jan 19 '08 #12
On 19 Jan., 20:57, The Natural Philosopher <a...@b.cwrote:
itschy wrote:
On 19 Jan., 17:19, The Natural Philosopher <a...@b.cwrote:
itschy wrote:
On 18 Jan., 23:31, Jensen Somers <jensen.som...@gmail.comwrote:
PHP has support to create images, so my guess is - if I understand the
problem correctly - you'll just need to find a way to draw dots and
lines, making them thicker depending on the weight they have.
Not quite.
You missed the part, where I mentiond that I do not have any
coordinates of the nodes. Thus I'cant just draw them, cause I don't
know where. :)
What I seek is some solution, which finds a representation according
to the information I have about the edges (that is, connected or not,
and if, what weight/line length do they have).
E.g.:
I have three nodes A,B,C and 3 connections a(A,B,3), b(B,C,4), c(A,C,
5) (each with infos about from_node, to_node and weight/length.
In this szenario, there are only two possible ways to draw that
network correctly:
5
A-----C B
3\ /4 3/ \4
B A-----C
5
And their rotations.
I try to find some tool/algorithm which is able to do this (and draw
it) in php.
Tough luck I guess... :(
itschy
Didn't they teach you basic geometry at school?
three nodes with three paths, defines a unique shape, which is constant.
It can be rotated and mirrored,without violating the original
definition, but the shape remains constant.
To plot it, simply assume one point (A) is at 0,0, the next one - say
'B' is at the correct distance along the X axis, so in your case its
co-ordinates are 3,0.
Solving the position of the third point C involves solving a pair of
simultaneous quadratic equations. Cf Pythagoras and the dropping of
perpendiculars.
Namely:-
Cx^2+Cy^2=(5)^2
(3-Cx)^2 +Cy^2=(4)^2
Now there are either two, or none, solutions for Cy as there always are
for quadratics. One solution is the mirror of the other.
Now go solve it.
Its your homework, not mine.
Thanks for teaching me.
Now, have you read anything I wrote?
In short words i will summarize:
0. They did not only teach me basic geometry in school, but also
analytical geometry, graph theory and such in university.
1. I try to find an EXISTING solution not write my own.
2. Jensen Somers misunderstood my initial post, so I clarified, what
kind of solution I seek. I described to him exactly what you did to me
(in a visual way).
3. I know well how to do it, I wanted to know if it was done before
(because with all the drwaing stuff it is not worth it to implement it
by myself)
4. Your answer is still welcome, maybe someone searching and finding
this thread can use it. but next time please don't assume everyone
else is stupid! :)

I don't assume. I go on the evidence.

Maths packages exist.
Graphics packages exists.
The mathematics of quadratics is well known.

So all it needs s an unstupid unlazy person to put them all together.

Php doesn't have a package to calculate the net loss in weight of a
rutting elephant after sex, either.

If you want soenmthing that obscure, write it.
So, the answer to my question would be:
"No, it doesn't exist"
All I wanted to know...

PS: I have to admit I never wondered about that elephant thing ;)
Jan 20 '08 #13
itschy wrote:
On 19 Jan., 20:57, The Natural Philosopher <a...@b.cwrote:
>itschy wrote:
>>On 19 Jan., 17:19, The Natural Philosopher <a...@b.cwrote:
itschy wrote:
On 18 Jan., 23:31, Jensen Somers <jensen.som...@gmail.comwrote:
>PHP has support to create images, so my guess is - if I understand the
>problem correctly - you'll just need to find a way to draw dots and
>lines, making them thicker depending on the weight they have.
Not quite.
You missed the part, where I mentiond that I do not have any
coordinates of the nodes. Thus I'cant just draw them, cause I don't
know where. :)
What I seek is some solution, which finds a representation according
to the information I have about the edges (that is, connected or not,
and if, what weight/line length do they have).
E.g.:
I have three nodes A,B,C and 3 connections a(A,B,3), b(B,C,4), c(A,C,
5) (each with infos about from_node, to_node and weight/length.
In this szenario, there are only two possible ways to draw that
network correctly:
5
A-----C B
3\ /4 3/ \4
B A-----C
5
And their rotations.
I try to find some tool/algorithm which is able to do this (and draw
it) in php.
Tough luck I guess... :(
itschy
Didn't they teach you basic geometry at school?
three nodes with three paths, defines a unique shape, which is constant.
It can be rotated and mirrored,without violating the original
definition, but the shape remains constant.
To plot it, simply assume one point (A) is at 0,0, the next one - say
'B' is at the correct distance along the X axis, so in your case its
co-ordinates are 3,0.
Solving the position of the third point C involves solving a pair of
simultaneous quadratic equations. Cf Pythagoras and the dropping of
perpendiculars.
Namely:-
Cx^2+Cy^2=(5)^2
(3-Cx)^2 +Cy^2=(4)^2
Now there are either two, or none, solutions for Cy as there always are
for quadratics. One solution is the mirror of the other.
Now go solve it.
Its your homework, not mine.
Thanks for teaching me.
Now, have you read anything I wrote?
In short words i will summarize:
0. They did not only teach me basic geometry in school, but also
analytical geometry, graph theory and such in university.
1. I try to find an EXISTING solution not write my own.
2. Jensen Somers misunderstood my initial post, so I clarified, what
kind of solution I seek. I described to him exactly what you did to me
(in a visual way).
3. I know well how to do it, I wanted to know if it was done before
(because with all the drwaing stuff it is not worth it to implement it
by myself)
4. Your answer is still welcome, maybe someone searching and finding
this thread can use it. but next time please don't assume everyone
else is stupid! :)
I don't assume. I go on the evidence.

Maths packages exist.
Graphics packages exists.
The mathematics of quadratics is well known.

So all it needs s an unstupid unlazy person to put them all together.

Php doesn't have a package to calculate the net loss in weight of a
rutting elephant after sex, either.

If you want soenmthing that obscure, write it.

So, the answer to my question would be:
"No, it doesn't exist"
The astounding question I have, is whatever made you think it would?

I can't think of a single application for such a program.

All I wanted to know...

PS: I have to admit I never wondered about that elephant thing ;)
Well I never wondered about drawing a shape with three co-ordinates
defined in the way yours are.
Jan 20 '08 #14
The Natural Philosopher wrote:
I can't think of a single application for such a program.
Weighted graphs are a useful tool in many diverse areas of endeavour such
as network routing, road traffic planning, social networks and
international diplomacy.

Unless the OP is wedded to PHP, I think he should check out Perl's
Graph::Easy module, which is a very good module for building an
traversing graphs. It supports directed graphs, but doesn't specifically
support weighted graphs -- however, edges can be labelled, so you could
use numeric labels on the edges to identify weights. They can also be
styled, so you could use colour or thickness. It allows export as SVG --
it should be fairly easy to convert from SVG to JPEG, PNG or whatever
other format you want.

As an aside, you mention using line lengths to visually represent the
weight. Consider nodes A, B and C with edges (A,B,1), (B,C,1) and (A,C,3).

Hope that helps

--
Toby A Inkster BSc (Hons) ARCS
[Geek of HTML/SQL/Perl/PHP/Python/Apache/Linux]
[OS: Linux 2.6.17.14-mm-desktop-9mdvsmp, up 20 days, 21:01.]

Ham vs Bacon vs Pork
http://tobyinkster.co.uk/blog/2008/01/17/pork-etc/
Jan 20 '08 #15
On 20 Jan., 11:29, Toby A Inkster <usenet200...@tobyinkster.co.uk>
wrote:
The Natural Philosopher wrote:
I can't think of a single application for such a program.

Weighted graphs are a useful tool in many diverse areas of endeavour such
as network routing, road traffic planning, social networks and
international diplomacy.
Thank you for your backup. :)
Unless the OP is wedded to PHP, I think he should check out Perl's
Graph::Easy module
Interesting.
But sadly, I can not use perl on that server, but I'm stuck to php. :(
As an aside, you mention using line lengths to visually represent the
weight. Consider nodes A, B and C with edges (A,B,1), (B,C,1) and (A,C,3).
The weights actually represent the distance between two geographic
points, so the problem you imply should not occur while I operate
inside the bounds of physics. :)
Jan 20 '08 #16

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: A. Novruzi | last post by:
Hi, I am looking for a free 3D visualization software, running in Linux, and able to visualize 3D functions in nonstructured mesh (basically, my mesh is a set of thetraheders used for some 3D FE...
1
by: Thomas Korimort | last post by:
Hi, how can i visualize the content of the symbol table in Python? Sometimes i want to know which symbols are imported from apackage and such kind of things Greetings, THomas Korimort
9
by: svenn.are | last post by:
Hi, has anybody thought of / already used graphviz to convert the output of trace.py into a graph? I looked at PyUMLGraph, but 1. PyUMLGraph does not successfully create a dot file, and 2. I...
2
by: Koen | last post by:
Hi all, Is there any example code available somewhere that graphical visualizes a simple network planning (PERT chart)? I have two tables: tblAction: ActionID (PK) Description
7
by: Enrico Castagnola | last post by:
Hi, I have a problem. How can I print a file pdf on server without to visualize it? Thanks Best regard
1
by: Israel | last post by:
Hi... Somebody knows how can i visualize TIF image in my .Net Webproyect, is there a .NET webcontrol who can open and visualize TIF image (Black and white, gray scale and color)? Is there a...
2
by: Rasmus | last post by:
I'm looking for a way to visualize the structure of namespaces in my C# project. Idealy a program that can inspect the dll and provide me with a overview of the namespaces and the classes...
1
by: richard.hallgren | last post by:
Hi, I have several Xml schemas that I like to visualize in some sort of tree view (so it's possible to expand and collapse different nodes in the schema). I also have to make it possible to...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.