Re: [Flightgear-devel] View for a down facing camera

2005-03-30 Thread Erik Hofman
Martin Spott wrote:
During holidays last week I actually recieved ten photographs which
have been used for the FreeGIS tutorial by Heiko Kehlenbrink - see page
115. You'll find a copy of the tutorial here (it's in German):
  ftp://ftp.ihg.uni-duisburg.de/GIS/GRASS/docs/freegis-tutorial-1.0.pdf
The images are 362 MByte each, explicitly licensed under the GPL. I'll
create a copy of the DVD if anyone is willing to create textures from
these images. Erik ?
Do you think they are suitable for creating types of textures that we 
don't have yet (are could be improved)?

As I see it, these photographs don't add much to what we already have, 
but I might be wrong.

Erik
___
Flightgear-devel mailing list
Flightgear-devel@flightgear.org
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d


Re: [Flightgear-devel] View for a down facing camera

2005-03-30 Thread Martin Spott
Erik Hofman wrote:

 As I see it, these photographs don't add much to what we already have, 
 but I might be wrong.

Honestly I have no any idea which material was used for the textures
that FlighGear currently includes so I can hardly guess how much these
aerial photos can contribute to improving the current set of textures.

Still I think it's notable that the colours on these aerial images
differ in a significant way from what we currently have for
agricultural areas although I don't know if our landuse data allows for
differenciating between predominant presence of grassland or fields,

Martin.
-- 
 Unix _IS_ user friendly - it's just selective about who its friends are !
--

___
Flightgear-devel mailing list
Flightgear-devel@flightgear.org
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d


Re: [Flightgear-devel] View for a down facing camera

2005-03-29 Thread Martin Spott
Erik Hofman wrote:
 Martin Spott wrote:

 I'm pretty sure they exist   albeit D-FOTO is a Caravan, used for
 photogrammetry of the nearby brown coal mining. They have a nice 19
 rack inside the cabin for analysis equipment,
 
 So now you are going to provide me with all kinds of pretty pictures 
 which can be used to create textures?

During holidays last week I actually recieved ten photographs which
have been used for the FreeGIS tutorial by Heiko Kehlenbrink - see page
115. You'll find a copy of the tutorial here (it's in German):

  ftp://ftp.ihg.uni-duisburg.de/GIS/GRASS/docs/freegis-tutorial-1.0.pdf

The images are 362 MByte each, explicitly licensed under the GPL. I'll
create a copy of the DVD if anyone is willing to create textures from
these images. Erik ?

Martin.
-- 
 Unix _IS_ user friendly - it's just selective about who its friends are !
--

___
Flightgear-devel mailing list
Flightgear-devel@flightgear.org
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d


Re: [Flightgear-devel] View for a down facing camera

2004-10-20 Thread Jim Wilson
Birger Brunswiek said:

 I'm trying to create a new view which is supposed to be a camera
 fixed under the Cesna at the body. So far it looks like this:
 view
nameCamera View/camera
internal type=boolfalse/internal
config
  from-model type=booltrue/from-model
  from-model-idx type=int0/from-model
  ground-level-nearplane-m type=double0.2f/ground-level-nearplane-m
  x-offset type=double0x-offset
  y-offset type=double-1y-offset
  z-offset type=double0z-offset
/config
 /view
 
 So far so good... now I'm trying to change the pitch and heading defaults
 of that camera. I've tried eye-*-*-path and default-*-deg but none of those
 seems to have any effect...
 What am I doing wrong?
 
 Birger

I'm not sure if this was answered or not...been out of the loop for while now.
 You needed to specify this as a lookfrom view type (similar to cockpit
view).  Then you sould be able to specify offsets (e.g. pitch-offset-deg,
heading-offset-deg) which will affect the direction of the camera.

As far as your question goes, my guess is you have misunderstood the purpose
of the eye path settings.  These just specify where in the property tree the
value for position or atitude of the camera (or eye) is stored.  In this case
you don't need that.  Just use from-model-idx number 0 as you have.  This
indicates the position and attitude data is retrieved from the same location
as the primary FDM's 3D Model Location (e.g. /orientation /position).

In other words, this camera eye location and atitude is the same as fdm
location and atitude, because it is attached to the aircraft.  You only need
some small adjustments to offset the camera from the origin of the FDM (and
3D Model).   The x/y/z-offset-m properties are for adjusting the location down
to the desired location below the aircraft.   Looks like you got that.  The
pitch/roll/heading-offset-deg are for making the camera point to a direction
different than the aircraft is pointing.   Straight down would be 90.0 (or
maybe -90.0) pitch-offset-deg.  Note, you will probably want to make that 89
degrees or some value not quite 90.0 because of the singularity issue that we
run into with the matrix methods.

Best,

Jim


___
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d


[Flightgear-devel] View for a down facing camera

2004-09-22 Thread Birger Brunswiek
I'm trying to create a new view which is supposed to be a camera
fixed under the Cesna at the body. So far it looks like this:
view
  nameCamera View/camera
  internal type=boolfalse/internal
  config
from-model type=booltrue/from-model
from-model-idx type=int0/from-model
ground-level-nearplane-m type=double0.2f/ground-level-nearplane-m
x-offset type=double0x-offset
y-offset type=double-1y-offset
z-offset type=double0z-offset
  /config
/view
So far so good... now I'm trying to change the pitch and heading defaults
of that camera. I've tried eye-*-*-path and default-*-deg but none of those
seems to have any effect...
What am I doing wrong?
Birger
___
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d


Re: [Flightgear-devel] View for a down facing camera

2004-09-22 Thread Martin Spott
Birger Brunswiek wrote:
 I'm trying to create a new view which is supposed to be a camera
 fixed under the Cesna at the body. [...]

Oh yeah, enlarge the C172 a bit, replace the engine with a PT6 and
call it D-FOTO (based at my home airport EDLN  :-)

Martin.
-- 
 Unix _IS_ user friendly - it's just selective about who its friends are !
--

___
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d


Re: [Flightgear-devel] View for a down facing camera

2004-09-22 Thread Martin Spott
Erik Hofman wrote:
 Martin Spott wrote:

  Oh yeah, enlarge the C172 a bit, replace the engine with a PT6 and
  call it D-FOTO (based at my home airport EDLN  :-)
 
 So they do exist, turboprop driven C-172's?

I'm pretty sure they exist   albeit D-FOTO is a Caravan, used for
photogrammetry of the nearby brown coal mining. They have a nice 19
rack inside the cabin for analysis equipment,

Martin.
-- 
 Unix _IS_ user friendly - it's just selective about who its friends are !
--

___
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d


Re: [Flightgear-devel] View for a down facing camera

2004-09-22 Thread Erik Hofman
Martin Spott wrote:
I'm pretty sure they exist   albeit D-FOTO is a Caravan, used for
photogrammetry of the nearby brown coal mining. They have a nice 19
rack inside the cabin for analysis equipment,
So now you are going to provide me with all kinds of pretty pictures 
which can be used to create textures?

Erik
___
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d


Re: [Flightgear-devel] View for a down facing camera

2004-09-22 Thread Martin Spott
Erik Hofman wrote:
 Martin Spott wrote:

  I'm pretty sure they exist   albeit D-FOTO is a Caravan, used for
  photogrammetry of the nearby brown coal mining. They have a nice 19
  rack inside the cabin for analysis equipment,

 So now you are going to provide me with all kinds of pretty pictures 
 which can be used to create textures?

For a rough check we could start here:

  http://www.enviscope.de/foto.html

or here:

  http://www.jetphotos.net/viewphoto.php?id=178194

Please don't expect me to do the model myself, I'll never find the time
to do that but I'll try to get the permission to take some close-up
photos, if you want me to do,

Martin.
-- 
 Unix _IS_ user friendly - it's just selective about who its friends are !
--

___
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d


Re: [Flightgear-devel] View for a down facing camera

2004-09-22 Thread Mat Churchill
Erik Hofman wrote:

So now you are going to provide me with all kinds of pretty pictures
which can be used to create textures?

I'm certainly planning exactly this, have been messing around with low
budget aerial photography. This device (MK1, now on MK3)

http://www.projects.34sp.com/Flightgear/tn/img_2545.jpg.html

has produced these results (low res for the web)

http://www.projects.34sp.com/Flightgear/tn/patch1.jpg.html

Planning on a nice distributable bit of photo scenery for FG, though
have only done two test runs as weather has been V bad for a couple of
months.

Mat


___
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d


Re: [Flightgear-devel] View for a down facing camera

2004-09-22 Thread Martin Spott
Erik Hofman wrote:

 So now you are going to provide me with all kinds of pretty pictures 
 which can be used to create textures?

Ok, now I realize that I misunderstood your message   e, better
late than never  :-)

Martin.
-- 
 Unix _IS_ user friendly - it's just selective about who its friends are !
--

___
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d


Re: [Flightgear-devel] View for a down facing camera

2004-09-22 Thread Erik Hofman
Martin Spott wrote:
Erik Hofman wrote:
Martin Spott wrote:

I'm pretty sure they exist   albeit D-FOTO is a Caravan, used for
photogrammetry of the nearby brown coal mining. They have a nice 19
rack inside the cabin for analysis equipment,

So now you are going to provide me with all kinds of pretty pictures 
which can be used to create textures?

For a rough check we could start here:
  http://www.enviscope.de/foto.html
Eh, I actually meant:
   Down facing pictures to create ground textures from.
Erik
___
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d


Re: [Flightgear-devel] View for a down facing camera

2004-09-22 Thread Erik Hofman
Mat Churchill wrote:
Erik Hofman wrote:
So now you are going to provide me with all kinds of pretty
pictures which can be used to create textures?
I'm certainly planning exactly this, have been messing around with low
budget aerial photography. This device (MK1, now on MK3)
http://www.projects.34sp.com/Flightgear/tn/img_2545.jpg.html
has produced these results (low res for the web)
http://www.projects.34sp.com/Flightgear/tn/patch1.jpg.html
Planning on a nice distributable bit of photo scenery for FG, though
have only done two test runs as weather has been V bad for a couple of
months.
Not bad! Please keep trying!
Erik
___
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d


Re: [Flightgear-devel] View for a down facing camera

2004-09-22 Thread Boris Koenig
Mat Churchill wrote:
Erik Hofman wrote:

So now you are going to provide me with all kinds of pretty pictures
which can be used to create textures?
I'm certainly planning exactly this, have been messing around with low
budget aerial photography. This device (MK1, now on MK3)
[...]
Planning on a nice distributable bit of photo scenery for FG, though
have only done two test runs as weather has been V bad for a couple of
months.
I'm sure this has been brought up before, but has anybody ever really
*tried* to ask companies that sell satellite imagery on CD-ROM for their
permission to use derived work (= FG textures) freely in an opensource
project ?
As long as not the actual product itself can be re-created from the
derived textures, it should not be SUCH an issue, to allow an opensource
project to use that kind of data, maybe one could in exchange offer them
to mention them in some kind of supporters dialog within FlightGear
or anything like that (which brings us back to the ads discussion ...)
Even if it meant that one would have to buy ONE set of data CDs ;-)
--
Boris
___
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d


Re: [Flightgear-devel] View for a down facing camera

2004-09-22 Thread Erik Hofman
Boris Koenig wrote:
I'm sure this has been brought up before, but has anybody ever really
*tried* to ask companies that sell satellite imagery on CD-ROM for their
permission to use derived work (= FG textures) freely in an opensource
project ?
As long as not the actual product itself can be re-created from the
derived textures, it should not be SUCH an issue, to allow an opensource
project to use that kind of data, maybe one could in exchange offer them
to mention them in some kind of supporters dialog within FlightGear
or anything like that (which brings us back to the ads discussion ...)
Yes, spaceimaging.com allows us to use their *sample* images for use as 
textures in FlightGear.

Erik
___
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d