POV-Ray : Newsgroups : povray.binaries.images : Earth render with blowout atmospheric parameters for artistic look : Re: Earth render with blowout atmospheric parameters for artistic look Server Time
7 Aug 2024 03:15:25 EDT (-0400)
  Re: Earth render with blowout atmospheric parameters for artistic look  
From: EagleSun
Date: 7 Jun 2006 10:45:01
Message: <web.4486e58fe4051eac841337530@news.povray.org>
"EagleSun" <nomail@nomail> wrote:

> > > Here is "/include/EagleSun/worlds.inc"

> Look for it before 15:00 UTC
> today at povray.binaries.scenes-files.

I just posted it there...

Here's part of "solarsys.pov" that will render Earth.

global_settings {
 max_trace_level 20
 assumed_gamma 1.0
 ambient_light 0
/* radiosity {
  brightness 1/32
  media on
  normal on
  count 1000
 // pretrace_start 1/16
 // pretrace_end 1/128
 }*/
}

#include "EagleSun/worlds.inc"

#declare sun_radius = 695000;

#declare venus_distance = 108200000;

#declare earth_distance = 149600000;
#declare moon_distance = 384401;

#declare mars_distance = 227940000;

#declare jupiter_distance = 778330000;

#declare saturn_distance = 1429400000;

#declare uranus_distance = 2870990000;

#declare neptune_distance = 4504300000;



#macro Earth(_distance, _hour, _year, _heading, _pitch, _bank)
 SunLight(earth_distance, sun_radius, rgb 1, 10, _heading, _pitch, _bank)
 #local _albedo=0.39; // Map is already adjusted for albedo.
 #local _radius=6370;
 #local _tilt=23.45;
 #local _tiltshift=354/365.25;
 object {
  LandSurface(_radius, 8.85, 0, _albedo, jpeg_type, "Solar
System/Earth/EarthMap_2500x1250.jpg", jpeg_type, "Solar
System/Earth/EarthElevation_2500x1250.jpg")
  TransformWorld(_distance, _hour, _year, _heading, _pitch, _bank, _tilt,
_tiltshift)
 }
 object {
  Clouds(_radius, 9, 1, jpeg_type, "CloudMaps/EarthClouds_2500x1250.jpg",
rgbt 1, rgb 1)
  TransformWorld(_distance, _hour+1, _year, _heading, _pitch, _bank, _tilt,
_tiltshift)
 }
/* object {
  Atmosphere(_radius, 8.5, 91/255, 117/255, 192/255, 32/65535, 1, 0)
  TransformWorld(_distance, _hour, _year, _heading, _pitch, _bank, _tilt,
_tiltshift)
 }
 object {
  Atmosphere(_radius, 0.75, 173/255, 186/255, 224/255, 96/65535, 2.71828, 0)
  TransformWorld(_distance, _hour, _year, _heading, _pitch, _bank, _tilt,
_tiltshift)
 }*/
 object {
  Atm2Sphere(_radius, 8.5, 32/255, 53/255, 145/255, 0.008, 1, 3, 91/255,
117/255, 192/255, 0.115, 1)
 // AtmSphere(_radius-0.01, 8.5, 91/255, 117/255, 192/255, 0.015, 0.25)
  TransformWorld(_distance, _hour, _year, _heading, _pitch, _bank, _tilt,
_tiltshift)
 }
#end


Stars_Crackle(105, 0, 30)
Earth(0, 16, 0.75, 105, 0, 30)
TerragenViewFrom(1, 6370*2.5, 0, 0, 0)


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.