<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://stellarium.org/wiki/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://stellarium.org/wiki/api.php?action=feedcontributions&amp;user=Mina&amp;feedformat=atom</id>
		<title>Stellarium Wiki - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://stellarium.org/wiki/api.php?action=feedcontributions&amp;user=Mina&amp;feedformat=atom"/>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Special:Contributions/Mina"/>
		<updated>2013-06-19T15:19:02Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.18.0</generator>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X</id>
		<title>Compilation on Mac OS X</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X"/>
				<updated>2013-01-06T17:36:59Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: /* Prepare Mac OS X to build Stellarium */ Changed to current version (4.8.4) Qt libraries&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This document describes how to build Stellarium from sources on Mac OS X. This process ought to improve over time.&lt;br /&gt;
&lt;br /&gt;
The set of instructions was written for the 0.10.4 release and using an Intel machine with Leopard (10.5). The process has been validated on 10.6, 10.7 and 10.8.x.&lt;br /&gt;
&lt;br /&gt;
== Prepare Mac OS X to build Stellarium ==  &lt;br /&gt;
&lt;br /&gt;
Since Stellarium version 0.10.6, you need a machine with Mac OS X 10.5&amp;lt;ref&amp;gt;If you build Stellarium 0.10.6+ by yourself on Mac OS X 10.4.11 then you need edit info.plist file then change value for LSMinimumSystemVersion key. You'll have to get [ftp://ftp.qt.nokia.com/qt/source/ older versions of Qt (Carbon)] too, if you want to create universal binaries (PPC and Intel).&amp;lt;/ref&amp;gt;. These instructions were tested with Mac OS X 10.6 or later, including Mountain Lion (10.8.2 at the time these instructions are written).&lt;br /&gt;
&lt;br /&gt;
# Install the latest version of Apple's Developer Tools: http://developer.apple.com/technology/xcode.html&lt;br /&gt;
# Install the latest stable version of Qt Libraries from the dmg (4.8.4 at the time these instructions were written): http://qt-project.org/downloads#qt-lib ([http://releases.qt-project.org/qt4/source/qt-mac-opensource-4.8.4.dmg direct download])&lt;br /&gt;
# Install macports: http://www.macports.org/install.php&lt;br /&gt;
# Install cmake using macports: &amp;lt;code&amp;gt;$ sudo port install cmake&amp;lt;/code&amp;gt;&lt;br /&gt;
# Install bazaar using macports: &amp;lt;code&amp;gt;$ sudo port install bzr&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Compiling dependencies to build an universal binary ==&lt;br /&gt;
&lt;br /&gt;
'''Note: This step is needed only if you need an universal binary. If you don't intend to create an universal package you can skip this and going to the next section [[#Building Stellarium itself|Building Stellarium itself]].'''&lt;br /&gt;
&lt;br /&gt;
We have to compile the dependencies with special flags to be able to generate an universal binary. &lt;br /&gt;
&lt;br /&gt;
In case you are compiling in a Leopard or Snow Leopard machine you have to recompile stellarium dependencies making use of the oldest system libraries (in our case those in 10.4 aka Tiger). We need the following compilation flags:&lt;br /&gt;
&lt;br /&gt;
a. We want to generate a single binary for both intel and ppc architectures so:&lt;br /&gt;
&lt;br /&gt;
-arch i386 -arch ppc &lt;br /&gt;
&lt;br /&gt;
b. We want to link with the old framework and system libraries:&lt;br /&gt;
&lt;br /&gt;
-mmacosx-version-min=10.4 &lt;br /&gt;
-isysroot /Developer/SDKs/MacOSX10.4u.sdk/ (Not sure if this is really needed)&lt;br /&gt;
&lt;br /&gt;
=== Compiling dependencies ===&lt;br /&gt;
&lt;br /&gt;
- Libiconv: It's important to compile libiconv in the first place because gettext depends on it. Get the latest release from here: http://www.gnu.org/software/libiconv/ Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure --prefix=/usr CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
- Gettext: Get the latest release from here: http://www.gnu.org/software/gettext/ . Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
At the moment of writing these steps 4.6.2 is the latest version of Qt. Trolltech provides support from MacOS 10.4 to 10.6 so our binaries will be constrained by this. I went through these instructions in a Leopard machine. To compile in Snow Leopard it's necessary to consider the following notes copied from the Qt 4.6.0 changelog:&lt;br /&gt;
&lt;br /&gt;
* Gcc 4.2 is used by default. Configure with -platform macx-g++40 to select 4.0.&lt;br /&gt;
* Using the 10.4u SDK requires gcc 4.0.&lt;br /&gt;
* Configuring for the Cocoa port (-cocoa) produces 64-bit binaries by default. Use the -arch flags to override.&lt;br /&gt;
* Building for ppc64 is no longer supported by the gcc tool chain.&lt;br /&gt;
* Building for ppc is still supported.&lt;br /&gt;
&lt;br /&gt;
I haven't tried to generate universal binaries on a Snow Leopard machine. We have to validate these steps.&lt;br /&gt;
&lt;br /&gt;
== Building Stellarium itself ==&lt;br /&gt;
&lt;br /&gt;
Create a build directory with your favorite shell (the following directory is just an example, you can pick any name and path you want)&lt;br /&gt;
&lt;br /&gt;
 $ mkdir ~/Development&lt;br /&gt;
 $ cd ~/Development&lt;br /&gt;
&lt;br /&gt;
=== Getting Stellarium source code ===&lt;br /&gt;
&lt;br /&gt;
In that directory checkout the sources with the bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr branch lp:stellarium stellarium&lt;br /&gt;
&lt;br /&gt;
For more details, see [[Bzr checkout|the Bazaar checkout instructions]].&lt;br /&gt;
&lt;br /&gt;
If you have already done it once, you have just to update your copy using this bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr pull&lt;br /&gt;
&lt;br /&gt;
=== Time to compile Stellarium ===&lt;br /&gt;
&lt;br /&gt;
We setup the build directory&lt;br /&gt;
&lt;br /&gt;
 $ cd stellarium &lt;br /&gt;
 $ mkdir -p builds/macosx&lt;br /&gt;
 $ cd builds/macosx&lt;br /&gt;
&lt;br /&gt;
[[Configuring Build Options|We run cmake]]&amp;lt;ref&amp;gt;If you've installed the Qt Creator dmg instead of the Qt Libraries, cmake will complain that it can't find Qt and you'll have to pass as an option the location of your QtSDK installation, e.g.&lt;br /&gt;
 $ cmake -DQT_QMAKE_EXECUTABLE=~/Development/QtSDK/Desktop/Qt/4.8.2/gcc/bin/qmake ../..&lt;br /&gt;
Other things will later go wrong too, especially when making the application bundle.&lt;br /&gt;
&amp;lt;/ref&amp;gt;...&lt;br /&gt;
&lt;br /&gt;
 $ cmake ../..&lt;br /&gt;
&lt;br /&gt;
... and compile&lt;br /&gt;
&lt;br /&gt;
 $ make&lt;br /&gt;
&lt;br /&gt;
== Packaging ==&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT''': you should delete or move aside the old Stellarium.app before each new build:&lt;br /&gt;
&lt;br /&gt;
 $ rm -r Stellarium.app/&lt;br /&gt;
&lt;br /&gt;
Then make the Mac OS X application:&lt;br /&gt;
&lt;br /&gt;
 $ make install&lt;br /&gt;
 $ make macosx_bundle&lt;br /&gt;
&lt;br /&gt;
The macosx_bundle target includes a perl script that makes use of otool and install_name_tool to:&lt;br /&gt;
&lt;br /&gt;
# read the link dependencies of Stellarium.app/Contents/MacOS/stellarium&lt;br /&gt;
# copy those dependencies into the app (.frameworks and .dylibs)&lt;br /&gt;
# recurse on those copied-in dependencies, stopping at a point where system libraries are called for&lt;br /&gt;
&lt;br /&gt;
== We recommend Qt Creator ==&lt;br /&gt;
&lt;br /&gt;
The core group of developers of stellarium uses QtCreator as main IDE, its integration with Qt and the possibility of having a consistent tool through different platforms makes it the most suitable option for our goals.&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
All kinds of things might go wrong!  &lt;br /&gt;
&lt;br /&gt;
We will write here the most frequent problems and the possible solutions found by the developers. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X</id>
		<title>Compilation on Mac OS X</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X"/>
				<updated>2013-01-06T17:26:32Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: /* Prepare Mac OS X to build Stellarium */ Direct link for Qt download added&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This document describes how to build Stellarium from sources on Mac OS X. This process ought to improve over time.&lt;br /&gt;
&lt;br /&gt;
The set of instructions was written for the 0.10.4 release and using an Intel machine with Leopard (10.5). The process has been validated on 10.6, 10.7 and 10.8.x.&lt;br /&gt;
&lt;br /&gt;
== Prepare Mac OS X to build Stellarium ==  &lt;br /&gt;
&lt;br /&gt;
Since Stellarium version 0.10.6, you need a machine with Mac OS X 10.5&amp;lt;ref&amp;gt;If you build Stellarium 0.10.6+ by yourself on Mac OS X 10.4.11 then you need edit info.plist file then change value for LSMinimumSystemVersion key. You'll have to get [ftp://ftp.qt.nokia.com/qt/source/ older versions of Qt (Carbon)] too, if you want to create universal binaries (PPC and Intel).&amp;lt;/ref&amp;gt;. These instructions were tested with Mac OS X 10.6 or later, including Mountain Lion (10.8.2 at the time these instructions are written).&lt;br /&gt;
&lt;br /&gt;
# Install the latest version of Apple's Developer Tools: http://developer.apple.com/technology/xcode.html&lt;br /&gt;
# Install the latest stable version of Qt Libraries from the dmg (4.8.3 at the time these instructions were written): http://qt-project.org/downloads#qt-lib ([http://releases.qt-project.org/qt4/source/qt-mac-opensource-4.8.3.dmg direct download])&lt;br /&gt;
# Install macports: http://www.macports.org/install.php&lt;br /&gt;
# Install cmake using macports: &amp;lt;code&amp;gt;$ sudo port install cmake&amp;lt;/code&amp;gt;&lt;br /&gt;
# Install bazaar using macports: &amp;lt;code&amp;gt;$ sudo port install bzr&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Compiling dependencies to build an universal binary ==&lt;br /&gt;
&lt;br /&gt;
'''Note: This step is needed only if you need an universal binary. If you don't intend to create an universal package you can skip this and going to the next section [[#Building Stellarium itself|Building Stellarium itself]].'''&lt;br /&gt;
&lt;br /&gt;
We have to compile the dependencies with special flags to be able to generate an universal binary. &lt;br /&gt;
&lt;br /&gt;
In case you are compiling in a Leopard or Snow Leopard machine you have to recompile stellarium dependencies making use of the oldest system libraries (in our case those in 10.4 aka Tiger). We need the following compilation flags:&lt;br /&gt;
&lt;br /&gt;
a. We want to generate a single binary for both intel and ppc architectures so:&lt;br /&gt;
&lt;br /&gt;
-arch i386 -arch ppc &lt;br /&gt;
&lt;br /&gt;
b. We want to link with the old framework and system libraries:&lt;br /&gt;
&lt;br /&gt;
-mmacosx-version-min=10.4 &lt;br /&gt;
-isysroot /Developer/SDKs/MacOSX10.4u.sdk/ (Not sure if this is really needed)&lt;br /&gt;
&lt;br /&gt;
=== Compiling dependencies ===&lt;br /&gt;
&lt;br /&gt;
- Libiconv: It's important to compile libiconv in the first place because gettext depends on it. Get the latest release from here: http://www.gnu.org/software/libiconv/ Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure --prefix=/usr CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
- Gettext: Get the latest release from here: http://www.gnu.org/software/gettext/ . Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
At the moment of writing these steps 4.6.2 is the latest version of Qt. Trolltech provides support from MacOS 10.4 to 10.6 so our binaries will be constrained by this. I went through these instructions in a Leopard machine. To compile in Snow Leopard it's necessary to consider the following notes copied from the Qt 4.6.0 changelog:&lt;br /&gt;
&lt;br /&gt;
* Gcc 4.2 is used by default. Configure with -platform macx-g++40 to select 4.0.&lt;br /&gt;
* Using the 10.4u SDK requires gcc 4.0.&lt;br /&gt;
* Configuring for the Cocoa port (-cocoa) produces 64-bit binaries by default. Use the -arch flags to override.&lt;br /&gt;
* Building for ppc64 is no longer supported by the gcc tool chain.&lt;br /&gt;
* Building for ppc is still supported.&lt;br /&gt;
&lt;br /&gt;
I haven't tried to generate universal binaries on a Snow Leopard machine. We have to validate these steps.&lt;br /&gt;
&lt;br /&gt;
== Building Stellarium itself ==&lt;br /&gt;
&lt;br /&gt;
Create a build directory with your favorite shell (the following directory is just an example, you can pick any name and path you want)&lt;br /&gt;
&lt;br /&gt;
 $ mkdir ~/Development&lt;br /&gt;
 $ cd ~/Development&lt;br /&gt;
&lt;br /&gt;
=== Getting Stellarium source code ===&lt;br /&gt;
&lt;br /&gt;
In that directory checkout the sources with the bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr branch lp:stellarium stellarium&lt;br /&gt;
&lt;br /&gt;
For more details, see [[Bzr checkout|the Bazaar checkout instructions]].&lt;br /&gt;
&lt;br /&gt;
If you have already done it once, you have just to update your copy using this bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr pull&lt;br /&gt;
&lt;br /&gt;
=== Time to compile Stellarium ===&lt;br /&gt;
&lt;br /&gt;
We setup the build directory&lt;br /&gt;
&lt;br /&gt;
 $ cd stellarium &lt;br /&gt;
 $ mkdir -p builds/macosx&lt;br /&gt;
 $ cd builds/macosx&lt;br /&gt;
&lt;br /&gt;
[[Configuring Build Options|We run cmake]]&amp;lt;ref&amp;gt;If you've installed the Qt Creator dmg instead of the Qt Libraries, cmake will complain that it can't find Qt and you'll have to pass as an option the location of your QtSDK installation, e.g.&lt;br /&gt;
 $ cmake -DQT_QMAKE_EXECUTABLE=~/Development/QtSDK/Desktop/Qt/4.8.2/gcc/bin/qmake ../..&lt;br /&gt;
Other things will later go wrong too, especially when making the application bundle.&lt;br /&gt;
&amp;lt;/ref&amp;gt;...&lt;br /&gt;
&lt;br /&gt;
 $ cmake ../..&lt;br /&gt;
&lt;br /&gt;
... and compile&lt;br /&gt;
&lt;br /&gt;
 $ make&lt;br /&gt;
&lt;br /&gt;
== Packaging ==&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT''': you should delete or move aside the old Stellarium.app before each new build:&lt;br /&gt;
&lt;br /&gt;
 $ rm -r Stellarium.app/&lt;br /&gt;
&lt;br /&gt;
Then make the Mac OS X application:&lt;br /&gt;
&lt;br /&gt;
 $ make install&lt;br /&gt;
 $ make macosx_bundle&lt;br /&gt;
&lt;br /&gt;
The macosx_bundle target includes a perl script that makes use of otool and install_name_tool to:&lt;br /&gt;
&lt;br /&gt;
# read the link dependencies of Stellarium.app/Contents/MacOS/stellarium&lt;br /&gt;
# copy those dependencies into the app (.frameworks and .dylibs)&lt;br /&gt;
# recurse on those copied-in dependencies, stopping at a point where system libraries are called for&lt;br /&gt;
&lt;br /&gt;
== We recommend Qt Creator ==&lt;br /&gt;
&lt;br /&gt;
The core group of developers of stellarium uses QtCreator as main IDE, its integration with Qt and the possibility of having a consistent tool through different platforms makes it the most suitable option for our goals.&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
All kinds of things might go wrong!  &lt;br /&gt;
&lt;br /&gt;
We will write here the most frequent problems and the possible solutions found by the developers. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Paysages</id>
		<title>Paysages</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Paysages"/>
				<updated>2012-12-29T16:38:13Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: End of adaptation to current version of Stellarium&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Installation de paysages ==&lt;br /&gt;
&lt;br /&gt;
Après avoir [[Landscapes#User contributed landscapes (by continent)|téléchargé sur votre ordinateur]] un des paysages de [[Landscapes|cette page]] (en format ZIP), il vous reste à l'installer dans Stellarium.&lt;br /&gt;
&lt;br /&gt;
=== Installation automatique ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;http://www.stellarium.org/wikiimg/stellarium-0-11-1/add-remove-landscapes-button.png&amp;lt;/div&amp;gt;&lt;br /&gt;
Si vous avez Stellarium 0.10.6 ou une version ultérieure, vous pouvez utiliser l'interface graphique pour installer des paysages automatiquement :&lt;br /&gt;
# Ouvrir la fenêtre de configuration de l'affichage en cliquant sur le bouton correspondant dans la barre des boutons de gauche ou presser sur la touche F3.&lt;br /&gt;
# Cliquer sur l'onglet &amp;quot;Paysage&amp;quot;.&lt;br /&gt;
# Cliquer sur le bouton &amp;quot;Ajouter/supprimer des paysages...&amp;quot; au bas de la fenêtre. Une nouvelle fenêtre &amp;quot;Ajouter/supprimer des paysages&amp;quot; s'ouvre.&lt;br /&gt;
# Cliquer sur le bouton &amp;quot;Installer un paysage à partir d'un fichier ZIP&amp;quot; et sélectionner le fichier &amp;lt;tt&amp;gt;.zip&amp;lt;/tt&amp;gt; que vous avez téléchargé. Cette fenêtre donne également la liste des paysages que vous avez déjà installés et vous permet de les supprimer.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;align:center&amp;quot;&amp;gt;http://www.stellarium.org/wikiimg/stellarium-0-11-1/add-remove-landscapes-window.png&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Installation manuelle ===&lt;br /&gt;
&lt;br /&gt;
Si vous utilisez une version antérieure de Stellarium, vous pouvez suivre les instructions ci-dessous pour installer manuellement un paysage.&lt;br /&gt;
# Identifier et ouvrir le [http://www.stellarium.org/doc/head/fileStructure.html dossier de données de l'utilisateur]. L'emplacement et le nom de ce dossier dépend du système d'exploitation. Par exemple, pour l'ouvrir dans Windows Vista/7, taper %appdata%\stellarium dans la barre de navigation de l'Explorateur. Dans Mac OS X, ouvrir le dossier Bibliothèque -&amp;gt; Application Support -&amp;gt; Stellarium.&lt;br /&gt;
# Créer dans ce dossier un nouveau dossier ''landscapes'' (s'il n'existe pas déjà).&lt;br /&gt;
# Décompresser le fichier .zip du paysage dans ce dossier ''landscapes''. Si vous avez fait cette opération correctement, un sous-dossier sera créé pour chaque nouveau paysage.&lt;br /&gt;
# Lancer Stellarium et sélectionner votre paysage dans l'onglet &amp;quot;Paysage&amp;quot; de la fenêtre de configuration de l'affichage (voir ci-dessus).&lt;br /&gt;
&lt;br /&gt;
Remarque : les anciennes versions de Stellarium (antérieures à la version 0.9.0) utilisaient pour les paysages un mécanisme différent. Une liste de paysages pour ces versions est disponible [[Paysages pre 0.9.0|ici]].&lt;br /&gt;
&lt;br /&gt;
== Paysages proposés par des utilisateurs ==&lt;br /&gt;
&lt;br /&gt;
La [[Landscapes#User contributed landscapes (by continent)|page des paysages (en anglais)]] fournit une liste de paysages de divers contributeurs, que vous pouvez télécharger pour les installer dans votre Stellarium.&lt;br /&gt;
&lt;br /&gt;
[[category:Paysages]]&lt;br /&gt;
[[category:Customization]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Paysages</id>
		<title>Paysages</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Paysages"/>
				<updated>2012-12-29T16:29:31Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: /* Installation de paysages */ Adaptation à la version actuelle&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Installation de paysages ==&lt;br /&gt;
&lt;br /&gt;
Une fois un des paysages de cette page téléchargé (en format ZIP), il vous reste à l'installer dans Stellarium.&lt;br /&gt;
&lt;br /&gt;
=== Installation automatique ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;http://www.stellarium.org/wikiimg/stellarium-0-11-1/add-remove-landscapes-button.png&amp;lt;/div&amp;gt;&lt;br /&gt;
Si vous avez Stellarium 0.10.6 ou une version ultérieure, vous pouvez utiliser l'interface graphique pour installer des paysages automatiquement :&lt;br /&gt;
# Ouvrir la fenêtre de configuration de l'affichage en cliquant sur le bouton correspondant dans la barre des boutons de gauche ou presser sur la touche F3.&lt;br /&gt;
# Cliquer sur l'onglet &amp;quot;Paysage&amp;quot;.&lt;br /&gt;
# Cliquer sur le bouton &amp;quot;Ajouter/supprimer des paysages...&amp;quot; au bas de la fenêtre. Une nouvelle fenêtre &amp;quot;Ajouter/supprimer des paysages&amp;quot; s'ouvre.&lt;br /&gt;
# Cliquer sur le bouton &amp;quot;Installer un paysage à partir d'un fichier ZIP&amp;quot; et sélectionner le fichier &amp;lt;tt&amp;gt;.zip&amp;lt;/tt&amp;gt; que vous avez téléchargé. Cette fenêtre donne également la liste des paysages que vous avez déjà installés et vous permet de les supprimer.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;align:center&amp;quot;&amp;gt;http://www.stellarium.org/wikiimg/stellarium-0-11-1/add-remove-landscapes-window.png&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Installation manuelle ===&lt;br /&gt;
&lt;br /&gt;
Si vous utilisez une version antérieure de Stellarium, vous pouvez suivre les instructions ci-dessous pour installer manuellement un paysage.&lt;br /&gt;
# Identifier et ouvrir le [http://www.stellarium.org/doc/head/fileStructure.html dossier de données de l'utilisateur]. L'emplacement et le nom de ce dossier dépend du système d'exploitation. Par exemple, pour l'ouvrir dans Windows Vista/7, taper %appdata%\stellarium dans la barre de navigation de l'Explorateur. Dans Mac OS X, ouvrir le dossier Bibliothèque -&amp;gt; Application Support -&amp;gt; Stellarium.&lt;br /&gt;
# Créer dans ce dossier un nouveau dossier ''landscapes'' (s'il n'existe pas déjà).&lt;br /&gt;
# Décompresser le fichier .zip du paysage dans ce dossier ''landscapes''. Si vous avez fait cette opération correctement, un sous-dossier sera créé pour chaque nouveau paysage.&lt;br /&gt;
# Lancer Stellarium et sélectionner votre paysage dans l'onglet &amp;quot;Paysage&amp;quot; de la fenêtre de configuration de l'affichage (voir ci-dessus).&lt;br /&gt;
&lt;br /&gt;
Remarque : les anciennes versions de Stellarium (antérieures à la version 0.9.0) utilisaient pour les paysages un mécanisme différent. Une liste de paysages pour ces versions est disponible [[Paysages pre 0.9.0|ici]].&lt;br /&gt;
&lt;br /&gt;
=Telechargement=&lt;br /&gt;
&lt;br /&gt;
==Paul Bourke - Landscape Collection==&lt;br /&gt;
{|&lt;br /&gt;
|http://www.stellarium.org/wikiimg/landscapes/bourke.jpg&lt;br /&gt;
|Paul Bourke a rassemblé plusieurs paysages à [http://astronomy.swin.edu.au/~pbourke/projection/stellarium/ cette page].  Les endroits incluent l'Australie, Cambodge et Inde. Ils sont en 360°fisheye ainsi vous pourrez voire entièrement le ciel ou la terre.&lt;br /&gt;
|}&lt;br /&gt;
===Telechargement===&lt;br /&gt;
Sauvegarder les paysages depuis la page web de Paul Bourke&lt;br /&gt;
===Installation===&lt;br /&gt;
#Copier le fichier paysages dans le dossier &amp;lt;config root&amp;gt;/textures/landscapes&lt;br /&gt;
#Editer le fichier &amp;lt;code&amp;gt;landscapes.ini&amp;lt;/code&amp;gt; (&amp;lt;config root&amp;gt;/data/landscapes.ini), ajouter des sections comme elles apparaissent sur la page Web de Paul.&lt;br /&gt;
&lt;br /&gt;
==Barry Gerdes - Beaumont Hills, Sydney, Australia==&lt;br /&gt;
{|&lt;br /&gt;
| http://www.stellarium.org/wikiimg/landscapes/beaumont-hills.jpg&lt;br /&gt;
| Barry a fait un paysage intéressant avec de multiple-image à partir du dessus du toit de sa maison. Vous pouvez trouver un compte détaillé de la façon dont ceci a été fait sur [http://www.porpoisehead.net/mysw/stellarium_user_guide_html-0.8.0-1/node56.html Stellarium User Guide].&lt;br /&gt;
|}&lt;br /&gt;
===Telechargement=== &lt;br /&gt;
&lt;br /&gt;
*[http://www.porpoisehead.net/mysw/downloads/landscape_beaumonthills.zip landscape_beaumonthills.zip] (miroir)&lt;br /&gt;
&lt;br /&gt;
===Installation=== &lt;br /&gt;
Pour '''Stellarium version 0.7.1''': &lt;br /&gt;
#dézipper le fichier téléchargé&lt;br /&gt;
#Copier le fichier .png dans le dossier &amp;lt;config root&amp;gt;/textures/landscapes&lt;br /&gt;
#Copier le fichier &amp;lt;code&amp;gt;landscapes.ini&amp;lt;/code&amp;gt; dans le dossier &amp;lt;config root&amp;gt;/data directory (remplacer l'original).  Si vous avez déjà modifié &amp;lt;code&amp;gt;landscapes.ini&amp;lt;/code&amp;gt;, copier coller la section [Beaumonthills] à la fin du fichier.&lt;br /&gt;
Pour '''Stellarium version 0.8.1''':&lt;br /&gt;
#dézipper le fichier téléchargé&lt;br /&gt;
#Copier le fichier .png dans le dossier &amp;lt;config root&amp;gt;/textures/landscapes&lt;br /&gt;
#Ajouter cette section dans le fichier &amp;lt;config root&amp;gt;/data/landscapes.ini&lt;br /&gt;
 [Beaumonthills]&lt;br /&gt;
 name = beaumont&lt;br /&gt;
 Author = B.Gerdes&lt;br /&gt;
 description = Local Site Panorama&lt;br /&gt;
 type = old_style&lt;br /&gt;
 nbsidetex = 10&lt;br /&gt;
 tex0 = landscapes/beau1.png&lt;br /&gt;
 tex1 = landscapes/beau2.png&lt;br /&gt;
 tex2 = landscapes/beau3.png&lt;br /&gt;
 tex3 = landscapes/beau4.png&lt;br /&gt;
 tex4 = landscapes/beau5.png&lt;br /&gt;
 tex5 = landscapes/beau6.png&lt;br /&gt;
 tex6 = landscapes/beau7.png&lt;br /&gt;
 tex7 = landscapes/beau8.png&lt;br /&gt;
 tex8 = landscapes/beau9.png&lt;br /&gt;
 tex9 = landscapes/beau10.png&lt;br /&gt;
 nbside = 10&lt;br /&gt;
 side0 = tex8:0:0.005:1:1&lt;br /&gt;
 side1 = tex9:0:0.005:1:1&lt;br /&gt;
 side2 = tex0:0:0.005:1:1&lt;br /&gt;
 side3 = tex1:0:0.005:1:1&lt;br /&gt;
 side4 = tex2:0:0.005:1:1&lt;br /&gt;
 side5 = tex3:0:0.005:1:1&lt;br /&gt;
 side6 = tex4:0:0.005:1:1&lt;br /&gt;
 side7 = tex5:0:0.005:1:1&lt;br /&gt;
 side8 = tex6:0:0.005:1:1&lt;br /&gt;
 side9 = tex7:0:0.005:1:1&lt;br /&gt;
 groundtex = landscapes/beaub.png&lt;br /&gt;
 ground = groundtex:0:0:1:1&lt;br /&gt;
 fogtex = fog.png&lt;br /&gt;
 fog = fogtex:0:0:1:1&lt;br /&gt;
 nb_decor_repeat = 1&lt;br /&gt;
 decor_alt_angle = 35&lt;br /&gt;
 decor_angle_shift = -22&lt;br /&gt;
 decor_angle_rotatez = -29&lt;br /&gt;
 ground_angle_shift = -22&lt;br /&gt;
 ground_angle_rotatez = 95&lt;br /&gt;
 fog_alt_angle = 20&lt;br /&gt;
 fog_angle_shift = -3&lt;br /&gt;
 draw_ground_first = 1&lt;br /&gt;
&lt;br /&gt;
=Contributions=&lt;br /&gt;
Sentez-vous libre et vous pouvez contribuer en nous donnant vos propres paysages. Un onglet sera ajouté par quelqu'un de l'équipe.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Besoin d'un hébergeur ?==&lt;br /&gt;
Si vous avez un paysage que vous voudriez partager mais vous n'avez pas d'hébergeur, [[utilisateur : matthewg42|envoyez-moi]] un courriel, je le mettrais sur [http://porpoisehead.net/ mon site].&lt;br /&gt;
&lt;br /&gt;
==Outils==&lt;br /&gt;
Les outils suivants peuvent être utile pour créer vos propres paysages:&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=2 border=1&lt;br /&gt;
| width=15% | '''Programme''' || width=20% | '''Plateforme(s)''' || width=15% | '''Licence''' || width=40% | '''Notes''' &lt;br /&gt;
|-&lt;br /&gt;
||[http://www.cs.ubc.ca/~mbrown/autostitch/autostitch.html Autostitch] &lt;br /&gt;
|| win32; Linux (utilisez wine) &lt;br /&gt;
|| Shareware/demo &lt;br /&gt;
|| Produit de bons résultats.  La version enregistrée inclut des types supplémentaires de projection.  Pas de code source.&lt;br /&gt;
|-&lt;br /&gt;
||[http://hugin.sourceforge.net/ Hugin] &lt;br /&gt;
|| Linux; FreeBSD; MacOSX; win32&lt;br /&gt;
|| GPL&lt;br /&gt;
|| Hugin est un GUI intéressant pour des outils de panorama.&lt;br /&gt;
|-&lt;br /&gt;
||[http://webuser.fh-furtwangen.de/~dersch/ Panorama Tools]&lt;br /&gt;
|| Linux; FreeBSD; MacOSX; win32&lt;br /&gt;
|| GPL&lt;br /&gt;
||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
[[category:Paysages]][[category:Customization]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Paysages_pre_0.9.0</id>
		<title>Paysages pre 0.9.0</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Paysages_pre_0.9.0"/>
				<updated>2012-12-29T16:28:44Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: Created page with &amp;quot;=Notes générales sur l'installation de nouveaux paysages= Des instructions spécifiques sont données pour chaque paysages.  #Copier un ou plusieurs fichiers .png dans un do...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Notes générales sur l'installation de nouveaux paysages=&lt;br /&gt;
Des instructions spécifiques sont données pour chaque paysages. &lt;br /&gt;
#Copier un ou plusieurs fichiers .png dans un dossier&lt;br /&gt;
#Editer le fichier &amp;lt;code&amp;gt;landscape.ini&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Les instructions pour chaque paysages mentionnent le dossier &amp;quot;config root&amp;quot;. Pour trouver plus de détails :[http://www.porpoisehead.net/mysw/stellarium_user_guide_html-0.8.0-1/node29.html ici].&lt;br /&gt;
&lt;br /&gt;
Après installation d'un nouveau paysage, vous devrez redémarrer Stellarium pour que les changements prennent effets.&lt;br /&gt;
Si tout se passe bien, vous devriez voir une nouvelle section dans la fenêtres de configuration sous paysage.&lt;br /&gt;
&lt;br /&gt;
Plus d'informations sur les manières de créer de nouveaux paysages:&lt;br /&gt;
[http://www.porpoisehead.net/mysw/stellarium_user_guide_html-0.8.0-1/node41.html user guide].&lt;br /&gt;
&lt;br /&gt;
=Telechargement=&lt;br /&gt;
&lt;br /&gt;
==Paul Bourke - Landscape Collection==&lt;br /&gt;
{|&lt;br /&gt;
|http://www.stellarium.org/wikiimg/landscapes/bourke.jpg&lt;br /&gt;
|Paul Bourke a rassemblé plusieurs paysages à [http://astronomy.swin.edu.au/~pbourke/projection/stellarium/ cette page].  Les endroits incluent l'Australie, Cambodge et Inde. Ils sont en 360°fisheye ainsi vous pourrez voire entièrement le ciel ou la terre.&lt;br /&gt;
|}&lt;br /&gt;
===Telechargement===&lt;br /&gt;
Sauvegarder les paysages depuis la page web de Paul Bourke&lt;br /&gt;
===Installation===&lt;br /&gt;
#Copier le fichier paysages dans le dossier &amp;lt;config root&amp;gt;/textures/landscapes&lt;br /&gt;
#Editer le fichier &amp;lt;code&amp;gt;landscapes.ini&amp;lt;/code&amp;gt; (&amp;lt;config root&amp;gt;/data/landscapes.ini), ajouter des sections comme elles apparaissent sur la page Web de Paul.&lt;br /&gt;
&lt;br /&gt;
==Barry Gerdes - Beaumont Hills, Sydney, Australia==&lt;br /&gt;
{|&lt;br /&gt;
| http://www.stellarium.org/wikiimg/landscapes/beaumont-hills.jpg&lt;br /&gt;
| Barry a fait un paysage intéressant avec de multiple-image à partir du dessus du toit de sa maison. Vous pouvez trouver un compte détaillé de la façon dont ceci a été fait sur [http://www.porpoisehead.net/mysw/stellarium_user_guide_html-0.8.0-1/node56.html Stellarium User Guide].&lt;br /&gt;
|}&lt;br /&gt;
===Telechargement=== &lt;br /&gt;
&lt;br /&gt;
*[http://www.porpoisehead.net/mysw/downloads/landscape_beaumonthills.zip landscape_beaumonthills.zip] (miroir)&lt;br /&gt;
&lt;br /&gt;
===Installation=== &lt;br /&gt;
Pour '''Stellarium version 0.7.1''': &lt;br /&gt;
#dézipper le fichier téléchargé&lt;br /&gt;
#Copier le fichier .png dans le dossier &amp;lt;config root&amp;gt;/textures/landscapes&lt;br /&gt;
#Copier le fichier &amp;lt;code&amp;gt;landscapes.ini&amp;lt;/code&amp;gt; dans le dossier &amp;lt;config root&amp;gt;/data directory (remplacer l'original).  Si vous avez déjà modifié &amp;lt;code&amp;gt;landscapes.ini&amp;lt;/code&amp;gt;, copier coller la section [Beaumonthills] à la fin du fichier.&lt;br /&gt;
Pour '''Stellarium version 0.8.1''':&lt;br /&gt;
#dézipper le fichier téléchargé&lt;br /&gt;
#Copier le fichier .png dans le dossier &amp;lt;config root&amp;gt;/textures/landscapes&lt;br /&gt;
#Ajouter cette section dans le fichier &amp;lt;config root&amp;gt;/data/landscapes.ini&lt;br /&gt;
 [Beaumonthills]&lt;br /&gt;
 name = beaumont&lt;br /&gt;
 Author = B.Gerdes&lt;br /&gt;
 description = Local Site Panorama&lt;br /&gt;
 type = old_style&lt;br /&gt;
 nbsidetex = 10&lt;br /&gt;
 tex0 = landscapes/beau1.png&lt;br /&gt;
 tex1 = landscapes/beau2.png&lt;br /&gt;
 tex2 = landscapes/beau3.png&lt;br /&gt;
 tex3 = landscapes/beau4.png&lt;br /&gt;
 tex4 = landscapes/beau5.png&lt;br /&gt;
 tex5 = landscapes/beau6.png&lt;br /&gt;
 tex6 = landscapes/beau7.png&lt;br /&gt;
 tex7 = landscapes/beau8.png&lt;br /&gt;
 tex8 = landscapes/beau9.png&lt;br /&gt;
 tex9 = landscapes/beau10.png&lt;br /&gt;
 nbside = 10&lt;br /&gt;
 side0 = tex8:0:0.005:1:1&lt;br /&gt;
 side1 = tex9:0:0.005:1:1&lt;br /&gt;
 side2 = tex0:0:0.005:1:1&lt;br /&gt;
 side3 = tex1:0:0.005:1:1&lt;br /&gt;
 side4 = tex2:0:0.005:1:1&lt;br /&gt;
 side5 = tex3:0:0.005:1:1&lt;br /&gt;
 side6 = tex4:0:0.005:1:1&lt;br /&gt;
 side7 = tex5:0:0.005:1:1&lt;br /&gt;
 side8 = tex6:0:0.005:1:1&lt;br /&gt;
 side9 = tex7:0:0.005:1:1&lt;br /&gt;
 groundtex = landscapes/beaub.png&lt;br /&gt;
 ground = groundtex:0:0:1:1&lt;br /&gt;
 fogtex = fog.png&lt;br /&gt;
 fog = fogtex:0:0:1:1&lt;br /&gt;
 nb_decor_repeat = 1&lt;br /&gt;
 decor_alt_angle = 35&lt;br /&gt;
 decor_angle_shift = -22&lt;br /&gt;
 decor_angle_rotatez = -29&lt;br /&gt;
 ground_angle_shift = -22&lt;br /&gt;
 ground_angle_rotatez = 95&lt;br /&gt;
 fog_alt_angle = 20&lt;br /&gt;
 fog_angle_shift = -3&lt;br /&gt;
 draw_ground_first = 1&lt;br /&gt;
&lt;br /&gt;
=Contributions=&lt;br /&gt;
Sentez-vous libre et vous pouvez contribuer en nous donnant vos propres paysages. Un onglet sera ajouté par quelqu'un de l'équipe.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Besoin d'un hébergeur ?==&lt;br /&gt;
Si vous avez un paysage que vous voudriez partager mais vous n'avez pas d'hébergeur, [[utilisateur : matthewg42|envoyez-moi]] un courriel, je le mettrais sur [http://porpoisehead.net/ mon site].&lt;br /&gt;
&lt;br /&gt;
==Outils==&lt;br /&gt;
Les outils suivants peuvent être utile pour créer vos propres paysages:&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=2 border=1&lt;br /&gt;
| width=15% | '''Programme''' || width=20% | '''Plateforme(s)''' || width=15% | '''Licence''' || width=40% | '''Notes''' &lt;br /&gt;
|-&lt;br /&gt;
||[http://www.cs.ubc.ca/~mbrown/autostitch/autostitch.html Autostitch] &lt;br /&gt;
|| win32; Linux (utilisez wine) &lt;br /&gt;
|| Shareware/demo &lt;br /&gt;
|| Produit de bons résultats.  La version enregistrée inclut des types supplémentaires de projection.  Pas de code source.&lt;br /&gt;
|-&lt;br /&gt;
||[http://hugin.sourceforge.net/ Hugin] &lt;br /&gt;
|| Linux; FreeBSD; MacOSX; win32&lt;br /&gt;
|| GPL&lt;br /&gt;
|| Hugin est un GUI intéressant pour des outils de panorama.&lt;br /&gt;
|-&lt;br /&gt;
||[http://webuser.fh-furtwangen.de/~dersch/ Panorama Tools]&lt;br /&gt;
|| Linux; FreeBSD; MacOSX; win32&lt;br /&gt;
|| GPL&lt;br /&gt;
||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
[[category:Paysages]][[category:Customization]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Landscapes</id>
		<title>Landscapes</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Landscapes"/>
				<updated>2012-12-28T10:59:53Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: /* Europe */ Added oldstyle format landscape for Ependes observatory, Switzerland&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==How to install landscapes==&lt;br /&gt;
After you have downloaded the .zip file for a landscape from this page, you need to install it in Stellarium.&lt;br /&gt;
&lt;br /&gt;
===Automatic===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;http://www.stellarium.org/wikiimg/stellarium-0-11-1/add-remove-landscapes-button.png&amp;lt;/div&amp;gt;&lt;br /&gt;
If you have Stellarium 0.10.6 or later version, you can use the &amp;quot;Add/remove landscapes&amp;quot; feature to install landscapes automatically:&lt;br /&gt;
*Open the &amp;quot;Sky and viewing options&amp;quot; window by clicking on the appropriate button in the left button bar (or press the F4 key).&lt;br /&gt;
*The &amp;quot;Add/remove landscapes&amp;quot; button is at the bottom of the &amp;quot;Landscape&amp;quot; tab.&lt;br /&gt;
*When you press it, the &amp;quot;Add/remove landscapes&amp;quot; window will appear. It allows you to install &amp;lt;tt&amp;gt;.zip&amp;lt;/tt&amp;gt; files containing landscapes. It also lists the user-installed landscapes and allows you to remove them.&lt;br /&gt;
&lt;br /&gt;
Note that while this makes installing landscapes easier, it may also cause you to overlook what else is included in the ZIP archive. Landscape packages created without this feature in mind may contain other files, such as alternative textures in different sizes.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;align:center&amp;quot;&amp;gt;http://www.stellarium.org/wikiimg/stellarium-0-11-1/add-remove-landscapes-window.png&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Manual===&lt;br /&gt;
If you are using an earlier version of Stellarium, you can follow this procedure to install a landscape package:&lt;br /&gt;
#Browse to your [[User Data Directory]], which varies according to your operating system. (eg. in Windows Vista/7 enter  %appdata%\stellarium in Explorer's location bar )&lt;br /&gt;
#Create a sub-directory called ''landscapes'' in your user directory (if it doesn't exist).&lt;br /&gt;
#Unzip the landscape .zip file in the ''landscapes'' directory (if it's done right, a sub-directory should be created for each landscape).&lt;br /&gt;
&lt;br /&gt;
NOTE: Older version of Stellarium (prior to v0.9.0) used a slightly different mechanism for doing landscapes. You can find a list of the old landscapes [[Landscapes pre 0.9.0|here]].&lt;br /&gt;
&lt;br /&gt;
Since version 0.10.5 Stellarium has problems in correctly loading old style landscapes (multi panel) if they are not 8 or 16 panel panoramas. Some old 4,7,9 qnd 10 side panoramas converted into 8 ides can be found here &lt;br /&gt;
*[http://sarcasmogerdes.dyndns.org/stellarium/uploads/wiruna-field.zip] (Wiruna field Barry's site)&lt;br /&gt;
*[http://sarcasmogerdes.dyndns.org/stellarium/uploads/egarden-new.zip] (Egarden 8 panel Barry's site)&lt;br /&gt;
*[http://sarcasmogerdes.dyndns.org/stellarium/uploads/neven-new.zip] (Como area Sydney Barry's site)&lt;br /&gt;
&lt;br /&gt;
==User contributed landscapes (by continent)==&lt;br /&gt;
We have landscapes for the seven continents (in the [http://en.wikipedia.org/wiki/Continent seven continent model]) - all, including from Antarctica !&lt;br /&gt;
===Interplanetary===&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/husband-hill.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_mars_husband_hill.zip|name=Husband Hill, Mars|author=Johan|license=Public Domain|compat=0.9.x|description=Johan transformed this Mars image from NASA into a spherical panorama that can be used with Stellarium.  Mars rover Spirit made this image during August 24 to 27, 2005. Image credit: NASA/JPL-Caltech/Cornell. Read more on [http://marsrovers.nasa.gov/gallery/panoramas/spirit/2005.html this webpage].}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/landscape_marsopportunity_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_mars_opportunity_rover.zip|name=Mars Opportunity Rover|author=Mike|license=Public Domain|compat=0.9.x|description=Mike sent posted this landscape in the forums.  Another nice Mars rover landscape.}}&lt;br /&gt;
 &lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_iss_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_iss.zip|name=International Space Station|author=Makc|license=GPL|compat=0.9.x|description=Landscape made using some screen shots and data from the wonderful [http://www.shatters.net/celestia/ Celestia].  Set the projection mode to stereographic, zoom out to a wide field of view and point down towards the ground to get the nice rounded &amp;quot;planet&amp;quot; effect.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_apollo_11_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_apollo_11.zip|name=Apollo 11 landing site|author=Mathew Myrup|compat=0.9.x|description=This landscape is made using NASA photographs taken by Buzz Aldrin. Look down and you can see Buzz's footprints :)}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_apollo_17_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_apollo_17.zip|name=Apollo 17 landing site|author=Mathew Myrup|compat=0.9.x|description=This landscape is made using NASA photographs taken by Gene Cernan.}}&lt;br /&gt;
&lt;br /&gt;
===Africa===&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/idehan.jpg|url=http://soyouzworld.free.fr/landscape/idehan.zip|name=Idehan Ubari, Libya|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|compat=0.10.x|description=This is a panoramic view of the desert of Idehan Ubari in Libya.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/leptis.jpg|url=http://soyouzworld.free.fr/landscape/leptis.zip|name=Leptis Magna, Libya|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|compat=0.10.x|description=This is a panoramic view of the theatre of the Roman city of Leptis Magna. This site is part of [http://whc.unesco.org/en/list/183 UNESCO World Heritage].}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/sahara.jpg|url=http://soyouzworld.free.fr/landscape/sahara.zip|name=Sahara, Libya|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|compat=0.10.x|description=This is a panoramic view from somewhere in the middle of the Sahara in Libya.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/waw-al-namus.jpg|url=http://soyouzworld.free.fr/landscape/waw-al-namus.zip|name=Volcano Waw al-Namus, Libya|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|compat=0.10.x|description=This is a panoramic view of Volcano Waw al-Namus in the Sahara.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.domani.ch/masoala/en/capmasoala_thumb.jpg|url=http://www.domani.ch/masoala/en/cap_masoala.zip|name=Cap Masoala, Madagascar|author=Matthias D. Frei|license=GPLv2+|compat=0.9.x|description=This panorama was photographed from the abandoned French lighthouse at the southernmost point of the Masoala peninsula in Madagascar. It provides a spectacular view over the Indian Ocean and the Masoala peninsula that is still mainly covered with rainforest. More information about this particular place can be found  [http://www.domani.ch/masoala/en/index.html here]}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_mbabane_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_mbabane.zip|name=Mbabane, Swaziland|author=Quinton Reissmann|compat=0.9.x|description=Mbabane is the capital of the little kingdom of Swaziland. Waterford/Kamhlaba is an international school on a mountain side which prides itself in cultural diversity. In SiSwati &amp;quot;kamhlaba&amp;quot; means &amp;quot;a world in miniature&amp;quot;. The actual view is from the sports field where we usually set up the telescope.}}&lt;br /&gt;
&lt;br /&gt;
===Asia===&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_everest_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_everest.zip|name=Mount Everest|author=Makc|license=&amp;amp;copy;|compat=0.9.x|description=Amazing parorama of the summit of Mount Everest, 8.85 km above sea level.  [http://www.everestviews.com/ Roddy Mackenzie], who climbed the mountain in 1989, captured the image.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_jantar_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_jantar.zip|name=Jantar Mantar|author=Barry Perlus &amp;amp; Stellarium team|license=CC BY-NC-SA 3.0|compat=0.9.x|description=Professor Barry Perlus of Cornell University allowed us to use his panoramic photography of one of the Jantar Mantars in India to create this landscape.  For more information on these fascinating scientific and architectural works see [http://jantarmantar.org/ jantarmantar.org].}}&lt;br /&gt;
&lt;br /&gt;
===Australasia===&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/beaumont-hills.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_beaumont_hills.zip|name=Beaumont Hills, Sydney, Australia|author=Barry Gerdes|license=GPLv2+|compat=0.9.x|description=Barry made an interesting multiple-image landscape from the rooftop of his house. You can find a detailed account of how this was done in the [http://porpoisehead.net/mysw/stellarium_user_guide_html-0.9.0-1/#SECTION001100000000000000000 Stellarium User Guide].}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/transit-hill.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_transit_hill.zip|name=Transit Hill, Lord Howe Island, Australia|author=Graeme Ewing|compat=0.9.x|description=Graeme Ewing Contributed this panorama of the astronomically significant and visually stunning Transit Hill site Northeast of Sydney, Australia. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_penneshaw_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_penneshaw.zip|name=Penneshaw, Kangaroo Island, Australia|author=Clive Nelson|compat=0.9.x|description=Penneshaw is a small township at the Northwest end of Kangaroo Island, off the coast of South Australia. In the north is the entrance to Gulf St Vincent and the Australian mainland. In the east is the Penneshaw township, To the west, on the horizon, is Kingscote, the main town on Kangaroo Island.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_largsbay_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_largsbay.zip|name=Largs Bay in South Australia|author=Martin Lewicki|license=GPL|compat=0.9.x|description=Panoramic view of Largs Bay in South Australia 8 panel old style landscape. Largs Pier Hotel facade in SSE and Largs Bay Sailing Club due east. Jetty extends to Gulf St Vincent to the west.}}&lt;br /&gt;
&lt;br /&gt;
===Europe===&lt;br /&gt;
{{Package|image=https://raw.github.com/martignoni/ependes-landscape/master/ependes-thumbnail.png|url=https://github.com/martignoni/ependes-landscape/raw/master/ependes.zip|name=Épendes Observatory, Fribourg, Switzerland|author=[http://www.stellarium.org/wiki/index.php/User:Mina Nicolas Martignoni]|license=CC BY-NC-SA 3.0|compat=0.10.x|description=The [http://www.observatoire-naef.ch/ Épendes Observatory] ([http://toolserver.org/~geohack/geohack.php?params=46.76236_N_7.13938_E 46°45′45″N 7°08′22″E]) is located near the city of Fribourg, Switzerland. The images for this landscape were taken in August 2006. The landscape comes in three resolutions (1024 / 2048 / 4096). File size is about 2.4 MB.&lt;br /&gt;
&lt;br /&gt;
'''Note:''' If you have problems with this landscape (landscape doesn't appear because of low memory on the graphic chip), use the corresponding ''old style'' landscape below or use a smaller resolution (see the README file in the package).}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=https://raw.github.com/martignoni/ependes-oldstyle-landscape/master/ependes-thumbnail.png|url=https://github.com/martignoni/ependes-oldstyle-landscape/raw/master/ependes-oldstyle.zip|name=Épendes Observatory, Fribourg, Switzerland|author=[http://www.stellarium.org/wiki/index.php/User:Mina Nicolas Martignoni]|license=CC BY-NC-SA 3.0|compat=0.10.x|description=The [http://www.observatoire-naef.ch/ Épendes Observatory] ([http://toolserver.org/~geohack/geohack.php?params=46.76236_N_7.13938_E 46°45′45″N 7°08′22″E]) is located near the city of Fribourg, Switzerland. The images for this landscape were taken in August 2006. This landscape (''old style'' format) is intended to be use on older configurations, where spherical landscape (above) doesn't appear because of low memory on the graphic chip. File size is about 2.4 MB.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://michael.nadev.net/pub/wurania.png|url=http://michael.nadev.net/pub/wurania.zip|name=Urania Observatory, Vienna, Austria|author=Michael Prokosch|license=CC BY-ND 3.0|compat=0.9.x|description=The [http://www.astronomie-wien.at/astronomie_urania.html Urania Observatory] (48°12′41.88″N 16°23′1.53″E) is located right in the middle of the city of Vienna, capital of Austria. Built in 1910 under emporer Franz Joseph I. it's the countries oldest non-scientifical observatory still in use for people's education. This landscape was taken in August 2011. If you are not distracted by the stars, you can even see St. Stephan's cathedral, the Viennese Giant Wheel and the Danube Canal. File size is about 11.5 MB.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://perso.wanadoo.es/arias_llego/stellarium/laguardia/Thumbnail.png|url=http://perso.wanadoo.es/arias_llego/stellarium/laguardia/laguardia.zip|name=Port of La Guardia, Galicia, Spain|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=CC BY-NC-ND 3.0|compat=0.10.x|description=La Guardia is a fishing village in Galicia, in the NW. of Spain. This landscape was taken on the 19/07/2008. '''[http://perso.wanadoo.es/arias_llego/stellarium/laguardia/Port_of_La_Guardia.kmz KMZ file]'''. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/Thumbnail.png|url=http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/castrolaboreiro.zip|name=Castle of Castro Laboreiro 13th Century, Melgaço, Portugal|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=CC BY-NC-ND 3.0|compat=0.10.x|description=Castro Laboreiro is a village in Melgaço, in the NW. of Portugal. This landscape was taken on the 15/08/2010. '''[http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/Castle_of_Castro_Laboreiro.kmz Kmz file]'''. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.cestomano.com/stellarium/thumbnail.png|url=http://www.cestomano.com/stellarium/lascanadas.zip|name=Las Cañadas del Teide, Tenerife, Spain|author=[http://www.cestomano.com José Ángel Estévez]|license=|compat=0.10.x|description=This landscape of Las Cañadas was built in April 2008. It's located in the center of Tenerife island, Canary Islands. It can be viewed the Teide volcano -the highest mountain in Spain: 3.718 mts.-, El Llano de Ucanca and Los Roques de García with the characteristic rock &amp;quot;El Cinchado&amp;quot; which, with Teide Volcano, appeared in the old 1.000 ptas. bill. &lt;br /&gt;
&lt;br /&gt;
'''Note:''' If you have problems with the landscape (landscape may not appear because low memory on VGA chip), try to download and replace the PNG landscape with [http://www.cestomano.com/stellarium/peq/lascanadas.png this 50% scaled image]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.waldvogel.com/stellarium/landscape_jungfraujoch_tmb.png|url=http://www.waldvogel.com/stellarium/landscape_jungfraujoch.zip|name=Jungfraujoch High Altitude Research Station, Switzerland|author=Christian Waldvogel|license=|compat=0.10.x|description=Lying at 3580m in the Bernese Alps, the Jungfraujoch is often dubbed &amp;quot;Top of Europe&amp;quot;. It has been home to an astronomical observation station for more than 80 years. The spherical landscape was created from 20 images taken on June 29th, 2008, at 1015, from the lower terrace of the Sphinx Obervatory. The landscape comes in three resolutions (1024 / 2048 / 4096). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/San_Pietro.jpg|url=http://www.stellarium.org/files/landscapes/San_Pietro.zip|name=St Peter's Square (Vatican)|author=Gianfranco Mazzani|license=|compat=0.10.x|description=This is a complete high resolution panoramic view of the St Peter's Square, City of Vatican. &lt;br /&gt;
&lt;br /&gt;
Gianfranco Mazzani photographed this panorama in july 2004 by using a Nikon Coolpix 8700, and stitched &lt;br /&gt;
the original 10 pictures together into a spherical panorama using Hugin program. The panorama has been &lt;br /&gt;
than cutted into 8 alfa channel pictures and re-dimensioned the width to 2048 pixel and then dimensioned &lt;br /&gt;
the height to 32 cm by using Photoschop elements 2.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.waldvogel.com/stellarium/landscape_rodiano_tmb.png|url=http://www.waldvogel.com/stellarium/landscape_rodiano.zip|name=Frantoio Rodiano, Italy|author=Christian Waldvogel|license=|compat=0.10.x|description=The Frantoio Rodiano (Rodiano oil press) is situated on the foot of Mount Gargano in Puglia / Italy. Just a few kilometers uphill lies Monte Sant'Angelo, the famous stop for christian pilgrims on their way to Jerusalem. Stargazing has been kin to this region for milleniae: the oldest graves found in the Frantoio's vicinity date back to pre-etruscan times, and the famous Castel del Monte, an astronomical observation in itself, is not far either. The spherical landscape was created from 8 images taken on September 20th, 2010, at 1707, from the uppermost terrace of the Frantoio Rodiano. The landscape comes in three resolutions (1024 / 2048 / 4096). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://pano.jubila.de/stellarium/muchachos_thumb.jpg|url=http://pano.jubila.de/stellarium/muchachos.zip|name=Roque de los Muchachos, La Palma, Spain|author=Uwe Buecher|license=|compat=0.10.x|description=This high resolution landscape was built with hugin from 20 photos taken in October 2007. It is located on top of the highest mountain on La Palma, Canary Islands. You can see the Buildings of the Observatorio del Roque de los Muchachos, one of them is the Gran Telescopio Canarias (GTC) which is the greatest telescope in the world today (10.4m diameter). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_egarden_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_egarden.zip|name=English Garden, Munich, Germany|author=Rob Spearman, Johan Meuris|license=|compat=0.9.x|description=This high resolution landscape was taken in April 2007 by Rob. Johan helped with the post production.  The result is a very high quality landscape. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_egarden_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_egarden_old_style.zip|name=English Garden, Munich, Germany|author=Rob Spearman, Johan Meuris|license=|compat=0.9.x|description=The original English Garden landscape was re-constructed by Barry Gerdes as an old_style landscape.  This means that it can be used with video hardware which cannot cope with single very large texture files, and yet preserves the resolution of the landscape (by splitting the images into multiple files). Try this is the original English Garden landscapes doesn't load on your computer. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/voksenlia.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_voksenlia.zip|name=Voksenlia, Oslo, Norway|author=Steinar Midtskogen|license=|compat=0.10.x|description=Steinar Midtskogen sent [http://porpoisehead.net/mysw/downloads/voksenlia.png this huge (17 MiB!) spherical landscape image] of Voksenlia, Oslo, Norway (59°58'14N, 10°38'57E, alt=348m). (Currently not working with version 0.9.0). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/observatory-hill-Barry.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_edinburgh.zip|name=Calton Hill, Edinburgh, Scotland|author=Friedrich Noelle, Barry Gerdes|license=|compat=0.9.x|description=Friedrich Noelle took a nice panorama of Observatory Hill, Edinburgh which Barry converted into a Stellarium landscape. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/sight_thumb.jpg|url=http://www.geomancygroup.org/stella/sighthill.zip|name=Sighthill stone circle, Glasgow, Scotland|author=[http://www.geomancygroup.org Grahame Gardner]|license=|compat=0.9.x|description=Sighthill stone circle is a modern stone ring constructed in 1979 by amateur astronomer and SF writer Duncan Lunan. Located next to the M8 motorway in Glasgow city centre, yet with surprisingly good views, the circle has alignments to the solsticial solar rises and settings and the lunar standstills. Alignments to the rising of Rigel are included for 1979 AD and 1800 BC. (2MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/beech_thumb.jpg|url=http://www.geomancygroup.org/stella/beechhill.zip|name=Beech Hill stone circle, nr. Nutley, E. Sussex, England|author=[http://www.geomancygroup.org Grahame Gardner]|license=|compat=0.9.x|description=Beech Hill is a modern stone ring constructed in 2000 by Ivan McBeth and Richard Creightmore of The Geomancy Group [http://www.geomancygroup.org/ www.geomancygroup.org]. Located in the Ashdown Forest, the circle's main alignment is to the Pole Star, denoted by the angled outlier. (2.2MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/calave_tb.jpg|url=http://www.geomancygroup.org/stella/calanaisave.zip|name=Calanais I (Callanish) Avenue, Lewis, Western Isles, Scotland|author=[http://www.geomancygroup.org Grahame Gardner]|license=|compat=0.9.x|description=Callanish is arguably the finest megalithic monument in the British Isles, and is just the largest site in a vast complex of interconnected monuments designed to observe the southern major standstills of the moon. From this position at the end of the avenue, the moon is seen to set behind the rocky outcrop of Cnoc-an-Tursa, only to 're-gleam' in the centre of the main circle a short time afterwards. (4MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/machrie_tb.jpg|url=http://www.geomancygroup.org/stella/machrie5.zip|name=Machrie Moor 5, Isle of Arran, Scotland|author=[http://www.geomancygroup.org Grahame Gardner]|license=|compat=0.9.x|description=This delightful little double-concentric stone circle is the first site you come to when visiting the Machrie Moor complex of megalithic sites on Arran. Although not the most spectactular site in the group, it is one of the most complete and has good views. (7.3MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/mitchthumbnail.jpg|url=http://www.geomancygroup.org/stella/mitchell2.zip|name=Mitchell's Fold stone circle, Shropshire, England|author=[http://www.vallecrucisgrail.co.uk/ Ian Pegler]|license=|compat=0.9.x|description=This wonderful ancient stone circle stands on a plateau amid the rolling Shropshire hills and is loved by walkers, dowsers and Wiccans alike. April 2010 - new version uploaded, featuring improved centre camera position based on Alexander Thom's geometry and improved alignments. (1.8MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/aveburyn_thumb.jpg|url=http://www.geomancygroup.org/stella/aveburynorth.zip|name=Avebury - North circle, Wiltshire, England|author=[http://www.vallecrucisgrail.co.uk/ Ian Pegler]|license=|compat=0.9.x|description=The North circle of the largest megalithic complex in Europe. In the background you can just make out the Red Lion pub. (1MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/vallecrucis_thumb.jpg|url=http://www.geomancygroup.org/stella/vallecrucis.zip|name=Valle Crucis Abbey, Llangollen, North Wales|author=[http://www.vallecrucisgrail.co.uk/ Ian Pegler]|license=|compat=0.9.x|description=This ruined Cistercian abbey dates to 1200 but may be the site of a much earlier Dark Age settlement with a very early Christian church. (2.5MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/ponta-da-piedade.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_lagos.zip|name=Ponta da Piedade, Algarve, Lagos, Portugal|author=Johan|license=|compat=0.9.x|description=Johan photographed this panorama in June 2006 and stitched it together into a spherical panorama that can be used with Stellarium.  You see sandstone cliffs on the Atlantic coast of southern Portugal, a lighthouse, and a natural bridge. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/landscape_gurnigel_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_gurnigel.zip|name=Gurnigel, Switzerland|author=Martin Mutti|license=|compat=0.9.x|description=This is the site of the Bern Astronomical Society's observing site. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/tishinka-ardashev.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_tishinka.zip|name=Tishinka, Russia|author=Dmitri Ardashev|license=|compat=0.9.x|description=This is a small village between Moscow's and Kaluga's regions, in 130 km south-west of Moscow (55°18'32.46N, 36°26'42.06E, alt=195). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_t60pic_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_t60pic.zip|name=T60 dome, Pic du Midi Observatory, France|author=Sylvain Rondi|license=|compat=0.9.x|description=Sylvain photographed this panorama in February 2007 and stitched it together into a spherical panorama that can be used with Stellarium. This is the panoramic view from the amateur 60cm telescope dome from [http://astrosurf.com/t60/ T60 Association], installed at Pic du Midi Observatory. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_t1mpic_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_t1mpic.zip|name=T1M terrasse, Pic du Midi Observatory, France|author=Sylvain Rondi|license=|compat=0.9.x|description=Sylvain photographed this panorama in February 2007 and stitched it together into a spherical panorama that can be used with Stellarium. This is the panoramic view from the terrasse of the professional 106cm telescope at Pic du Midi Observatory (France). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_sheffieldrivelin_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_sheffieldrivelin.zip|name=River Rivelin, Sheffield, UK|author=Jan Wedekind|license=CC SA-2.0|compat=0.9.x|description=This is a 270° fisheye panorama created from 40 photos using Hugin. It shows the River Rivelin in Sheffield in the middle of April 2007. The fringes (twigs and tree tops) where dimmed out using The Gimp. The overexposed parts of the horizon have been removed. Copyright (C) 2007, [[User:Wedesoft|Jan Wedekind]], [http://creativecommons.org/licenses/by-sa/2.0/ Creative Commons Attribution ShareAlike License 2.0] }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_ares_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_ares.zip|name=Ares, Galicia, Spain|author=[http://www.stellarium.org/wiki/index.php/User:rcasl Rubén Castiñeiras Lorenzo]|license=|compat=0.9.x|description=Ares is a small fishing village in Galicia, in the NW of Spain, close to the city of Ferrol. The 360 degree image was taken at the noon of August 6th, 2007, just in front of the &amp;quot;Paseo Rosalía de Castro&amp;quot;. It has been made with 17 photos, stitched with Hugin 0.7 beta 4 and retouched with the Gimp 2.2.17. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_ovindoli_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_ovindoli.zip|name=Ovindoli, Italy|author=Pierluigi Panunzi|license=|compat=0.9.x|description=Ovindoli is a famous ski resort in central Italy. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/rustrel.jpg|url=http://soyouzworld.free.fr/landscape/rustrel.zip|name=Rustrel, France|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Colorado de Rustrel in &amp;quot;Les Sentiers de l'Ocre et du Fer&amp;quot;, Provence, France. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://files.myopera.com/aid85/files/host/Stintino.jpg|url=http://files.myopera.com/aid85/files/host/stintino.zip|name=Stintino, Italy|author=[http://my.opera.com/aid85 aid85]|license=|compat=0.9.x|description=High resolution 360° landscape taken at &amp;quot;LaPelosa&amp;quot; beach in Stintino (SS) Sardinia \ Italy - Europe \ Mediterranean Sea. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/vatican.jpg|url=http://soyouzworld.free.fr/landscape/vatican.zip|name=St Peter's Square, Vatican|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the St Peter's Square. City of Vatican. Some parts of the buildings are missing, not enough pictures... This site is part of [http://whc.unesco.org/en/list/286 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://files.myopera.com/aid85/files/host/Larvotto.jpg|url=http://files.myopera.com/aid85/files/host/munegu.zip|name=Munegu, MC|author=[http://my.opera.com/aid85 aid85]|license=|compat=0.9.x|description=High resolution 360° landscape taken at Larvotto beach in [http://en.wikipedia.org/wiki/Monaco Munegu \ Monaco - MC] (MonteCarlo) - Europe \ Mediterraneum Sea - Ligurian Sea. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/Bahia_de_Cadiz.jpg|url=http://www.stellarium.org/files/landscapes/Bahia_de_Cadiz.zip|name=Bahia de Cádiz, Spain|author=José Codejón|license=|compat=0.10.x|description=A new bridge is being built across de bay. The 360° panorama image was taken at noon of September 10th, 2012, from the pier of the small marina just closed to the Cadiz head of the bridge. &lt;br /&gt;
&lt;br /&gt;
The final picture is the result of stitching 11 frames, taken out of a 63 seconds full HD video, using PhotoStitch and Gimp 2.6.8. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.ticfisquim.org/astro/stellarium/thumbnails.jpg|url=http://www.ticfisquim.org/astro/stellarium/cocentaina.zip|name=Cocentaina, Spain|author=[http://www.ticfisquim.org Angel Juan Martínez]|license=|compat=0.9.x|description=This is a panoramic view from the roof of the Secondary School of Cocentaina, a little town of the Pais Valencià (Spain), in the mountains that are between Valencia and Alicante, where I teach Astronomy with the help of Stellarium. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.xs4all.nl/~adonet/stellarium/tulipfield.jpg|url=http://www.xs4all.nl/~adonet/stellarium/tulipfield.zip|name=Amstelveen, The Netherlands|author=[http://www.xs4all.nl/~adonet/stellarium/stellarium.html Jeroen Adolfse]|license=|compat=0.9.x|description=This landscape shows the tulipfields in spring (may 2008) in Schagerbrug, North Holland. It's an old_style landscape. (file is 4.5 Mb) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.didgeweb.com/stellarium/oudmeer_sample.png|url=http://www.didgeweb.com/stellarium/son_oudmeer.zip|name=Son &amp;amp;amp; Breugel, The Netherlands|author=[http://www.didgeweb.com/ Roland Mathijssen]|license=|compat=0.9.x|description=This landscape shows the Oude Meer (Old Lake) in the Sonse Heide in Son (close to Eindhoven). (file is 5.4 MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.obs-sirene.com/divers/stellarium/sirene.png|url=http://www.obs-sirene.com/divers/stellarium/sirene.zip|name=Sirene Observatory, Lagarde d'Apt (84), France|author=[http://cyprien.pouzenc.free.fr Cyprien Pouzenc]|license=|compat=0.9.x|description=Panoramic view of installations. Previously the site was used as a nuclear lauching pad. Now days, [http://www.obs-sirene.com Sirene] accepts everybody for astronomical observations. (File is 11 Mb) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.nett.is/~sveinki/stellarium/vonarskard-tn.png|url=http://www.nett.is/~sveinki/stellarium/vonarskard.zip|name=Vonarskar&amp;amp;eth;, Passage of Hope, Iceland|author=[http://www.nett.is/~sveinki/stellarium/ Sveinn &amp;amp;iacute; Felli]|license=|compat=0.9.x|description=This is the geographical center of Iceland, a barren pass between glaciers. Being sheltered from southern vinds by the huge Vatnajökull glacier, a great cold mass which then eliminates most humididy from the air, makes the place unusually good for stargazing. Old-style landscape, resolution is a bit low. (File is 1.1 Mb) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.brontovox.co.uk/Downloads/woodhenge_winter_solstice_sunset_ts.png|url=http://www.brontovox.co.uk/Downloads/woodhenge.zip|name=Woodhenge near Stonehenge|author=[http://www.brontovox.co.uk Hugo Jenks]|license=|compat=0.9.x|description=Woodhenge near Stonehenge was constructed around 2200 BC. It comprised numerous wooden posts set into the chalky ground. These posts of course decayed, and their positions today are marked with concrete cylinders. &lt;br /&gt;
&lt;br /&gt;
The posts are arranged, in plan view, as a series of concentric egg shapes. The axis of the egg shapes aligns approximately with summer solstice sunrise. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.brontovox.co.uk/Downloads/stonehenge_screenshot_st.jpg|url=http://www.brontovox.co.uk/Downloads/stonehenge.zip|name=Stonehenge|author=[http://www.brontovox.co.uk Hugo Jenks]|license=|compat=0.9.x|description=Was it an observatory? Yes indeed it was!  The alignment of the monument with the summer solstice sunrise has been well known for many years. The alignment with the winter solstice sunset may have been more significant. For the first time, many additional alignments are published, and are detailed here:  [http://www.brontovox.co.uk/ www.brontovox.co.uk] These alignments demonstrate that Stonehenge was primarily a functional scientific instrument, used for measuring angles. The angles of interest were the rising and setting bearings of the sun, moon, and stars. It was therefore possible to map the entire visible sky. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/rila.jpg|url=http://soyouzworld.free.fr/landscape/rila.zip|name=Rila Monastery, Bulgaria|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Rila Monastery in Bulgaria. This building is quite high so the sky area is not really large. This site is part of [http://whc.unesco.org/en/list/216 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://bg360.net/stellarium/silistar.jpg|url=http://bg360.net/stellarium/silistar.zip|name=Silistar, Bulgaria|author=[http://bg360.net BG360]|license=|compat=0.9.x|description=Panoramic view of the Silistar Beach in Bulgaria. See this panorama here [http://pano.bg360.net/silistar/index_en.php Flash pano]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://bg360.net/stellarium/alexandernevsky.jpg|url=http://bg360.net/stellarium/alexandernevsky.zip|name=St. Alexander Nevsky Cathedral, Sofia, Bulgaria|author=[http://bg360.net BG360]|license=|compat=0.9.x|description=Panoramic view of the Saint Alexander Nevsky Cathedral in Bulgaria. See this panorama here [http://pano.bg360.net/sofia/alexander-nevsky_en.php Flash pano]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://bg360.net/stellarium/rousse.jpg|url=http://bg360.net/stellarium/rousse.zip|name=Statue of Freedom, Rousse, Bulgaria|author=[http://bg360.net BG360]|license=|compat=0.9.x|description=Panoramic view from the center of Rousse in Bulgaria. See this panorama here [http://pano.bg360.net/ruse/pametnik-svobodata_en.php Flash pano]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/thumbnail-dm.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/dm.zip|name=Central Munich|author=Markus Dähne|license=|compat=0.9.x|description=This landscape shows the view from the Eastern observatory of the [http://www.beobachtergruppe.com Deutsches Museum] in Munich, Germany.  During public observing sessions, Stellarium is used to help explain the sky :-) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_leist_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_leist.zip|name=Leist, Switzerland|author=Bernd Lang|license=|compat=0.9.x|description=This landscape was developed from a panoramic picture of the Leist in Switzerland (2222m).  The picture was taken during a [http://www.panoramio.com/user/1437658 hiking tour] from Tanenboden to the top of the Leist. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_stonehenge_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_stonehenge.zip|name=Stonehenge, England|author=[http://www.freetadel.blogspot.com/ Fernando]|license=|compat=0.9.x|description=This landscape depicts Stonehenge - the famous prehistoric monument in Wiltshire, Southern England. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/avignon.jpg|url=http://soyouzworld.free.fr/landscape/avignon.zip|name=Place du Palais des Papes, Avignon|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Place du Palais des Papes in Avignon.  France. This site is part of [http://whc.unesco.org/en/list/228 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/avignonb.jpg|url=http://soyouzworld.free.fr/landscape/avignonb.zip|name=Le Pont d'Avignon, Avignon|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Pont d'Avignon (aka Bridge Saint-Bénezet) in Avignon.  France. This site is part of [http://whc.unesco.org/en/list/228 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/orange.jpg|url=http://soyouzworld.free.fr/landscape/orange.zip|name=Roman Theatre of Orange|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Roman Theatre of Orange- France. This site is part of [http://whc.unesco.org/en/list/163 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_cambridge_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_cambridge.zip|name=Centre for Mathematical Sciences, Cambridge, UK|author=[http://www.srcf.ucam.org/~mh519/ Matt Hickford]|license=|compat=0.9.x|description=Panorama from the grassy roof of the Centre for Mathematical Sciences, Cambridge University, UK in March. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_grantchester_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/grantchester.zip|name=Grantchester Meadows, Cambridgeshire, UK|author=[http://www.srcf.ucam.org/~mh519/ Matt Hickford]|license=|compat=0.9.x|description=Panorama from Grantchester Meadows, Cambridgeshire, UK in March. Flat horizon. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_areeiro_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_areeiro.zip|name=Pico do Areeiro|author=Filipe Gomes|license=|compat=0.9.x|description=This is a panoramic view of the [http://pt.wikipedia.org/wiki/Pico_do_Arieiro Pico do Areeiro], the second highest point of the island.  Madeira Island - Portugal. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_caniga_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_caniga.zip|name=Caniga Country|author=[http://www.flickr.com/photos/25710744@N03/2672852380/ Andrea Pittalis]|license=|compat=0.9.x|description=This landscape was taken from the Caniga Country, near Sassari in Sardinia, Italy. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.under-a-dark-sky.com/stellarium/cdn-landscape.jpg|url=http://www.under-a-dark-sky.com/stellarium/cdn.zip|name=Cuevas del Negro, Andalucia|author=Peter Lynch|license=|compat=0.9.x|description=A nearly flat rural landscape in southern Spain. The site has very dark skies and a view down to about 3&amp;amp;deg; to the south. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.astrosurf.com/aaaov/landscape/landscape_aaaov_thumb.jpg|url=http://www.astrosurf.com/aaaov/landscape/aaaov.zip|name=Astronomes Amateurs Aixois Observatoire Vauvenargues (AAAOV) - France|author=[http://www.astrosurf.com/aaaov AAAOV]|license=|compat=0.9.x|description=Vauvenargues Observatory located near Aix-en-Provence, France. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.astrosurf.com/aaaov/landscape/landscape_baie_saint_michel_thumb.jpg|url=http://www.astrosurf.com/aaaov/landscape/baie_saint_michel.zip|name=Astronomes Amateurs Aixois Observatoire Vauvenargues (AAAOV) - France|author=[http://www.astrosurf.com/aaaov AAAOV]|license=|compat=0.9.x|description=Saint Michel Bay - Serre Ponçon lake, Alpes - France. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_la_guardia_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_la_guardia.zip|name=La Guardia|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=|compat=0.9.x|description=La Guardia is a fishing village in Galicia, in the NW. of Spain. This landscape was taken on the 19/07/2008 at 12:38 p.m. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_uvalno_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_uvalno.zip|name=Uvalno, Czech Republic|author=|license=|compat=0.9.x|description=A view from a garden in the village of Uvalno, Czech Republic. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://astro.sentvid.org/stellarium/sentvid-thumbnail.png|url=http://astro.sentvid.org/stellarium/sentvid.zip|name=Šentvid, Ljubljana, Slovenia|author=|license=|compat=0.9.x|description=View from the roof of the observatory of Gymnasium Šentvid, Ljubljana, Slovenia. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://astronomia.zagan.pl/pliki/stellarium-moczyn.png|url=http://astronomia.zagan.pl/pliki/moczyn.zip|name=Poland,Zagan - sity Johannes Kepler|author=[http://astronomia.zagan.pl/articles.php?article_id=21 Jacek Patka]|license=|compat=0.9.x|description=View of the old quarter. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://perso.wanadoo.es/arias_llego/stellarium/laguardia/Thumbnail.png|url=http://perso.wanadoo.es/arias_llego/stellarium/laguardia/laguardia.zip|name=Port of La Guardia, Galicia, Spain|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=|compat=0.9.x|description=La Guardia is a fishing village in Galicia, in the NW. of Spain. This landscape was taken on the 19/07/2008.&lt;br /&gt;
&lt;br /&gt;
[http://perso.wanadoo.es/arias_llego/stellarium/laguardia/Port_of_La_Guardia.kmz Kmz file] }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/Thumbnail.png|url=http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/castrolaboreiro.zip|name=Castle of Castro Laboreiro 13th Century, Melgaço, Portugal|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=|compat=0.9.x|description=Castro Laboreiro is a village in Melgaço, in the NW. of Portugal. This landscape was taken on the 15/08/2010.&lt;br /&gt;
&lt;br /&gt;
Castle of Castro Laboreiro 13th Century, Melgaço, Portugal [http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/Castle_of_Castro_Laboreiro.kmz Kmz file] }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.cestomano.com/stellarium/thumbnail.png|url=http://www.cestomano.com/stellarium/lascanadas.zip|name=Las Cañadas del Teide, Tenerife, Spain|author=[http://www.cestomano.com José Ángel Estévez]|license=|compat=0.9.x|description=This landscape of Las Cañadas was built in April 2008. It's located in the center of Tenerife island, Canary Islands. It can be viewed the Teide volcano -the highest mountain in Spain: 3.718 mts.-, El Llano de Ucanca and Los Roques de García with the characteristic rock &amp;quot;El Cinchado&amp;quot; which, with Teide Volcano, appeared in the old 1.000 ptas. bill. &lt;br /&gt;
&lt;br /&gt;
'''Note:''' If you have problems with the landscape (landscape may not appear because low memory on VGA chip), try to download and replace the PNG landscape with [http://www.cestomano.com/stellarium/peq/lascanadas.png this 50% scaled image]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.waldvogel.com/stellarium/landscape_rodiano_tmb.png|url=http://www.waldvogel.com/stellarium/landscape_rodiano.zip|name=Frantoio Rodiano, Italy|author=Christian Waldvogel|license=|compat=0.9.x|description=The Frantoio Rodiano (Rodiano oil press) is situated on the foot of Mount Gargano in Puglia / Italy. Just a few kilometers uphill lies Monte Sant'Angelo, the famous stop for christian pilgrims on their way to Jerusalem. Stargazing has been kin to this region for milleniae: the oldest graves found in the Frantoio's vicinity date back to pre-etruscan times, and the famous Castel del Monte, an astronomical observation in itself, is not far either. The spherical landscape was created from 8 images taken on September 20th, 2010, at 1707, from the uppermost terrace of the Frantoio Rodiano. The landscape comes in three resolutions (1024 / 2048 / 4096). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/luene.jpg|url=http://www.ausgerechnet-jetzt.de/lueneburg.zip|name=Top of Water Tower of Lueneburg, Germany|author=Uwe Prolingheuer|license=|compat=0.9.x|description=This is a panoramic view from the top of old Water Tower 56m above ground, constructed 1906/07, in Lueneburg, a town with many retained medieval houses. Northern Germany. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/gas-gao.jpg|url=http://www.stellarium.org/files/landscapes/gas-gao.zip|name=GAS GAO, Russia|author=[http://www.kepler-observatorium.ru/ Andrey Kuznetsov]|license=|compat=0.10.x|description=Russia, Caucasus. The astronomical science station on the mountain Shadjatmaz. This is the view from amateur's observatory (by Andrey Kuznetsov, Sergey Kiselev). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/caucasus.jpg|url=http://www.stellarium.org/files/landscapes/caucasus.zip|name=Caucasus, Russia|author=[http://www.kepler-observatorium.ru/ Andrey Kuznetsov]|license=|compat=0.10.x|description=North Caucasus, Elbrus. }}&lt;br /&gt;
&lt;br /&gt;
===North America===&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/saltlakecity.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_salt_lake_city.zip|name=Salt Lake City Panorama|author=Hiram Bertoch|license=|compat=0.9.x|description=Hiram made this panorama for the KidsKnowIt Network's outreach program. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_sanjose_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_sanjose.zip|name=San Jose, California, USA|author=BrendaEM|license=|compat=0.9.x|description=This panorama was made using Nasa's WorldWind. Screenshots were taken at 45 degree increments. The screenshots were layered and stitched together, and then offset until the the Northern mountains were aligned. A landscape such as this could be made of any location in the world. There is a plug-in for WorldWind called &amp;quot;BigScreenshot,&amp;quot; that may make the process easier, but not automate it. A plug-in could be written to do this entire process automatically. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://trampleasure.net/science/solar-calendar/thumbnail.jpg|url=http://trampleasure.net/science/solar-calendar/landscape.ini|name=Berkeley, California, USA|author=Lee Trampleasure Amosslee|license=|compat=0.9.x|description=This panorama is centered at the [http://solarcalendar.org/ Cesar Chavez Memorial Solar Calendar] at the Berkeley Marina. The solar calendar has large stones that line up with the sunrises and sunsets at the equinoxes and solstices. [http://trampleasure.net/science/solar-calendar/chavez-solar-calendar-large.png 4096X2048 PNG photo, 8.3MB], or [http://trampleasure.net/science/solar-calendar/chavez-solar-calendar.png 2048x1024 PNG photo 2.1MB]. In the larger photo, I painted the Golden Gate bridge to make it stand out a bit more. Credits and location can be found in the [http://trampleasure.net/science/solar-calendar/landscape.ini landscapes.ini file]. Please include credits if you use/distribute this version.  }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.jrctech.net/landscapes/wiki-photos/tn_School-Image2.png|url=http://www.jrctech.net/landscapes/chesterton_school.zip|name=Chesterton Elementary School - San Diego, California, USA|author=[http://www.jrctech.net John Chester]|license=|compat=0.10.x|description=This landscape was taken to help encourage students to learn about science and astronomy using Stellarium.  The panorama was taken at the playground area of Chesterton Elementary School on October 23, 2011.  The image was constructed using the Multiple Image Method using 8 overlapping images to provide a high level of detail.  The original composite panorama image was 22442 (width) x 2418 (height) pixels .  Composite photo reduced to 5 equally sized photos of 2048 by 1024 pixels.  Many trees created complex horizon background but left details, such as tether-ball poles, in place during transparency development to keep landscape realistic.  The lines of the playground provide an interesting perspective with Stellarium. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/eltajin.jpg|url=http://soyouzworld.free.fr/landscape/eltajin.zip|name=El Tajin, Mexico|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the prehispanic city of El Tajin. Theses ruins are part of [http://whc.unesco.org/en/list/631 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/mexico.jpg|url=http://soyouzworld.free.fr/landscape/mexico.zip|name=Mexico Ciudad, Mexico|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Zocalo (Plaza de la Constitución) of Mexico Ciudad. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/uxmal.jpg|url=http://soyouzworld.free.fr/landscape/uxmal.zip|name=Uxmal, Yucatan, Mexico|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Cuadrangulo de las Monjas in Pre-Hispanic Town of Uxmal. This site is part of [http://whc.unesco.org/en/list/791 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://home.arcor.de/mdoege/pano/boulder_thumb.png|url=http://home.arcor.de/mdoege/pano/boulder.zip|name=University of Colorado at Boulder, Boulder, Colorado, USA|author=Martin C. Doege|license=|compat=0.9.x|description=View from Farrand Field at the [http://en.wikipedia.org/wiki/University_of_Colorado_at_Boulder University], with the [http://en.wikipedia.org/wiki/Flatirons Flatirons] to the southwest. (File is 2.9 Mb) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_jasperpyramidisland_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_jasperpyramidisland.zip|name=Jasper National Park, Alberta, Canada|author=[http://www.jasperdarksky.org/stellarium Rogier Gruys]|license=|compat=0.9.x|description=Pyramid Island dark sky observation site in [http://pc.gc.ca/jasper Jasper National Park], Alberta, Canada -  world's largest [http://www.jasperdarksky.org/ Dark Sky Preserve]. This site is only 15 min from the town of Jasper, yet nearly perfectly dark. The panorama was taken just before sunset in October 2011. }}&lt;br /&gt;
&lt;br /&gt;
===South America===&lt;br /&gt;
{{Package|image=http://www.essl.de/wp/wp-content/uploads/2008/03/paranalscreenshot.png|url=http://www.essl.de/wp/wp-content/uploads/2008/03/paranal.zip|name=ESO's Very Large Telescope in the Atacama Desert, Chile|author=[http://www.essl.de Dirk Essl]|license=|compat=0.9.x|description=The Very Large Telescope Project (VLT) is a system of four separate optical telescopes (the Antu telescope, the Kueyen telescope, the Melipal telescope, and the Yepun telescope) organized in an array formation. Each telescope has an 8.2 m aperture. The array is complemented by three movable Auxiliary Telescopes (ATs) of 1.8 m aperture. The project is organized by the [http://www.eso.org/ ESO]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/cachi.jpg|url=http://soyouzworld.free.fr/landscape/cachi.zip|name=Cachi, Argentina|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Parque National Los Cardones near the village of Cachi. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/lagunaverde.jpg|url=http://soyouzworld.free.fr/landscape/lagunaverde.zip|name=Laguna Verde, Bolivia|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Laguna Verde and Laguna Blanca under the Juriques (5704m) and Licancabur (5920m) Volcanos. These lakes are located in Reserva Nacional Eduardo Avaroa, Bolivia. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://documents.epfl.ch/users/m/mt/mtewes/www/permanent/euler_la_silla_thumb.png|url=http://documents.epfl.ch/users/m/mt/mtewes/www/permanent/euler_la_silla.zip|name=Swiss Euler Telescope, ESO La Silla Observatory, Chile|author=[http://obswww.unige.ch/~tewes/ Malte Tewes]|license=|compat=0.9.x|description=Euler is the nearby telescope that can be seen in the west. It is operated by the University of Geneva, and its main duty is the quest of extrasolar planets. The New Technology Telescope (NTT) shows up just behind Euler's control room, Tarot is in due south, and finally the venerable ESO 3.6 meter telescope sits on its hill in the southeast. The panorama was taken on September 3, 2010, at about 7:25 local time, a wonderful sunrise after a snowy night. [http://obswww.unige.ch/~tewes/stellarium_landscapes/ Screenshots] }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/images/landscape_braziland_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_braziland.zip|name=Divinópolis, Brazilia|author=[http://alquimiapopular.wordpress.com/psicologo/ Wanderson Nunes Ferreira]|license=|compat=0.9.x|description=[http://alquimiapopular.wordpress.com/psicologo/ Wanderson Nunes Ferreira] photographed this panorama in the Brazilian city of Divinópolis in March 2011 and stitched it together into a spherical panorama that can be used with Stellarium. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://resoundcity.com/resources/stellarium/shined_dream_tb.jpg|url=http://resoundcity.com/resources/stellarium/shined_dream.zip|name=Shined Dream, Argentina|author=Adrian Felipe Pera|license=|compat=0.9.x|description=[http://www.flickr.com/photos/afpera/7529438152 Shined Dream] by Adrian Felipe Pera, a [http://www.resoundcity.com/ ResoundCity] member. Pergamino, Buenos Aires, Argentina. A small town, but still flashed enough to see nearly the stars, or hear the song of the spheres. [http://www.flickr.com/photos/afpera/7529438152 Flickr image] [http://adn-pera.deviantart.com/#/d56ldh2 deviantart wallpaper]. }}&lt;br /&gt;
&lt;br /&gt;
===Polar regions===&lt;br /&gt;
{{Package|image=http://www.obs-sirene.com/divers/stellarium/concordia.png|url=http://www.obs-sirene.com/divers/stellarium/concordia.zip|name=French-Italian Concordia Station|author=[http://cyprien.pouzenc.free.fr Cyprien Pouzenc]|license=GPLv2+|compat=0.10.x|description=Panoramic view of the station installed at Dome C, Antarctica.}}&lt;br /&gt;
&lt;br /&gt;
===Special===&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/simple.jpg|url=http://www.stellarium.org/files/landscapes/simple.zip|name=Simple|author=[http://astro.uni-altai.ru/~aw/ Alexander Wolf]|license=Public Domain|compat=0.10.x|description=Simple semi-transparent texture for Stellarium.}}&lt;br /&gt;
&lt;br /&gt;
==Contributions==&lt;br /&gt;
Please feel free to contribute your own custom landscapes here.   Make thumbnails 200x114 pixels to fit with the rest of the page.  Please include a location section in your landscape.ini file with the longitude, latitude, altitude and planet for the location of the landscape (see one of the pre-existing landscapes for an example).&lt;br /&gt;
&lt;br /&gt;
To find out more about how to create a landscape, see the [http://www.porpoisehead.net/mysw/stellarium_user_guide_html-0.9.1-1/#SECTION00670000000000000000 Stellarium User Guide], and examine existing landscapes.  If you are having problems, posting to the forums is a good way to get some advice.&lt;br /&gt;
&lt;br /&gt;
===Important note on image dimensions===&lt;br /&gt;
'''IMPORTANT: Make sure all textures have dimensions which are integer powers of 2, i.e. 256, 512, 1024, 2048, 4096, 8192, 16384, ...   e.g. 4096 by 1024, 2048 by 2048 and so on.'''&lt;br /&gt;
&lt;br /&gt;
This is a limitation of OpenGL.  Some video hardware will work OK with images with different image dimensions, but many will not display properly, suffer vastly reduced frame rates, and even crash the computer.  &lt;br /&gt;
&lt;br /&gt;
'''Please make sure all contributed landscapes conform to these requirements, or your link may be removed.'''&lt;br /&gt;
&lt;br /&gt;
Be aware that many people's video hardware cannot handle very large textures.  This is hardware and driver dependent.  A typical maximum image size is 2048x2048 or 4096x4096.&lt;br /&gt;
&lt;br /&gt;
===Package contents===&lt;br /&gt;
Please package your landscape in a .zip file with all files inside a directory in the .zip file.  This should be unique to your landscape, and it would be nice it it was all lower-case with no spaces.  &lt;br /&gt;
&lt;br /&gt;
You should also include a readme.txt file which describes the landscape and specifies any usage restrictions or licensing terms for the images used in the landscape.  &lt;br /&gt;
&lt;br /&gt;
===Licensing===&lt;br /&gt;
Before you distribute images as part of a Stellarium landscape, please ensure you are legally entitled to - you must be the copyright holder for the images, or be able to distribute them for use with Stellarium under the terms of some agreement with the copyright holder (e.g. Creative Commons licensed images found on the web).&lt;br /&gt;
&lt;br /&gt;
It is important to explicitly state what use may be made of images for your landscape.  This should be done in the readme.txt file inside the .zip file.&lt;br /&gt;
&lt;br /&gt;
We recommend an open source license compatible with Stellarium itself (i.e. the GNU GPL), or one of the Creative Commons licenses.  &lt;br /&gt;
&lt;br /&gt;
===Example package contents===&lt;br /&gt;
&lt;br /&gt;
From the Mars Husband Hill landscape:&lt;br /&gt;
&lt;br /&gt;
 Archive:  landscape_mars_husband_hill.zip&lt;br /&gt;
   Length     Date   Time    Name&lt;br /&gt;
  --------    ----   ----    ----&lt;br /&gt;
   1815308  02-05-07 21:02   mars_husband_hill/husband_hill.png&lt;br /&gt;
       211  05-28-07 19:44   mars_husband_hill/landscape.ini&lt;br /&gt;
      1096  06-04-07 15:21   mars_husband_hill/readme.txt&lt;br /&gt;
  --------                   -------&lt;br /&gt;
   1816615                   3 files&lt;br /&gt;
&lt;br /&gt;
The readme.txt file should look something like this:&lt;br /&gt;
&lt;br /&gt;
 Mars Husband Hill Landscape for Stellarium&lt;br /&gt;
 ==========================================&lt;br /&gt;
 &lt;br /&gt;
 Description&lt;br /&gt;
 -----------&lt;br /&gt;
 &lt;br /&gt;
 This landscape was taken from the NASA Spirit Rover on Mars.&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 Files&lt;br /&gt;
 -----&lt;br /&gt;
 &lt;br /&gt;
 This file (readme.txt) should have come in a zip file with some others&lt;br /&gt;
 Here is a listing of all the files which should be in the zip file:&lt;br /&gt;
 &lt;br /&gt;
   mars/readme.txt&lt;br /&gt;
   mars/landscape.ini&lt;br /&gt;
   mars/husband_hill.png&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 Installation &amp;amp; Use&lt;br /&gt;
 ------------------&lt;br /&gt;
 &lt;br /&gt;
 Unzip the landscape package file in your personal stellarium data&lt;br /&gt;
 directory, or the &amp;lt;config_root&amp;gt;/landscapes directory.  The location&lt;br /&gt;
 varyies depending on your operating system.  See the Stellarium&lt;br /&gt;
 User Guide for per-platform details.&lt;br /&gt;
 &lt;br /&gt;
 Once you have installed the landscape, open Stellarium and go to the&lt;br /&gt;
 configuration dialog.  Select the landscapes tab, and select the landscape&lt;br /&gt;
 from the list of available landscapes.&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 Credits&lt;br /&gt;
 -------&lt;br /&gt;
 &lt;br /&gt;
 Image credit: NASA/JPL-Caltech/Cornell&lt;br /&gt;
 http://marsrovers.jpl.nasa.gov/gallery/panoramas/opportunity/index.html&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 License&lt;br /&gt;
 -------&lt;br /&gt;
 &lt;br /&gt;
 NASA Images are released into the public domain&lt;br /&gt;
&lt;br /&gt;
===File encoding===&lt;br /&gt;
The landscape.ini and readme.txt files should be UTF-8 encoded text or plain ASCII.  It's probably a good idea to adopt the Windows line ending encoding, (i.e. CR LF).  Both Windows and *nix style line ending encoding should work OK in Stellarium, but Windows users will have an ugly time reading the readme.txt if it uses *nix-style newlines.&lt;br /&gt;
&lt;br /&gt;
===Need hosting?===&lt;br /&gt;
&lt;br /&gt;
If you have a landscape you would like to share but have no web-space to put it, email [[User:matthewg42|me]] and I'll put it on [http://porpoisehead.net/ my site].&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
*[[Landscape Rotation]] - how to set landscape rotation so that a certain point is due north&lt;br /&gt;
*The user guide, section 5.7: [[Customising Landscapes]]&lt;br /&gt;
&lt;br /&gt;
==Tools==&lt;br /&gt;
The following tools may be useful to people who wish to create their own landscapes:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| width=15% | '''Program''' || width=20% | '''Platform(s)''' || width=15% | '''License''' || width=40% | '''Notes''' &lt;br /&gt;
|-&lt;br /&gt;
|[http://www.cs.ubc.ca/~mbrown/autostitch/autostitch.html Autostitch] &lt;br /&gt;
| Windows; may also run on Linux using [http://www.winehq.org/ Wine]&lt;br /&gt;
| Shareware/demo &lt;br /&gt;
| Looks like it produces good results.  Registered version includes extra types of projection.  No source code.&lt;br /&gt;
|-&lt;br /&gt;
|[http://hugin.sourceforge.net/ Hugin] &lt;br /&gt;
| Linux; FreeBSD; MacOSX; Windows&lt;br /&gt;
| Free/open source (GNU GPL)&lt;br /&gt;
| Hugin is a nice GUI for Panorama Tools&lt;br /&gt;
|-&lt;br /&gt;
||[http://webuser.fh-furtwangen.de/~dersch/ Panorama Tools]&lt;br /&gt;
| Linux; FreeBSD; MacOSX; Windows&lt;br /&gt;
| Free/open source (GNU GPL)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Microsoft's [http://research.microsoft.com/en-us/um/redmond/groups/ivm/ICE/ Image Composite Editor]&lt;br /&gt;
| Windows&lt;br /&gt;
| Free (costless) &lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
*[http://stargazerslounge.com/primers-tutorials/122628-tutorial-custom-stellarium-landscapes.html Tutorial: Custom Stellarium landscapes], thread at the Stargazers Lounge forum&lt;br /&gt;
*[http://www.cloudynights.com/ubbthreads/showflat.php/Number/3759113/ Stellarium landscape image of my back porch], thread at the Cloudy Nights forum (discusses using a home-made fish-eye lens from a peep-hole to create a &amp;quot;fisheye&amp;quot; landscape)&lt;br /&gt;
&lt;br /&gt;
[[Category:Landscapes]]&lt;br /&gt;
[[Category:Customization]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Landscapes</id>
		<title>Landscapes</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Landscapes"/>
				<updated>2012-12-17T12:17:01Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: /* Europe */ Thumbnail URL changed&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==How to install landscapes==&lt;br /&gt;
After you have downloaded the .zip file for a landscape from this page, you need to install it in Stellarium.&lt;br /&gt;
&lt;br /&gt;
===Automatic===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;http://www.stellarium.org/wikiimg/stellarium-0-11-1/add-remove-landscapes-button.png&amp;lt;/div&amp;gt;&lt;br /&gt;
If you have Stellarium 0.10.6 or later version, you can use the &amp;quot;Add/remove landscapes&amp;quot; feature to install landscapes automatically:&lt;br /&gt;
*Open the &amp;quot;Sky and viewing options&amp;quot; window by clicking on the appropriate button in the left button bar (or press the F4 key).&lt;br /&gt;
*The &amp;quot;Add/remove landscapes&amp;quot; button is at the bottom of the &amp;quot;Landscape&amp;quot; tab.&lt;br /&gt;
*When you press it, the &amp;quot;Add/remove landscapes&amp;quot; window will appear. It allows you to install &amp;lt;tt&amp;gt;.zip&amp;lt;/tt&amp;gt; files containing landscapes. It also lists the user-installed landscapes and allows you to remove them.&lt;br /&gt;
&lt;br /&gt;
Note that while this makes installing landscapes easier, it may also cause you to overlook what else is included in the ZIP archive. Landscape packages created without this feature in mind may contain other files, such as alternative textures in different sizes.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;align:center&amp;quot;&amp;gt;http://www.stellarium.org/wikiimg/stellarium-0-11-1/add-remove-landscapes-window.png&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Manual===&lt;br /&gt;
If you are using an earlier version of Stellarium, you can follow this procedure to install a landscape package:&lt;br /&gt;
#Browse to your [[User Data Directory]], which varies according to your operating system. (eg. in Windows Vista/7 enter  %appdata%\stellarium in Explorer's location bar )&lt;br /&gt;
#Create a sub-directory called ''landscapes'' in your user directory (if it doesn't exist).&lt;br /&gt;
#Unzip the landscape .zip file in the ''landscapes'' directory (if it's done right, a sub-directory should be created for each landscape).&lt;br /&gt;
&lt;br /&gt;
NOTE: Older version of Stellarium (prior to v0.9.0) used a slightly different mechanism for doing landscapes. You can find a list of the old landscapes [[Landscapes pre 0.9.0|here]].&lt;br /&gt;
&lt;br /&gt;
Since version 0.10.5 Stellarium has problems in correctly loading old style landscapes (multi panel) if they are not 8 or 16 panel panoramas. Some old 4,7,9 qnd 10 side panoramas converted into 8 ides can be found here &lt;br /&gt;
*[http://sarcasmogerdes.dyndns.org/stellarium/uploads/wiruna-field.zip] (Wiruna field Barry's site)&lt;br /&gt;
*[http://sarcasmogerdes.dyndns.org/stellarium/uploads/egarden-new.zip] (Egarden 8 panel Barry's site)&lt;br /&gt;
*[http://sarcasmogerdes.dyndns.org/stellarium/uploads/neven-new.zip] (Como area Sydney Barry's site)&lt;br /&gt;
&lt;br /&gt;
==User contributed landscapes (by continent)==&lt;br /&gt;
We have landscapes for the seven continents (in the [http://en.wikipedia.org/wiki/Continent seven continent model]) - all, including from Antarctica !&lt;br /&gt;
===Interplanetary===&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/husband-hill.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_mars_husband_hill.zip|name=Husband Hill, Mars|author=Johan|license=Public Domain|compat=0.9.x|description=Johan transformed this Mars image from NASA into a spherical panorama that can be used with Stellarium.  Mars rover Spirit made this image during August 24 to 27, 2005. Image credit: NASA/JPL-Caltech/Cornell. Read more on [http://marsrovers.nasa.gov/gallery/panoramas/spirit/2005.html this webpage].}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/landscape_marsopportunity_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_mars_opportunity_rover.zip|name=Mars Opportunity Rover|author=Mike|license=Public Domain|compat=0.9.x|description=Mike sent posted this landscape in the forums.  Another nice Mars rover landscape.}}&lt;br /&gt;
 &lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_iss_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_iss.zip|name=International Space Station|author=Makc|license=GPL|compat=0.9.x|description=Landscape made using some screen shots and data from the wonderful [http://www.shatters.net/celestia/ Celestia].  Set the projection mode to stereographic, zoom out to a wide field of view and point down towards the ground to get the nice rounded &amp;quot;planet&amp;quot; effect.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_apollo_11_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_apollo_11.zip|name=Apollo 11 landing site|author=Mathew Myrup|compat=0.9.x|description=This landscape is made using NASA photographs taken by Buzz Aldrin. Look down and you can see Buzz's footprints :)}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_apollo_17_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_apollo_17.zip|name=Apollo 17 landing site|author=Mathew Myrup|compat=0.9.x|description=This landscape is made using NASA photographs taken by Gene Cernan.}}&lt;br /&gt;
&lt;br /&gt;
===Africa===&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/idehan.jpg|url=http://soyouzworld.free.fr/landscape/idehan.zip|name=Idehan Ubari, Libya|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|compat=0.10.x|description=This is a panoramic view of the desert of Idehan Ubari in Libya.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/leptis.jpg|url=http://soyouzworld.free.fr/landscape/leptis.zip|name=Leptis Magna, Libya|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|compat=0.10.x|description=This is a panoramic view of the theatre of the Roman city of Leptis Magna. This site is part of [http://whc.unesco.org/en/list/183 UNESCO World Heritage].}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/sahara.jpg|url=http://soyouzworld.free.fr/landscape/sahara.zip|name=Sahara, Libya|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|compat=0.10.x|description=This is a panoramic view from somewhere in the middle of the Sahara in Libya.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/waw-al-namus.jpg|url=http://soyouzworld.free.fr/landscape/waw-al-namus.zip|name=Volcano Waw al-Namus, Libya|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|compat=0.10.x|description=This is a panoramic view of Volcano Waw al-Namus in the Sahara.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.domani.ch/masoala/en/capmasoala_thumb.jpg|url=http://www.domani.ch/masoala/en/cap_masoala.zip|name=Cap Masoala, Madagascar|author=Matthias D. Frei|license=GPLv2+|compat=0.9.x|description=This panorama was photographed from the abandoned French lighthouse at the southernmost point of the Masoala peninsula in Madagascar. It provides a spectacular view over the Indian Ocean and the Masoala peninsula that is still mainly covered with rainforest. More information about this particular place can be found  [http://www.domani.ch/masoala/en/index.html here]}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_mbabane_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_mbabane.zip|name=Mbabane, Swaziland|author=Quinton Reissmann|compat=0.9.x|description=Mbabane is the capital of the little kingdom of Swaziland. Waterford/Kamhlaba is an international school on a mountain side which prides itself in cultural diversity. In SiSwati &amp;quot;kamhlaba&amp;quot; means &amp;quot;a world in miniature&amp;quot;. The actual view is from the sports field where we usually set up the telescope.}}&lt;br /&gt;
&lt;br /&gt;
===Asia===&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_everest_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_everest.zip|name=Mount Everest|author=Makc|license=&amp;amp;copy;|compat=0.9.x|description=Amazing parorama of the summit of Mount Everest, 8.85 km above sea level.  [http://www.everestviews.com/ Roddy Mackenzie], who climbed the mountain in 1989, captured the image.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_jantar_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_jantar.zip|name=Jantar Mantar|author=Barry Perlus &amp;amp; Stellarium team|license=CC BY-NC-SA 3.0|compat=0.9.x|description=Professor Barry Perlus of Cornell University allowed us to use his panoramic photography of one of the Jantar Mantars in India to create this landscape.  For more information on these fascinating scientific and architectural works see [http://jantarmantar.org/ jantarmantar.org].}}&lt;br /&gt;
&lt;br /&gt;
===Australasia===&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/beaumont-hills.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_beaumont_hills.zip|name=Beaumont Hills, Sydney, Australia|author=Barry Gerdes|license=GPLv2+|compat=0.9.x|description=Barry made an interesting multiple-image landscape from the rooftop of his house. You can find a detailed account of how this was done in the [http://porpoisehead.net/mysw/stellarium_user_guide_html-0.9.0-1/#SECTION001100000000000000000 Stellarium User Guide].}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/transit-hill.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_transit_hill.zip|name=Transit Hill, Lord Howe Island, Australia|author=Graeme Ewing|compat=0.9.x|description=Graeme Ewing Contributed this panorama of the astronomically significant and visually stunning Transit Hill site Northeast of Sydney, Australia. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_penneshaw_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_penneshaw.zip|name=Penneshaw, Kangaroo Island, Australia|author=Clive Nelson|compat=0.9.x|description=Penneshaw is a small township at the Northwest end of Kangaroo Island, off the coast of South Australia. In the north is the entrance to Gulf St Vincent and the Australian mainland. In the east is the Penneshaw township, To the west, on the horizon, is Kingscote, the main town on Kangaroo Island.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_largsbay_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_largsbay.zip|name=Largs Bay in South Australia|author=Martin Lewicki|license=GPL|compat=0.9.x|description=Panoramic view of Largs Bay in South Australia 8 panel old style landscape. Largs Pier Hotel facade in SSE and Largs Bay Sailing Club due east. Jetty extends to Gulf St Vincent to the west.}}&lt;br /&gt;
&lt;br /&gt;
===Europe===&lt;br /&gt;
{{Package|image=https://raw.github.com/martignoni/ependes-landscape/master/ependes-thumbnail.png|url=https://github.com/martignoni/ependes-landscape/raw/master/ependes.zip|name=Épendes Observatory, Fribourg, Switzerland|author=[http://www.stellarium.org/wiki/index.php/User:Mina Nicolas Martignoni]|license=CC BY-NC-SA 3.0|compat=0.10.x|description=The [http://www.observatoire-naef.ch/ Épendes Observatory] ([http://toolserver.org/~geohack/geohack.php?params=46.76236_N_7.13938_E 46°45′45″N 7°08′22″E]) is located near the city of Fribourg, Switzerland. The images for this landscape were taken in August 2006. The landscape comes in three resolutions (1024 / 2048 / 4096). File size is about 2.4 MB.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://michael.nadev.net/pub/wurania.png|url=http://michael.nadev.net/pub/wurania.zip|name=Urania Observatory, Vienna, Austria|author=Michael Prokosch|license=CC BY-ND 3.0|compat=0.9.x|description=The [http://www.astronomie-wien.at/astronomie_urania.html Urania Observatory] (48°12′41.88″N 16°23′1.53″E) is located right in the middle of the city of Vienna, capital of Austria. Built in 1910 under emporer Franz Joseph I. it's the countries oldest non-scientifical observatory still in use for people's education. This landscape was taken in August 2011. If you are not distracted by the stars, you can even see St. Stephan's cathedral, the Viennese Giant Wheel and the Danube Canal. File size is about 11.5 MB.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://perso.wanadoo.es/arias_llego/stellarium/laguardia/Thumbnail.png|url=http://perso.wanadoo.es/arias_llego/stellarium/laguardia/laguardia.zip|name=Port of La Guardia, Galicia, Spain|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=CC BY-NC-ND 3.0|compat=0.10.x|description=La Guardia is a fishing village in Galicia, in the NW. of Spain. This landscape was taken on the 19/07/2008. '''[http://perso.wanadoo.es/arias_llego/stellarium/laguardia/Port_of_La_Guardia.kmz KMZ file]'''. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/Thumbnail.png|url=http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/castrolaboreiro.zip|name=Castle of Castro Laboreiro 13th Century, Melgaço, Portugal|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=CC BY-NC-ND 3.0|compat=0.10.x|description=Castro Laboreiro is a village in Melgaço, in the NW. of Portugal. This landscape was taken on the 15/08/2010. '''[http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/Castle_of_Castro_Laboreiro.kmz Kmz file]'''. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.cestomano.com/stellarium/thumbnail.png|url=http://www.cestomano.com/stellarium/lascanadas.zip|name=Las Cañadas del Teide, Tenerife, Spain|author=[http://www.cestomano.com José Ángel Estévez]|license=|compat=0.10.x|description=This landscape of Las Cañadas was built in April 2008. It's located in the center of Tenerife island, Canary Islands. It can be viewed the Teide volcano -the highest mountain in Spain: 3.718 mts.-, El Llano de Ucanca and Los Roques de García with the characteristic rock &amp;quot;El Cinchado&amp;quot; which, with Teide Volcano, appeared in the old 1.000 ptas. bill. &lt;br /&gt;
&lt;br /&gt;
'''Note:''' If you have problems with the landscape (landscape may not appear because low memory on VGA chip), try to download and replace the PNG landscape with [http://www.cestomano.com/stellarium/peq/lascanadas.png this 50% scaled image]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.waldvogel.com/stellarium/landscape_jungfraujoch_tmb.png|url=http://www.waldvogel.com/stellarium/landscape_jungfraujoch.zip|name=Jungfraujoch High Altitude Research Station, Switzerland|author=Christian Waldvogel|license=|compat=0.10.x|description=Lying at 3580m in the Bernese Alps, the Jungfraujoch is often dubbed &amp;quot;Top of Europe&amp;quot;. It has been home to an astronomical observation station for more than 80 years. The spherical landscape was created from 20 images taken on June 29th, 2008, at 1015, from the lower terrace of the Sphinx Obervatory. The landscape comes in three resolutions (1024 / 2048 / 4096). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/San_Pietro.jpg|url=http://www.stellarium.org/files/landscapes/San_Pietro.zip|name=St Peter's Square (Vatican)|author=Gianfranco Mazzani|license=|compat=0.10.x|description=This is a complete high resolution panoramic view of the St Peter's Square, City of Vatican. &lt;br /&gt;
&lt;br /&gt;
Gianfranco Mazzani photographed this panorama in july 2004 by using a Nikon Coolpix 8700, and stitched &lt;br /&gt;
the original 10 pictures together into a spherical panorama using Hugin program. The panorama has been &lt;br /&gt;
than cutted into 8 alfa channel pictures and re-dimensioned the width to 2048 pixel and then dimensioned &lt;br /&gt;
the height to 32 cm by using Photoschop elements 2.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.waldvogel.com/stellarium/landscape_rodiano_tmb.png|url=http://www.waldvogel.com/stellarium/landscape_rodiano.zip|name=Frantoio Rodiano, Italy|author=Christian Waldvogel|license=|compat=0.10.x|description=The Frantoio Rodiano (Rodiano oil press) is situated on the foot of Mount Gargano in Puglia / Italy. Just a few kilometers uphill lies Monte Sant'Angelo, the famous stop for christian pilgrims on their way to Jerusalem. Stargazing has been kin to this region for milleniae: the oldest graves found in the Frantoio's vicinity date back to pre-etruscan times, and the famous Castel del Monte, an astronomical observation in itself, is not far either. The spherical landscape was created from 8 images taken on September 20th, 2010, at 1707, from the uppermost terrace of the Frantoio Rodiano. The landscape comes in three resolutions (1024 / 2048 / 4096). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://pano.jubila.de/stellarium/muchachos_thumb.jpg|url=http://pano.jubila.de/stellarium/muchachos.zip|name=Roque de los Muchachos, La Palma, Spain|author=Uwe Buecher|license=|compat=0.10.x|description=This high resolution landscape was built with hugin from 20 photos taken in October 2007. It is located on top of the highest mountain on La Palma, Canary Islands. You can see the Buildings of the Observatorio del Roque de los Muchachos, one of them is the Gran Telescopio Canarias (GTC) which is the greatest telescope in the world today (10.4m diameter). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_egarden_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_egarden.zip|name=English Garden, Munich, Germany|author=Rob Spearman, Johan Meuris|license=|compat=0.9.x|description=This high resolution landscape was taken in April 2007 by Rob. Johan helped with the post production.  The result is a very high quality landscape. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_egarden_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_egarden_old_style.zip|name=English Garden, Munich, Germany|author=Rob Spearman, Johan Meuris|license=|compat=0.9.x|description=The original English Garden landscape was re-constructed by Barry Gerdes as an old_style landscape.  This means that it can be used with video hardware which cannot cope with single very large texture files, and yet preserves the resolution of the landscape (by splitting the images into multiple files). Try this is the original English Garden landscapes doesn't load on your computer. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/voksenlia.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_voksenlia.zip|name=Voksenlia, Oslo, Norway|author=Steinar Midtskogen|license=|compat=0.10.x|description=Steinar Midtskogen sent [http://porpoisehead.net/mysw/downloads/voksenlia.png this huge (17 MiB!) spherical landscape image] of Voksenlia, Oslo, Norway (59°58'14N, 10°38'57E, alt=348m). (Currently not working with version 0.9.0). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/observatory-hill-Barry.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_edinburgh.zip|name=Calton Hill, Edinburgh, Scotland|author=Friedrich Noelle, Barry Gerdes|license=|compat=0.9.x|description=Friedrich Noelle took a nice panorama of Observatory Hill, Edinburgh which Barry converted into a Stellarium landscape. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/sight_thumb.jpg|url=http://www.geomancygroup.org/stella/sighthill.zip|name=Sighthill stone circle, Glasgow, Scotland|author=[http://www.geomancygroup.org Grahame Gardner]|license=|compat=0.9.x|description=Sighthill stone circle is a modern stone ring constructed in 1979 by amateur astronomer and SF writer Duncan Lunan. Located next to the M8 motorway in Glasgow city centre, yet with surprisingly good views, the circle has alignments to the solsticial solar rises and settings and the lunar standstills. Alignments to the rising of Rigel are included for 1979 AD and 1800 BC. (2MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/beech_thumb.jpg|url=http://www.geomancygroup.org/stella/beechhill.zip|name=Beech Hill stone circle, nr. Nutley, E. Sussex, England|author=[http://www.geomancygroup.org Grahame Gardner]|license=|compat=0.9.x|description=Beech Hill is a modern stone ring constructed in 2000 by Ivan McBeth and Richard Creightmore of The Geomancy Group [http://www.geomancygroup.org/ www.geomancygroup.org]. Located in the Ashdown Forest, the circle's main alignment is to the Pole Star, denoted by the angled outlier. (2.2MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/calave_tb.jpg|url=http://www.geomancygroup.org/stella/calanaisave.zip|name=Calanais I (Callanish) Avenue, Lewis, Western Isles, Scotland|author=[http://www.geomancygroup.org Grahame Gardner]|license=|compat=0.9.x|description=Callanish is arguably the finest megalithic monument in the British Isles, and is just the largest site in a vast complex of interconnected monuments designed to observe the southern major standstills of the moon. From this position at the end of the avenue, the moon is seen to set behind the rocky outcrop of Cnoc-an-Tursa, only to 're-gleam' in the centre of the main circle a short time afterwards. (4MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/machrie_tb.jpg|url=http://www.geomancygroup.org/stella/machrie5.zip|name=Machrie Moor 5, Isle of Arran, Scotland|author=[http://www.geomancygroup.org Grahame Gardner]|license=|compat=0.9.x|description=This delightful little double-concentric stone circle is the first site you come to when visiting the Machrie Moor complex of megalithic sites on Arran. Although not the most spectactular site in the group, it is one of the most complete and has good views. (7.3MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/mitchthumbnail.jpg|url=http://www.geomancygroup.org/stella/mitchell2.zip|name=Mitchell's Fold stone circle, Shropshire, England|author=[http://www.vallecrucisgrail.co.uk/ Ian Pegler]|license=|compat=0.9.x|description=This wonderful ancient stone circle stands on a plateau amid the rolling Shropshire hills and is loved by walkers, dowsers and Wiccans alike. April 2010 - new version uploaded, featuring improved centre camera position based on Alexander Thom's geometry and improved alignments. (1.8MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/aveburyn_thumb.jpg|url=http://www.geomancygroup.org/stella/aveburynorth.zip|name=Avebury - North circle, Wiltshire, England|author=[http://www.vallecrucisgrail.co.uk/ Ian Pegler]|license=|compat=0.9.x|description=The North circle of the largest megalithic complex in Europe. In the background you can just make out the Red Lion pub. (1MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/vallecrucis_thumb.jpg|url=http://www.geomancygroup.org/stella/vallecrucis.zip|name=Valle Crucis Abbey, Llangollen, North Wales|author=[http://www.vallecrucisgrail.co.uk/ Ian Pegler]|license=|compat=0.9.x|description=This ruined Cistercian abbey dates to 1200 but may be the site of a much earlier Dark Age settlement with a very early Christian church. (2.5MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/ponta-da-piedade.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_lagos.zip|name=Ponta da Piedade, Algarve, Lagos, Portugal|author=Johan|license=|compat=0.9.x|description=Johan photographed this panorama in June 2006 and stitched it together into a spherical panorama that can be used with Stellarium.  You see sandstone cliffs on the Atlantic coast of southern Portugal, a lighthouse, and a natural bridge. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/landscape_gurnigel_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_gurnigel.zip|name=Gurnigel, Switzerland|author=Martin Mutti|license=|compat=0.9.x|description=This is the site of the Bern Astronomical Society's observing site. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/tishinka-ardashev.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_tishinka.zip|name=Tishinka, Russia|author=Dmitri Ardashev|license=|compat=0.9.x|description=This is a small village between Moscow's and Kaluga's regions, in 130 km south-west of Moscow (55°18'32.46N, 36°26'42.06E, alt=195). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_t60pic_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_t60pic.zip|name=T60 dome, Pic du Midi Observatory, France|author=Sylvain Rondi|license=|compat=0.9.x|description=Sylvain photographed this panorama in February 2007 and stitched it together into a spherical panorama that can be used with Stellarium. This is the panoramic view from the amateur 60cm telescope dome from [http://astrosurf.com/t60/ T60 Association], installed at Pic du Midi Observatory. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_t1mpic_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_t1mpic.zip|name=T1M terrasse, Pic du Midi Observatory, France|author=Sylvain Rondi|license=|compat=0.9.x|description=Sylvain photographed this panorama in February 2007 and stitched it together into a spherical panorama that can be used with Stellarium. This is the panoramic view from the terrasse of the professional 106cm telescope at Pic du Midi Observatory (France). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_sheffieldrivelin_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_sheffieldrivelin.zip|name=River Rivelin, Sheffield, UK|author=Jan Wedekind|license=CC SA-2.0|compat=0.9.x|description=This is a 270° fisheye panorama created from 40 photos using Hugin. It shows the River Rivelin in Sheffield in the middle of April 2007. The fringes (twigs and tree tops) where dimmed out using The Gimp. The overexposed parts of the horizon have been removed. Copyright (C) 2007, [[User:Wedesoft|Jan Wedekind]], [http://creativecommons.org/licenses/by-sa/2.0/ Creative Commons Attribution ShareAlike License 2.0] }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_ares_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_ares.zip|name=Ares, Galicia, Spain|author=[http://www.stellarium.org/wiki/index.php/User:rcasl Rubén Castiñeiras Lorenzo]|license=|compat=0.9.x|description=Ares is a small fishing village in Galicia, in the NW of Spain, close to the city of Ferrol. The 360 degree image was taken at the noon of August 6th, 2007, just in front of the &amp;quot;Paseo Rosalía de Castro&amp;quot;. It has been made with 17 photos, stitched with Hugin 0.7 beta 4 and retouched with the Gimp 2.2.17. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_ovindoli_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_ovindoli.zip|name=Ovindoli, Italy|author=Pierluigi Panunzi|license=|compat=0.9.x|description=Ovindoli is a famous ski resort in central Italy. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/rustrel.jpg|url=http://soyouzworld.free.fr/landscape/rustrel.zip|name=Rustrel, France|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Colorado de Rustrel in &amp;quot;Les Sentiers de l'Ocre et du Fer&amp;quot;, Provence, France. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://files.myopera.com/aid85/files/host/Stintino.jpg|url=http://files.myopera.com/aid85/files/host/stintino.zip|name=Stintino, Italy|author=[http://my.opera.com/aid85 aid85]|license=|compat=0.9.x|description=High resolution 360° landscape taken at &amp;quot;LaPelosa&amp;quot; beach in Stintino (SS) Sardinia \ Italy - Europe \ Mediterranean Sea. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/vatican.jpg|url=http://soyouzworld.free.fr/landscape/vatican.zip|name=St Peter's Square, Vatican|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the St Peter's Square. City of Vatican. Some parts of the buildings are missing, not enough pictures... This site is part of [http://whc.unesco.org/en/list/286 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://files.myopera.com/aid85/files/host/Larvotto.jpg|url=http://files.myopera.com/aid85/files/host/munegu.zip|name=Munegu, MC|author=[http://my.opera.com/aid85 aid85]|license=|compat=0.9.x|description=High resolution 360° landscape taken at Larvotto beach in [http://en.wikipedia.org/wiki/Monaco Munegu \ Monaco - MC] (MonteCarlo) - Europe \ Mediterraneum Sea - Ligurian Sea. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/Bahia_de_Cadiz.jpg|url=http://www.stellarium.org/files/landscapes/Bahia_de_Cadiz.zip|name=Bahia de Cádiz, Spain|author=José Codejón|license=|compat=0.10.x|description=A new bridge is being built across de bay. The 360° panorama image was taken at noon of September 10th, 2012, from the pier of the small marina just closed to the Cadiz head of the bridge. &lt;br /&gt;
&lt;br /&gt;
The final picture is the result of stitching 11 frames, taken out of a 63 seconds full HD video, using PhotoStitch and Gimp 2.6.8. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.ticfisquim.org/astro/stellarium/thumbnails.jpg|url=http://www.ticfisquim.org/astro/stellarium/cocentaina.zip|name=Cocentaina, Spain|author=[http://www.ticfisquim.org Angel Juan Martínez]|license=|compat=0.9.x|description=This is a panoramic view from the roof of the Secondary School of Cocentaina, a little town of the Pais Valencià (Spain), in the mountains that are between Valencia and Alicante, where I teach Astronomy with the help of Stellarium. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.xs4all.nl/~adonet/stellarium/tulipfield.jpg|url=http://www.xs4all.nl/~adonet/stellarium/tulipfield.zip|name=Amstelveen, The Netherlands|author=[http://www.xs4all.nl/~adonet/stellarium/stellarium.html Jeroen Adolfse]|license=|compat=0.9.x|description=This landscape shows the tulipfields in spring (may 2008) in Schagerbrug, North Holland. It's an old_style landscape. (file is 4.5 Mb) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.didgeweb.com/stellarium/oudmeer_sample.png|url=http://www.didgeweb.com/stellarium/son_oudmeer.zip|name=Son &amp;amp;amp; Breugel, The Netherlands|author=[http://www.didgeweb.com/ Roland Mathijssen]|license=|compat=0.9.x|description=This landscape shows the Oude Meer (Old Lake) in the Sonse Heide in Son (close to Eindhoven). (file is 5.4 MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.obs-sirene.com/divers/stellarium/sirene.png|url=http://www.obs-sirene.com/divers/stellarium/sirene.zip|name=Sirene Observatory, Lagarde d'Apt (84), France|author=[http://cyprien.pouzenc.free.fr Cyprien Pouzenc]|license=|compat=0.9.x|description=Panoramic view of installations. Previously the site was used as a nuclear lauching pad. Now days, [http://www.obs-sirene.com Sirene] accepts everybody for astronomical observations. (File is 11 Mb) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.nett.is/~sveinki/stellarium/vonarskard-tn.png|url=http://www.nett.is/~sveinki/stellarium/vonarskard.zip|name=Vonarskar&amp;amp;eth;, Passage of Hope, Iceland|author=[http://www.nett.is/~sveinki/stellarium/ Sveinn &amp;amp;iacute; Felli]|license=|compat=0.9.x|description=This is the geographical center of Iceland, a barren pass between glaciers. Being sheltered from southern vinds by the huge Vatnajökull glacier, a great cold mass which then eliminates most humididy from the air, makes the place unusually good for stargazing. Old-style landscape, resolution is a bit low. (File is 1.1 Mb) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.brontovox.co.uk/Downloads/woodhenge_winter_solstice_sunset_ts.png|url=http://www.brontovox.co.uk/Downloads/woodhenge.zip|name=Woodhenge near Stonehenge|author=[http://www.brontovox.co.uk Hugo Jenks]|license=|compat=0.9.x|description=Woodhenge near Stonehenge was constructed around 2200 BC. It comprised numerous wooden posts set into the chalky ground. These posts of course decayed, and their positions today are marked with concrete cylinders. &lt;br /&gt;
&lt;br /&gt;
The posts are arranged, in plan view, as a series of concentric egg shapes. The axis of the egg shapes aligns approximately with summer solstice sunrise. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.brontovox.co.uk/Downloads/stonehenge_screenshot_st.jpg|url=http://www.brontovox.co.uk/Downloads/stonehenge.zip|name=Stonehenge|author=[http://www.brontovox.co.uk Hugo Jenks]|license=|compat=0.9.x|description=Was it an observatory? Yes indeed it was!  The alignment of the monument with the summer solstice sunrise has been well known for many years. The alignment with the winter solstice sunset may have been more significant. For the first time, many additional alignments are published, and are detailed here:  [http://www.brontovox.co.uk/ www.brontovox.co.uk] These alignments demonstrate that Stonehenge was primarily a functional scientific instrument, used for measuring angles. The angles of interest were the rising and setting bearings of the sun, moon, and stars. It was therefore possible to map the entire visible sky. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/rila.jpg|url=http://soyouzworld.free.fr/landscape/rila.zip|name=Rila Monastery, Bulgaria|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Rila Monastery in Bulgaria. This building is quite high so the sky area is not really large. This site is part of [http://whc.unesco.org/en/list/216 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://bg360.net/stellarium/silistar.jpg|url=http://bg360.net/stellarium/silistar.zip|name=Silistar, Bulgaria|author=[http://bg360.net BG360]|license=|compat=0.9.x|description=Panoramic view of the Silistar Beach in Bulgaria. See this panorama here [http://pano.bg360.net/silistar/index_en.php Flash pano]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://bg360.net/stellarium/alexandernevsky.jpg|url=http://bg360.net/stellarium/alexandernevsky.zip|name=St. Alexander Nevsky Cathedral, Sofia, Bulgaria|author=[http://bg360.net BG360]|license=|compat=0.9.x|description=Panoramic view of the Saint Alexander Nevsky Cathedral in Bulgaria. See this panorama here [http://pano.bg360.net/sofia/alexander-nevsky_en.php Flash pano]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://bg360.net/stellarium/rousse.jpg|url=http://bg360.net/stellarium/rousse.zip|name=Statue of Freedom, Rousse, Bulgaria|author=[http://bg360.net BG360]|license=|compat=0.9.x|description=Panoramic view from the center of Rousse in Bulgaria. See this panorama here [http://pano.bg360.net/ruse/pametnik-svobodata_en.php Flash pano]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/thumbnail-dm.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/dm.zip|name=Central Munich|author=Markus Dähne|license=|compat=0.9.x|description=This landscape shows the view from the Eastern observatory of the [http://www.beobachtergruppe.com Deutsches Museum] in Munich, Germany.  During public observing sessions, Stellarium is used to help explain the sky :-) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_leist_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_leist.zip|name=Leist, Switzerland|author=Bernd Lang|license=|compat=0.9.x|description=This landscape was developed from a panoramic picture of the Leist in Switzerland (2222m).  The picture was taken during a [http://www.panoramio.com/user/1437658 hiking tour] from Tanenboden to the top of the Leist. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_stonehenge_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_stonehenge.zip|name=Stonehenge, England|author=[http://www.freetadel.blogspot.com/ Fernando]|license=|compat=0.9.x|description=This landscape depicts Stonehenge - the famous prehistoric monument in Wiltshire, Southern England. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/avignon.jpg|url=http://soyouzworld.free.fr/landscape/avignon.zip|name=Place du Palais des Papes, Avignon|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Place du Palais des Papes in Avignon.  France. This site is part of [http://whc.unesco.org/en/list/228 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/avignonb.jpg|url=http://soyouzworld.free.fr/landscape/avignonb.zip|name=Le Pont d'Avignon, Avignon|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Pont d'Avignon (aka Bridge Saint-Bénezet) in Avignon.  France. This site is part of [http://whc.unesco.org/en/list/228 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/orange.jpg|url=http://soyouzworld.free.fr/landscape/orange.zip|name=Roman Theatre of Orange|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Roman Theatre of Orange- France. This site is part of [http://whc.unesco.org/en/list/163 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_cambridge_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_cambridge.zip|name=Centre for Mathematical Sciences, Cambridge, UK|author=[http://www.srcf.ucam.org/~mh519/ Matt Hickford]|license=|compat=0.9.x|description=Panorama from the grassy roof of the Centre for Mathematical Sciences, Cambridge University, UK in March. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_grantchester_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/grantchester.zip|name=Grantchester Meadows, Cambridgeshire, UK|author=[http://www.srcf.ucam.org/~mh519/ Matt Hickford]|license=|compat=0.9.x|description=Panorama from Grantchester Meadows, Cambridgeshire, UK in March. Flat horizon. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_areeiro_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_areeiro.zip|name=Pico do Areeiro|author=Filipe Gomes|license=|compat=0.9.x|description=This is a panoramic view of the [http://pt.wikipedia.org/wiki/Pico_do_Arieiro Pico do Areeiro], the second highest point of the island.  Madeira Island - Portugal. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_caniga_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_caniga.zip|name=Caniga Country|author=[http://www.flickr.com/photos/25710744@N03/2672852380/ Andrea Pittalis]|license=|compat=0.9.x|description=This landscape was taken from the Caniga Country, near Sassari in Sardinia, Italy. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.under-a-dark-sky.com/stellarium/cdn-landscape.jpg|url=http://www.under-a-dark-sky.com/stellarium/cdn.zip|name=Cuevas del Negro, Andalucia|author=Peter Lynch|license=|compat=0.9.x|description=A nearly flat rural landscape in southern Spain. The site has very dark skies and a view down to about 3&amp;amp;deg; to the south. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.astrosurf.com/aaaov/landscape/landscape_aaaov_thumb.jpg|url=http://www.astrosurf.com/aaaov/landscape/aaaov.zip|name=Astronomes Amateurs Aixois Observatoire Vauvenargues (AAAOV) - France|author=[http://www.astrosurf.com/aaaov AAAOV]|license=|compat=0.9.x|description=Vauvenargues Observatory located near Aix-en-Provence, France. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.astrosurf.com/aaaov/landscape/landscape_baie_saint_michel_thumb.jpg|url=http://www.astrosurf.com/aaaov/landscape/baie_saint_michel.zip|name=Astronomes Amateurs Aixois Observatoire Vauvenargues (AAAOV) - France|author=[http://www.astrosurf.com/aaaov AAAOV]|license=|compat=0.9.x|description=Saint Michel Bay - Serre Ponçon lake, Alpes - France. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_la_guardia_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_la_guardia.zip|name=La Guardia|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=|compat=0.9.x|description=La Guardia is a fishing village in Galicia, in the NW. of Spain. This landscape was taken on the 19/07/2008 at 12:38 p.m. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_uvalno_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_uvalno.zip|name=Uvalno, Czech Republic|author=|license=|compat=0.9.x|description=A view from a garden in the village of Uvalno, Czech Republic. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://astro.sentvid.org/stellarium/sentvid-thumbnail.png|url=http://astro.sentvid.org/stellarium/sentvid.zip|name=Šentvid, Ljubljana, Slovenia|author=|license=|compat=0.9.x|description=View from the roof of the observatory of Gymnasium Šentvid, Ljubljana, Slovenia. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://astronomia.zagan.pl/pliki/stellarium-moczyn.png|url=http://astronomia.zagan.pl/pliki/moczyn.zip|name=Poland,Zagan - sity Johannes Kepler|author=[http://astronomia.zagan.pl/articles.php?article_id=21 Jacek Patka]|license=|compat=0.9.x|description=View of the old quarter. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://perso.wanadoo.es/arias_llego/stellarium/laguardia/Thumbnail.png|url=http://perso.wanadoo.es/arias_llego/stellarium/laguardia/laguardia.zip|name=Port of La Guardia, Galicia, Spain|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=|compat=0.9.x|description=La Guardia is a fishing village in Galicia, in the NW. of Spain. This landscape was taken on the 19/07/2008.&lt;br /&gt;
&lt;br /&gt;
[http://perso.wanadoo.es/arias_llego/stellarium/laguardia/Port_of_La_Guardia.kmz Kmz file] }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/Thumbnail.png|url=http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/castrolaboreiro.zip|name=Castle of Castro Laboreiro 13th Century, Melgaço, Portugal|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=|compat=0.9.x|description=Castro Laboreiro is a village in Melgaço, in the NW. of Portugal. This landscape was taken on the 15/08/2010.&lt;br /&gt;
&lt;br /&gt;
Castle of Castro Laboreiro 13th Century, Melgaço, Portugal [http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/Castle_of_Castro_Laboreiro.kmz Kmz file] }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.cestomano.com/stellarium/thumbnail.png|url=http://www.cestomano.com/stellarium/lascanadas.zip|name=Las Cañadas del Teide, Tenerife, Spain|author=[http://www.cestomano.com José Ángel Estévez]|license=|compat=0.9.x|description=This landscape of Las Cañadas was built in April 2008. It's located in the center of Tenerife island, Canary Islands. It can be viewed the Teide volcano -the highest mountain in Spain: 3.718 mts.-, El Llano de Ucanca and Los Roques de García with the characteristic rock &amp;quot;El Cinchado&amp;quot; which, with Teide Volcano, appeared in the old 1.000 ptas. bill. &lt;br /&gt;
&lt;br /&gt;
'''Note:''' If you have problems with the landscape (landscape may not appear because low memory on VGA chip), try to download and replace the PNG landscape with [http://www.cestomano.com/stellarium/peq/lascanadas.png this 50% scaled image]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.waldvogel.com/stellarium/landscape_rodiano_tmb.png|url=http://www.waldvogel.com/stellarium/landscape_rodiano.zip|name=Frantoio Rodiano, Italy|author=Christian Waldvogel|license=|compat=0.9.x|description=The Frantoio Rodiano (Rodiano oil press) is situated on the foot of Mount Gargano in Puglia / Italy. Just a few kilometers uphill lies Monte Sant'Angelo, the famous stop for christian pilgrims on their way to Jerusalem. Stargazing has been kin to this region for milleniae: the oldest graves found in the Frantoio's vicinity date back to pre-etruscan times, and the famous Castel del Monte, an astronomical observation in itself, is not far either. The spherical landscape was created from 8 images taken on September 20th, 2010, at 1707, from the uppermost terrace of the Frantoio Rodiano. The landscape comes in three resolutions (1024 / 2048 / 4096). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/luene.jpg|url=http://www.ausgerechnet-jetzt.de/lueneburg.zip|name=Top of Water Tower of Lueneburg, Germany|author=Uwe Prolingheuer|license=|compat=0.9.x|description=This is a panoramic view from the top of old Water Tower 56m above ground, constructed 1906/07, in Lueneburg, a town with many retained medieval houses. Northern Germany. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/gas-gao.jpg|url=http://www.stellarium.org/files/landscapes/gas-gao.zip|name=GAS GAO, Russia|author=[http://www.kepler-observatorium.ru/ Andrey Kuznetsov]|license=|compat=0.10.x|description=Russia, Caucasus. The astronomical science station on the mountain Shadjatmaz. This is the view from amateur's observatory (by Andrey Kuznetsov, Sergey Kiselev). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/caucasus.jpg|url=http://www.stellarium.org/files/landscapes/caucasus.zip|name=Caucasus, Russia|author=[http://www.kepler-observatorium.ru/ Andrey Kuznetsov]|license=|compat=0.10.x|description=North Caucasus, Elbrus. }}&lt;br /&gt;
&lt;br /&gt;
===North America===&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/saltlakecity.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_salt_lake_city.zip|name=Salt Lake City Panorama|author=Hiram Bertoch|license=|compat=0.9.x|description=Hiram made this panorama for the KidsKnowIt Network's outreach program. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_sanjose_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_sanjose.zip|name=San Jose, California, USA|author=BrendaEM|license=|compat=0.9.x|description=This panorama was made using Nasa's WorldWind. Screenshots were taken at 45 degree increments. The screenshots were layered and stitched together, and then offset until the the Northern mountains were aligned. A landscape such as this could be made of any location in the world. There is a plug-in for WorldWind called &amp;quot;BigScreenshot,&amp;quot; that may make the process easier, but not automate it. A plug-in could be written to do this entire process automatically. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://trampleasure.net/science/solar-calendar/thumbnail.jpg|url=http://trampleasure.net/science/solar-calendar/landscape.ini|name=Berkeley, California, USA|author=Lee Trampleasure Amosslee|license=|compat=0.9.x|description=This panorama is centered at the [http://solarcalendar.org/ Cesar Chavez Memorial Solar Calendar] at the Berkeley Marina. The solar calendar has large stones that line up with the sunrises and sunsets at the equinoxes and solstices. [http://trampleasure.net/science/solar-calendar/chavez-solar-calendar-large.png 4096X2048 PNG photo, 8.3MB], or [http://trampleasure.net/science/solar-calendar/chavez-solar-calendar.png 2048x1024 PNG photo 2.1MB]. In the larger photo, I painted the Golden Gate bridge to make it stand out a bit more. Credits and location can be found in the [http://trampleasure.net/science/solar-calendar/landscape.ini landscapes.ini file]. Please include credits if you use/distribute this version.  }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.jrctech.net/landscapes/wiki-photos/tn_School-Image2.png|url=http://www.jrctech.net/landscapes/chesterton_school.zip|name=Chesterton Elementary School - San Diego, California, USA|author=[http://www.jrctech.net John Chester]|license=|compat=0.10.x|description=This landscape was taken to help encourage students to learn about science and astronomy using Stellarium.  The panorama was taken at the playground area of Chesterton Elementary School on October 23, 2011.  The image was constructed using the Multiple Image Method using 8 overlapping images to provide a high level of detail.  The original composite panorama image was 22442 (width) x 2418 (height) pixels .  Composite photo reduced to 5 equally sized photos of 2048 by 1024 pixels.  Many trees created complex horizon background but left details, such as tether-ball poles, in place during transparency development to keep landscape realistic.  The lines of the playground provide an interesting perspective with Stellarium. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/eltajin.jpg|url=http://soyouzworld.free.fr/landscape/eltajin.zip|name=El Tajin, Mexico|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the prehispanic city of El Tajin. Theses ruins are part of [http://whc.unesco.org/en/list/631 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/mexico.jpg|url=http://soyouzworld.free.fr/landscape/mexico.zip|name=Mexico Ciudad, Mexico|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Zocalo (Plaza de la Constitución) of Mexico Ciudad. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/uxmal.jpg|url=http://soyouzworld.free.fr/landscape/uxmal.zip|name=Uxmal, Yucatan, Mexico|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Cuadrangulo de las Monjas in Pre-Hispanic Town of Uxmal. This site is part of [http://whc.unesco.org/en/list/791 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://home.arcor.de/mdoege/pano/boulder_thumb.png|url=http://home.arcor.de/mdoege/pano/boulder.zip|name=University of Colorado at Boulder, Boulder, Colorado, USA|author=Martin C. Doege|license=|compat=0.9.x|description=View from Farrand Field at the [http://en.wikipedia.org/wiki/University_of_Colorado_at_Boulder University], with the [http://en.wikipedia.org/wiki/Flatirons Flatirons] to the southwest. (File is 2.9 Mb) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_jasperpyramidisland_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_jasperpyramidisland.zip|name=Jasper National Park, Alberta, Canada|author=[http://www.jasperdarksky.org/stellarium Rogier Gruys]|license=|compat=0.9.x|description=Pyramid Island dark sky observation site in [http://pc.gc.ca/jasper Jasper National Park], Alberta, Canada -  world's largest [http://www.jasperdarksky.org/ Dark Sky Preserve]. This site is only 15 min from the town of Jasper, yet nearly perfectly dark. The panorama was taken just before sunset in October 2011. }}&lt;br /&gt;
&lt;br /&gt;
===South America===&lt;br /&gt;
{{Package|image=http://www.essl.de/wp/wp-content/uploads/2008/03/paranalscreenshot.png|url=http://www.essl.de/wp/wp-content/uploads/2008/03/paranal.zip|name=ESO's Very Large Telescope in the Atacama Desert, Chile|author=[http://www.essl.de Dirk Essl]|license=|compat=0.9.x|description=The Very Large Telescope Project (VLT) is a system of four separate optical telescopes (the Antu telescope, the Kueyen telescope, the Melipal telescope, and the Yepun telescope) organized in an array formation. Each telescope has an 8.2 m aperture. The array is complemented by three movable Auxiliary Telescopes (ATs) of 1.8 m aperture. The project is organized by the [http://www.eso.org/ ESO]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/cachi.jpg|url=http://soyouzworld.free.fr/landscape/cachi.zip|name=Cachi, Argentina|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Parque National Los Cardones near the village of Cachi. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/lagunaverde.jpg|url=http://soyouzworld.free.fr/landscape/lagunaverde.zip|name=Laguna Verde, Bolivia|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Laguna Verde and Laguna Blanca under the Juriques (5704m) and Licancabur (5920m) Volcanos. These lakes are located in Reserva Nacional Eduardo Avaroa, Bolivia. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://documents.epfl.ch/users/m/mt/mtewes/www/permanent/euler_la_silla_thumb.png|url=http://documents.epfl.ch/users/m/mt/mtewes/www/permanent/euler_la_silla.zip|name=Swiss Euler Telescope, ESO La Silla Observatory, Chile|author=[http://obswww.unige.ch/~tewes/ Malte Tewes]|license=|compat=0.9.x|description=Euler is the nearby telescope that can be seen in the west. It is operated by the University of Geneva, and its main duty is the quest of extrasolar planets. The New Technology Telescope (NTT) shows up just behind Euler's control room, Tarot is in due south, and finally the venerable ESO 3.6 meter telescope sits on its hill in the southeast. The panorama was taken on September 3, 2010, at about 7:25 local time, a wonderful sunrise after a snowy night. [http://obswww.unige.ch/~tewes/stellarium_landscapes/ Screenshots] }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/images/landscape_braziland_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_braziland.zip|name=Divinópolis, Brazilia|author=[http://alquimiapopular.wordpress.com/psicologo/ Wanderson Nunes Ferreira]|license=|compat=0.9.x|description=[http://alquimiapopular.wordpress.com/psicologo/ Wanderson Nunes Ferreira] photographed this panorama in the Brazilian city of Divinópolis in March 2011 and stitched it together into a spherical panorama that can be used with Stellarium. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://resoundcity.com/resources/stellarium/shined_dream_tb.jpg|url=http://resoundcity.com/resources/stellarium/shined_dream.zip|name=Shined Dream, Argentina|author=Adrian Felipe Pera|license=|compat=0.9.x|description=[http://www.flickr.com/photos/afpera/7529438152 Shined Dream] by Adrian Felipe Pera, a [http://www.resoundcity.com/ ResoundCity] member. Pergamino, Buenos Aires, Argentina. A small town, but still flashed enough to see nearly the stars, or hear the song of the spheres. [http://www.flickr.com/photos/afpera/7529438152 Flickr image] [http://adn-pera.deviantart.com/#/d56ldh2 deviantart wallpaper]. }}&lt;br /&gt;
&lt;br /&gt;
===Polar regions===&lt;br /&gt;
{{Package|image=http://www.obs-sirene.com/divers/stellarium/concordia.png|url=http://www.obs-sirene.com/divers/stellarium/concordia.zip|name=French-Italian Concordia Station|author=[http://cyprien.pouzenc.free.fr Cyprien Pouzenc]|license=GPLv2+|compat=0.10.x|description=Panoramic view of the station installed at Dome C, Antarctica.}}&lt;br /&gt;
&lt;br /&gt;
===Special===&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/simple.jpg|url=http://www.stellarium.org/files/landscapes/simple.zip|name=Simple|author=[http://astro.uni-altai.ru/~aw/ Alexander Wolf]|license=Public Domain|compat=0.10.x|description=Simple semi-transparent texture for Stellarium.}}&lt;br /&gt;
&lt;br /&gt;
==Contributions==&lt;br /&gt;
Please feel free to contribute your own custom landscapes here.   Make thumbnails 200x114 pixels to fit with the rest of the page.  Please include a location section in your landscape.ini file with the longitude, latitude, altitude and planet for the location of the landscape (see one of the pre-existing landscapes for an example).&lt;br /&gt;
&lt;br /&gt;
To find out more about how to create a landscape, see the [http://www.porpoisehead.net/mysw/stellarium_user_guide_html-0.9.1-1/#SECTION00670000000000000000 Stellarium User Guide], and examine existing landscapes.  If you are having problems, posting to the forums is a good way to get some advice.&lt;br /&gt;
&lt;br /&gt;
===Important note on image dimensions===&lt;br /&gt;
'''IMPORTANT: Make sure all textures have dimensions which are integer powers of 2, i.e. 256, 512, 1024, 2048, 4096, 8192, 16384, ...   e.g. 4096 by 1024, 2048 by 2048 and so on.'''&lt;br /&gt;
&lt;br /&gt;
This is a limitation of OpenGL.  Some video hardware will work OK with images with different image dimensions, but many will not display properly, suffer vastly reduced frame rates, and even crash the computer.  &lt;br /&gt;
&lt;br /&gt;
'''Please make sure all contributed landscapes conform to these requirements, or your link may be removed.'''&lt;br /&gt;
&lt;br /&gt;
Be aware that many people's video hardware cannot handle very large textures.  This is hardware and driver dependent.  A typical maximum image size is 2048x2048 or 4096x4096.&lt;br /&gt;
&lt;br /&gt;
===Package contents===&lt;br /&gt;
Please package your landscape in a .zip file with all files inside a directory in the .zip file.  This should be unique to your landscape, and it would be nice it it was all lower-case with no spaces.  &lt;br /&gt;
&lt;br /&gt;
You should also include a readme.txt file which describes the landscape and specifies any usage restrictions or licensing terms for the images used in the landscape.  &lt;br /&gt;
&lt;br /&gt;
===Licensing===&lt;br /&gt;
Before you distribute images as part of a Stellarium landscape, please ensure you are legally entitled to - you must be the copyright holder for the images, or be able to distribute them for use with Stellarium under the terms of some agreement with the copyright holder (e.g. Creative Commons licensed images found on the web).&lt;br /&gt;
&lt;br /&gt;
It is important to explicitly state what use may be made of images for your landscape.  This should be done in the readme.txt file inside the .zip file.&lt;br /&gt;
&lt;br /&gt;
We recommend an open source license compatible with Stellarium itself (i.e. the GNU GPL), or one of the Creative Commons licenses.  &lt;br /&gt;
&lt;br /&gt;
===Example package contents===&lt;br /&gt;
&lt;br /&gt;
From the Mars Husband Hill landscape:&lt;br /&gt;
&lt;br /&gt;
 Archive:  landscape_mars_husband_hill.zip&lt;br /&gt;
   Length     Date   Time    Name&lt;br /&gt;
  --------    ----   ----    ----&lt;br /&gt;
   1815308  02-05-07 21:02   mars_husband_hill/husband_hill.png&lt;br /&gt;
       211  05-28-07 19:44   mars_husband_hill/landscape.ini&lt;br /&gt;
      1096  06-04-07 15:21   mars_husband_hill/readme.txt&lt;br /&gt;
  --------                   -------&lt;br /&gt;
   1816615                   3 files&lt;br /&gt;
&lt;br /&gt;
The readme.txt file should look something like this:&lt;br /&gt;
&lt;br /&gt;
 Mars Husband Hill Landscape for Stellarium&lt;br /&gt;
 ==========================================&lt;br /&gt;
 &lt;br /&gt;
 Description&lt;br /&gt;
 -----------&lt;br /&gt;
 &lt;br /&gt;
 This landscape was taken from the NASA Spirit Rover on Mars.&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 Files&lt;br /&gt;
 -----&lt;br /&gt;
 &lt;br /&gt;
 This file (readme.txt) should have come in a zip file with some others&lt;br /&gt;
 Here is a listing of all the files which should be in the zip file:&lt;br /&gt;
 &lt;br /&gt;
   mars/readme.txt&lt;br /&gt;
   mars/landscape.ini&lt;br /&gt;
   mars/husband_hill.png&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 Installation &amp;amp; Use&lt;br /&gt;
 ------------------&lt;br /&gt;
 &lt;br /&gt;
 Unzip the landscape package file in your personal stellarium data&lt;br /&gt;
 directory, or the &amp;lt;config_root&amp;gt;/landscapes directory.  The location&lt;br /&gt;
 varyies depending on your operating system.  See the Stellarium&lt;br /&gt;
 User Guide for per-platform details.&lt;br /&gt;
 &lt;br /&gt;
 Once you have installed the landscape, open Stellarium and go to the&lt;br /&gt;
 configuration dialog.  Select the landscapes tab, and select the landscape&lt;br /&gt;
 from the list of available landscapes.&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 Credits&lt;br /&gt;
 -------&lt;br /&gt;
 &lt;br /&gt;
 Image credit: NASA/JPL-Caltech/Cornell&lt;br /&gt;
 http://marsrovers.jpl.nasa.gov/gallery/panoramas/opportunity/index.html&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 License&lt;br /&gt;
 -------&lt;br /&gt;
 &lt;br /&gt;
 NASA Images are released into the public domain&lt;br /&gt;
&lt;br /&gt;
===File encoding===&lt;br /&gt;
The landscape.ini and readme.txt files should be UTF-8 encoded text or plain ASCII.  It's probably a good idea to adopt the Windows line ending encoding, (i.e. CR LF).  Both Windows and *nix style line ending encoding should work OK in Stellarium, but Windows users will have an ugly time reading the readme.txt if it uses *nix-style newlines.&lt;br /&gt;
&lt;br /&gt;
===Need hosting?===&lt;br /&gt;
&lt;br /&gt;
If you have a landscape you would like to share but have no web-space to put it, email [[User:matthewg42|me]] and I'll put it on [http://porpoisehead.net/ my site].&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
*[[Landscape Rotation]] - how to set landscape rotation so that a certain point is due north&lt;br /&gt;
*The user guide, section 5.7: [[Customising Landscapes]]&lt;br /&gt;
&lt;br /&gt;
==Tools==&lt;br /&gt;
The following tools may be useful to people who wish to create their own landscapes:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| width=15% | '''Program''' || width=20% | '''Platform(s)''' || width=15% | '''License''' || width=40% | '''Notes''' &lt;br /&gt;
|-&lt;br /&gt;
|[http://www.cs.ubc.ca/~mbrown/autostitch/autostitch.html Autostitch] &lt;br /&gt;
| Windows; may also run on Linux using [http://www.winehq.org/ Wine]&lt;br /&gt;
| Shareware/demo &lt;br /&gt;
| Looks like it produces good results.  Registered version includes extra types of projection.  No source code.&lt;br /&gt;
|-&lt;br /&gt;
|[http://hugin.sourceforge.net/ Hugin] &lt;br /&gt;
| Linux; FreeBSD; MacOSX; Windows&lt;br /&gt;
| Free/open source (GNU GPL)&lt;br /&gt;
| Hugin is a nice GUI for Panorama Tools&lt;br /&gt;
|-&lt;br /&gt;
||[http://webuser.fh-furtwangen.de/~dersch/ Panorama Tools]&lt;br /&gt;
| Linux; FreeBSD; MacOSX; Windows&lt;br /&gt;
| Free/open source (GNU GPL)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Microsoft's [http://research.microsoft.com/en-us/um/redmond/groups/ivm/ICE/ Image Composite Editor]&lt;br /&gt;
| Windows&lt;br /&gt;
| Free (costless) &lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
*[http://stargazerslounge.com/primers-tutorials/122628-tutorial-custom-stellarium-landscapes.html Tutorial: Custom Stellarium landscapes], thread at the Stargazers Lounge forum&lt;br /&gt;
*[http://www.cloudynights.com/ubbthreads/showflat.php/Number/3759113/ Stellarium landscape image of my back porch], thread at the Cloudy Nights forum (discusses using a home-made fish-eye lens from a peep-hole to create a &amp;quot;fisheye&amp;quot; landscape)&lt;br /&gt;
&lt;br /&gt;
[[Category:Landscapes]]&lt;br /&gt;
[[Category:Customization]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Landscapes</id>
		<title>Landscapes</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Landscapes"/>
				<updated>2012-12-16T15:00:04Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: /* Europe */ Added location URL&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==How to install landscapes==&lt;br /&gt;
After you have downloaded the .zip file for a landscape from this page, you need to install it in Stellarium.&lt;br /&gt;
&lt;br /&gt;
===Automatic===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;http://www.stellarium.org/wikiimg/stellarium-0-11-1/add-remove-landscapes-button.png&amp;lt;/div&amp;gt;&lt;br /&gt;
If you have Stellarium 0.10.6 or later version, you can use the &amp;quot;Add/remove landscapes&amp;quot; feature to install landscapes automatically:&lt;br /&gt;
*Open the &amp;quot;Sky and viewing options&amp;quot; window by clicking on the appropriate button in the left button bar (or press the F4 key).&lt;br /&gt;
*The &amp;quot;Add/remove landscapes&amp;quot; button is at the bottom of the &amp;quot;Landscape&amp;quot; tab.&lt;br /&gt;
*When you press it, the &amp;quot;Add/remove landscapes&amp;quot; window will appear. It allows you to install &amp;lt;tt&amp;gt;.zip&amp;lt;/tt&amp;gt; files containing landscapes. It also lists the user-installed landscapes and allows you to remove them.&lt;br /&gt;
&lt;br /&gt;
Note that while this makes installing landscapes easier, it may also cause you to overlook what else is included in the ZIP archive. Landscape packages created without this feature in mind may contain other files, such as alternative textures in different sizes.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;align:center&amp;quot;&amp;gt;http://www.stellarium.org/wikiimg/stellarium-0-11-1/add-remove-landscapes-window.png&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Manual===&lt;br /&gt;
If you are using an earlier version of Stellarium, you can follow this procedure to install a landscape package:&lt;br /&gt;
#Browse to your [[User Data Directory]], which varies according to your operating system. (eg. in Windows Vista/7 enter  %appdata%\stellarium in Explorer's location bar )&lt;br /&gt;
#Create a sub-directory called ''landscapes'' in your user directory (if it doesn't exist).&lt;br /&gt;
#Unzip the landscape .zip file in the ''landscapes'' directory (if it's done right, a sub-directory should be created for each landscape).&lt;br /&gt;
&lt;br /&gt;
NOTE: Older version of Stellarium (prior to v0.9.0) used a slightly different mechanism for doing landscapes. You can find a list of the old landscapes [[Landscapes pre 0.9.0|here]].&lt;br /&gt;
&lt;br /&gt;
Since version 0.10.5 Stellarium has problems in correctly loading old style landscapes (multi panel) if they are not 8 or 16 panel panoramas. Some old 4,7,9 qnd 10 side panoramas converted into 8 ides can be found here &lt;br /&gt;
*[http://sarcasmogerdes.dyndns.org/stellarium/uploads/wiruna-field.zip] (Wiruna field Barry's site)&lt;br /&gt;
*[http://sarcasmogerdes.dyndns.org/stellarium/uploads/egarden-new.zip] (Egarden 8 panel Barry's site)&lt;br /&gt;
*[http://sarcasmogerdes.dyndns.org/stellarium/uploads/neven-new.zip] (Como area Sydney Barry's site)&lt;br /&gt;
&lt;br /&gt;
==User contributed landscapes (by continent)==&lt;br /&gt;
We have landscapes for the seven continents (in the [http://en.wikipedia.org/wiki/Continent seven continent model]) - all, including from Antarctica !&lt;br /&gt;
===Interplanetary===&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/husband-hill.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_mars_husband_hill.zip|name=Husband Hill, Mars|author=Johan|license=Public Domain|compat=0.9.x|description=Johan transformed this Mars image from NASA into a spherical panorama that can be used with Stellarium.  Mars rover Spirit made this image during August 24 to 27, 2005. Image credit: NASA/JPL-Caltech/Cornell. Read more on [http://marsrovers.nasa.gov/gallery/panoramas/spirit/2005.html this webpage].}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/landscape_marsopportunity_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_mars_opportunity_rover.zip|name=Mars Opportunity Rover|author=Mike|license=Public Domain|compat=0.9.x|description=Mike sent posted this landscape in the forums.  Another nice Mars rover landscape.}}&lt;br /&gt;
 &lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_iss_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_iss.zip|name=International Space Station|author=Makc|license=GPL|compat=0.9.x|description=Landscape made using some screen shots and data from the wonderful [http://www.shatters.net/celestia/ Celestia].  Set the projection mode to stereographic, zoom out to a wide field of view and point down towards the ground to get the nice rounded &amp;quot;planet&amp;quot; effect.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_apollo_11_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_apollo_11.zip|name=Apollo 11 landing site|author=Mathew Myrup|compat=0.9.x|description=This landscape is made using NASA photographs taken by Buzz Aldrin. Look down and you can see Buzz's footprints :)}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_apollo_17_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_apollo_17.zip|name=Apollo 17 landing site|author=Mathew Myrup|compat=0.9.x|description=This landscape is made using NASA photographs taken by Gene Cernan.}}&lt;br /&gt;
&lt;br /&gt;
===Africa===&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/idehan.jpg|url=http://soyouzworld.free.fr/landscape/idehan.zip|name=Idehan Ubari, Libya|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|compat=0.10.x|description=This is a panoramic view of the desert of Idehan Ubari in Libya.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/leptis.jpg|url=http://soyouzworld.free.fr/landscape/leptis.zip|name=Leptis Magna, Libya|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|compat=0.10.x|description=This is a panoramic view of the theatre of the Roman city of Leptis Magna. This site is part of [http://whc.unesco.org/en/list/183 UNESCO World Heritage].}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/sahara.jpg|url=http://soyouzworld.free.fr/landscape/sahara.zip|name=Sahara, Libya|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|compat=0.10.x|description=This is a panoramic view from somewhere in the middle of the Sahara in Libya.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/waw-al-namus.jpg|url=http://soyouzworld.free.fr/landscape/waw-al-namus.zip|name=Volcano Waw al-Namus, Libya|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|compat=0.10.x|description=This is a panoramic view of Volcano Waw al-Namus in the Sahara.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.domani.ch/masoala/en/capmasoala_thumb.jpg|url=http://www.domani.ch/masoala/en/cap_masoala.zip|name=Cap Masoala, Madagascar|author=Matthias D. Frei|license=GPLv2+|compat=0.9.x|description=This panorama was photographed from the abandoned French lighthouse at the southernmost point of the Masoala peninsula in Madagascar. It provides a spectacular view over the Indian Ocean and the Masoala peninsula that is still mainly covered with rainforest. More information about this particular place can be found  [http://www.domani.ch/masoala/en/index.html here]}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_mbabane_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_mbabane.zip|name=Mbabane, Swaziland|author=Quinton Reissmann|compat=0.9.x|description=Mbabane is the capital of the little kingdom of Swaziland. Waterford/Kamhlaba is an international school on a mountain side which prides itself in cultural diversity. In SiSwati &amp;quot;kamhlaba&amp;quot; means &amp;quot;a world in miniature&amp;quot;. The actual view is from the sports field where we usually set up the telescope.}}&lt;br /&gt;
&lt;br /&gt;
===Asia===&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_everest_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_everest.zip|name=Mount Everest|author=Makc|license=&amp;amp;copy;|compat=0.9.x|description=Amazing parorama of the summit of Mount Everest, 8.85 km above sea level.  [http://www.everestviews.com/ Roddy Mackenzie], who climbed the mountain in 1989, captured the image.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_jantar_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_jantar.zip|name=Jantar Mantar|author=Barry Perlus &amp;amp; Stellarium team|license=CC BY-NC-SA 3.0|compat=0.9.x|description=Professor Barry Perlus of Cornell University allowed us to use his panoramic photography of one of the Jantar Mantars in India to create this landscape.  For more information on these fascinating scientific and architectural works see [http://jantarmantar.org/ jantarmantar.org].}}&lt;br /&gt;
&lt;br /&gt;
===Australasia===&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/beaumont-hills.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_beaumont_hills.zip|name=Beaumont Hills, Sydney, Australia|author=Barry Gerdes|license=GPLv2+|compat=0.9.x|description=Barry made an interesting multiple-image landscape from the rooftop of his house. You can find a detailed account of how this was done in the [http://porpoisehead.net/mysw/stellarium_user_guide_html-0.9.0-1/#SECTION001100000000000000000 Stellarium User Guide].}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/transit-hill.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_transit_hill.zip|name=Transit Hill, Lord Howe Island, Australia|author=Graeme Ewing|compat=0.9.x|description=Graeme Ewing Contributed this panorama of the astronomically significant and visually stunning Transit Hill site Northeast of Sydney, Australia. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_penneshaw_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_penneshaw.zip|name=Penneshaw, Kangaroo Island, Australia|author=Clive Nelson|compat=0.9.x|description=Penneshaw is a small township at the Northwest end of Kangaroo Island, off the coast of South Australia. In the north is the entrance to Gulf St Vincent and the Australian mainland. In the east is the Penneshaw township, To the west, on the horizon, is Kingscote, the main town on Kangaroo Island.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_largsbay_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_largsbay.zip|name=Largs Bay in South Australia|author=Martin Lewicki|license=GPL|compat=0.9.x|description=Panoramic view of Largs Bay in South Australia 8 panel old style landscape. Largs Pier Hotel facade in SSE and Largs Bay Sailing Club due east. Jetty extends to Gulf St Vincent to the west.}}&lt;br /&gt;
&lt;br /&gt;
===Europe===&lt;br /&gt;
{{Package|image=http://www.observatoire-naef.ch/assets/files/ependes-thumbnail.png|url=https://github.com/martignoni/ependes-landscape/raw/master/ependes.zip|name=Épendes Observatory, Fribourg, Switzerland|author=[http://www.stellarium.org/wiki/index.php/User:Mina Nicolas Martignoni]|license=CC BY-NC-SA 3.0|compat=0.10.x|description=The [http://www.observatoire-naef.ch/ Épendes Observatory] ([http://toolserver.org/~geohack/geohack.php?params=46.76236_N_7.13938_E 46°45′45″N 7°08′22″E]) is located near the city of Fribourg, Switzerland. The images for this landscape were taken in August 2006. The landscape comes in three resolutions (1024 / 2048 / 4096). File size is about 2.4 MB.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://michael.nadev.net/pub/wurania.png|url=http://michael.nadev.net/pub/wurania.zip|name=Urania Observatory, Vienna, Austria|author=Michael Prokosch|license=CC BY-ND 3.0|compat=0.9.x|description=The [http://www.astronomie-wien.at/astronomie_urania.html Urania Observatory] (48°12′41.88″N 16°23′1.53″E) is located right in the middle of the city of Vienna, capital of Austria. Built in 1910 under emporer Franz Joseph I. it's the countries oldest non-scientifical observatory still in use for people's education. This landscape was taken in August 2011. If you are not distracted by the stars, you can even see St. Stephan's cathedral, the Viennese Giant Wheel and the Danube Canal. File size is about 11.5 MB.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://perso.wanadoo.es/arias_llego/stellarium/laguardia/Thumbnail.png|url=http://perso.wanadoo.es/arias_llego/stellarium/laguardia/laguardia.zip|name=Port of La Guardia, Galicia, Spain|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=CC BY-NC-ND 3.0|compat=0.10.x|description=La Guardia is a fishing village in Galicia, in the NW. of Spain. This landscape was taken on the 19/07/2008. '''[http://perso.wanadoo.es/arias_llego/stellarium/laguardia/Port_of_La_Guardia.kmz KMZ file]'''. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/Thumbnail.png|url=http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/castrolaboreiro.zip|name=Castle of Castro Laboreiro 13th Century, Melgaço, Portugal|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=CC BY-NC-ND 3.0|compat=0.10.x|description=Castro Laboreiro is a village in Melgaço, in the NW. of Portugal. This landscape was taken on the 15/08/2010. '''[http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/Castle_of_Castro_Laboreiro.kmz Kmz file]'''. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.cestomano.com/stellarium/thumbnail.png|url=http://www.cestomano.com/stellarium/lascanadas.zip|name=Las Cañadas del Teide, Tenerife, Spain|author=[http://www.cestomano.com José Ángel Estévez]|license=|compat=0.10.x|description=This landscape of Las Cañadas was built in April 2008. It's located in the center of Tenerife island, Canary Islands. It can be viewed the Teide volcano -the highest mountain in Spain: 3.718 mts.-, El Llano de Ucanca and Los Roques de García with the characteristic rock &amp;quot;El Cinchado&amp;quot; which, with Teide Volcano, appeared in the old 1.000 ptas. bill. &lt;br /&gt;
&lt;br /&gt;
'''Note:''' If you have problems with the landscape (landscape may not appear because low memory on VGA chip), try to download and replace the PNG landscape with [http://www.cestomano.com/stellarium/peq/lascanadas.png this 50% scaled image]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.waldvogel.com/stellarium/landscape_jungfraujoch_tmb.png|url=http://www.waldvogel.com/stellarium/landscape_jungfraujoch.zip|name=Jungfraujoch High Altitude Research Station, Switzerland|author=Christian Waldvogel|license=|compat=0.10.x|description=Lying at 3580m in the Bernese Alps, the Jungfraujoch is often dubbed &amp;quot;Top of Europe&amp;quot;. It has been home to an astronomical observation station for more than 80 years. The spherical landscape was created from 20 images taken on June 29th, 2008, at 1015, from the lower terrace of the Sphinx Obervatory. The landscape comes in three resolutions (1024 / 2048 / 4096). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/San_Pietro.jpg|url=http://www.stellarium.org/files/landscapes/San_Pietro.zip|name=St Peter's Square (Vatican)|author=Gianfranco Mazzani|license=|compat=0.10.x|description=This is a complete high resolution panoramic view of the St Peter's Square, City of Vatican. &lt;br /&gt;
&lt;br /&gt;
Gianfranco Mazzani photographed this panorama in july 2004 by using a Nikon Coolpix 8700, and stitched &lt;br /&gt;
the original 10 pictures together into a spherical panorama using Hugin program. The panorama has been &lt;br /&gt;
than cutted into 8 alfa channel pictures and re-dimensioned the width to 2048 pixel and then dimensioned &lt;br /&gt;
the height to 32 cm by using Photoschop elements 2.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.waldvogel.com/stellarium/landscape_rodiano_tmb.png|url=http://www.waldvogel.com/stellarium/landscape_rodiano.zip|name=Frantoio Rodiano, Italy|author=Christian Waldvogel|license=|compat=0.10.x|description=The Frantoio Rodiano (Rodiano oil press) is situated on the foot of Mount Gargano in Puglia / Italy. Just a few kilometers uphill lies Monte Sant'Angelo, the famous stop for christian pilgrims on their way to Jerusalem. Stargazing has been kin to this region for milleniae: the oldest graves found in the Frantoio's vicinity date back to pre-etruscan times, and the famous Castel del Monte, an astronomical observation in itself, is not far either. The spherical landscape was created from 8 images taken on September 20th, 2010, at 1707, from the uppermost terrace of the Frantoio Rodiano. The landscape comes in three resolutions (1024 / 2048 / 4096). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://pano.jubila.de/stellarium/muchachos_thumb.jpg|url=http://pano.jubila.de/stellarium/muchachos.zip|name=Roque de los Muchachos, La Palma, Spain|author=Uwe Buecher|license=|compat=0.10.x|description=This high resolution landscape was built with hugin from 20 photos taken in October 2007. It is located on top of the highest mountain on La Palma, Canary Islands. You can see the Buildings of the Observatorio del Roque de los Muchachos, one of them is the Gran Telescopio Canarias (GTC) which is the greatest telescope in the world today (10.4m diameter). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_egarden_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_egarden.zip|name=English Garden, Munich, Germany|author=Rob Spearman, Johan Meuris|license=|compat=0.9.x|description=This high resolution landscape was taken in April 2007 by Rob. Johan helped with the post production.  The result is a very high quality landscape. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_egarden_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_egarden_old_style.zip|name=English Garden, Munich, Germany|author=Rob Spearman, Johan Meuris|license=|compat=0.9.x|description=The original English Garden landscape was re-constructed by Barry Gerdes as an old_style landscape.  This means that it can be used with video hardware which cannot cope with single very large texture files, and yet preserves the resolution of the landscape (by splitting the images into multiple files). Try this is the original English Garden landscapes doesn't load on your computer. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/voksenlia.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_voksenlia.zip|name=Voksenlia, Oslo, Norway|author=Steinar Midtskogen|license=|compat=0.10.x|description=Steinar Midtskogen sent [http://porpoisehead.net/mysw/downloads/voksenlia.png this huge (17 MiB!) spherical landscape image] of Voksenlia, Oslo, Norway (59°58'14N, 10°38'57E, alt=348m). (Currently not working with version 0.9.0). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/observatory-hill-Barry.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_edinburgh.zip|name=Calton Hill, Edinburgh, Scotland|author=Friedrich Noelle, Barry Gerdes|license=|compat=0.9.x|description=Friedrich Noelle took a nice panorama of Observatory Hill, Edinburgh which Barry converted into a Stellarium landscape. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/sight_thumb.jpg|url=http://www.geomancygroup.org/stella/sighthill.zip|name=Sighthill stone circle, Glasgow, Scotland|author=[http://www.geomancygroup.org Grahame Gardner]|license=|compat=0.9.x|description=Sighthill stone circle is a modern stone ring constructed in 1979 by amateur astronomer and SF writer Duncan Lunan. Located next to the M8 motorway in Glasgow city centre, yet with surprisingly good views, the circle has alignments to the solsticial solar rises and settings and the lunar standstills. Alignments to the rising of Rigel are included for 1979 AD and 1800 BC. (2MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/beech_thumb.jpg|url=http://www.geomancygroup.org/stella/beechhill.zip|name=Beech Hill stone circle, nr. Nutley, E. Sussex, England|author=[http://www.geomancygroup.org Grahame Gardner]|license=|compat=0.9.x|description=Beech Hill is a modern stone ring constructed in 2000 by Ivan McBeth and Richard Creightmore of The Geomancy Group [http://www.geomancygroup.org/ www.geomancygroup.org]. Located in the Ashdown Forest, the circle's main alignment is to the Pole Star, denoted by the angled outlier. (2.2MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/calave_tb.jpg|url=http://www.geomancygroup.org/stella/calanaisave.zip|name=Calanais I (Callanish) Avenue, Lewis, Western Isles, Scotland|author=[http://www.geomancygroup.org Grahame Gardner]|license=|compat=0.9.x|description=Callanish is arguably the finest megalithic monument in the British Isles, and is just the largest site in a vast complex of interconnected monuments designed to observe the southern major standstills of the moon. From this position at the end of the avenue, the moon is seen to set behind the rocky outcrop of Cnoc-an-Tursa, only to 're-gleam' in the centre of the main circle a short time afterwards. (4MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/machrie_tb.jpg|url=http://www.geomancygroup.org/stella/machrie5.zip|name=Machrie Moor 5, Isle of Arran, Scotland|author=[http://www.geomancygroup.org Grahame Gardner]|license=|compat=0.9.x|description=This delightful little double-concentric stone circle is the first site you come to when visiting the Machrie Moor complex of megalithic sites on Arran. Although not the most spectactular site in the group, it is one of the most complete and has good views. (7.3MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/mitchthumbnail.jpg|url=http://www.geomancygroup.org/stella/mitchell2.zip|name=Mitchell's Fold stone circle, Shropshire, England|author=[http://www.vallecrucisgrail.co.uk/ Ian Pegler]|license=|compat=0.9.x|description=This wonderful ancient stone circle stands on a plateau amid the rolling Shropshire hills and is loved by walkers, dowsers and Wiccans alike. April 2010 - new version uploaded, featuring improved centre camera position based on Alexander Thom's geometry and improved alignments. (1.8MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/aveburyn_thumb.jpg|url=http://www.geomancygroup.org/stella/aveburynorth.zip|name=Avebury - North circle, Wiltshire, England|author=[http://www.vallecrucisgrail.co.uk/ Ian Pegler]|license=|compat=0.9.x|description=The North circle of the largest megalithic complex in Europe. In the background you can just make out the Red Lion pub. (1MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/vallecrucis_thumb.jpg|url=http://www.geomancygroup.org/stella/vallecrucis.zip|name=Valle Crucis Abbey, Llangollen, North Wales|author=[http://www.vallecrucisgrail.co.uk/ Ian Pegler]|license=|compat=0.9.x|description=This ruined Cistercian abbey dates to 1200 but may be the site of a much earlier Dark Age settlement with a very early Christian church. (2.5MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/ponta-da-piedade.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_lagos.zip|name=Ponta da Piedade, Algarve, Lagos, Portugal|author=Johan|license=|compat=0.9.x|description=Johan photographed this panorama in June 2006 and stitched it together into a spherical panorama that can be used with Stellarium.  You see sandstone cliffs on the Atlantic coast of southern Portugal, a lighthouse, and a natural bridge. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/landscape_gurnigel_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_gurnigel.zip|name=Gurnigel, Switzerland|author=Martin Mutti|license=|compat=0.9.x|description=This is the site of the Bern Astronomical Society's observing site. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/tishinka-ardashev.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_tishinka.zip|name=Tishinka, Russia|author=Dmitri Ardashev|license=|compat=0.9.x|description=This is a small village between Moscow's and Kaluga's regions, in 130 km south-west of Moscow (55°18'32.46N, 36°26'42.06E, alt=195). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_t60pic_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_t60pic.zip|name=T60 dome, Pic du Midi Observatory, France|author=Sylvain Rondi|license=|compat=0.9.x|description=Sylvain photographed this panorama in February 2007 and stitched it together into a spherical panorama that can be used with Stellarium. This is the panoramic view from the amateur 60cm telescope dome from [http://astrosurf.com/t60/ T60 Association], installed at Pic du Midi Observatory. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_t1mpic_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_t1mpic.zip|name=T1M terrasse, Pic du Midi Observatory, France|author=Sylvain Rondi|license=|compat=0.9.x|description=Sylvain photographed this panorama in February 2007 and stitched it together into a spherical panorama that can be used with Stellarium. This is the panoramic view from the terrasse of the professional 106cm telescope at Pic du Midi Observatory (France). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_sheffieldrivelin_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_sheffieldrivelin.zip|name=River Rivelin, Sheffield, UK|author=Jan Wedekind|license=CC SA-2.0|compat=0.9.x|description=This is a 270° fisheye panorama created from 40 photos using Hugin. It shows the River Rivelin in Sheffield in the middle of April 2007. The fringes (twigs and tree tops) where dimmed out using The Gimp. The overexposed parts of the horizon have been removed. Copyright (C) 2007, [[User:Wedesoft|Jan Wedekind]], [http://creativecommons.org/licenses/by-sa/2.0/ Creative Commons Attribution ShareAlike License 2.0] }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_ares_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_ares.zip|name=Ares, Galicia, Spain|author=[http://www.stellarium.org/wiki/index.php/User:rcasl Rubén Castiñeiras Lorenzo]|license=|compat=0.9.x|description=Ares is a small fishing village in Galicia, in the NW of Spain, close to the city of Ferrol. The 360 degree image was taken at the noon of August 6th, 2007, just in front of the &amp;quot;Paseo Rosalía de Castro&amp;quot;. It has been made with 17 photos, stitched with Hugin 0.7 beta 4 and retouched with the Gimp 2.2.17. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_ovindoli_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_ovindoli.zip|name=Ovindoli, Italy|author=Pierluigi Panunzi|license=|compat=0.9.x|description=Ovindoli is a famous ski resort in central Italy. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/rustrel.jpg|url=http://soyouzworld.free.fr/landscape/rustrel.zip|name=Rustrel, France|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Colorado de Rustrel in &amp;quot;Les Sentiers de l'Ocre et du Fer&amp;quot;, Provence, France. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://files.myopera.com/aid85/files/host/Stintino.jpg|url=http://files.myopera.com/aid85/files/host/stintino.zip|name=Stintino, Italy|author=[http://my.opera.com/aid85 aid85]|license=|compat=0.9.x|description=High resolution 360° landscape taken at &amp;quot;LaPelosa&amp;quot; beach in Stintino (SS) Sardinia \ Italy - Europe \ Mediterranean Sea. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/vatican.jpg|url=http://soyouzworld.free.fr/landscape/vatican.zip|name=St Peter's Square, Vatican|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the St Peter's Square. City of Vatican. Some parts of the buildings are missing, not enough pictures... This site is part of [http://whc.unesco.org/en/list/286 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://files.myopera.com/aid85/files/host/Larvotto.jpg|url=http://files.myopera.com/aid85/files/host/munegu.zip|name=Munegu, MC|author=[http://my.opera.com/aid85 aid85]|license=|compat=0.9.x|description=High resolution 360° landscape taken at Larvotto beach in [http://en.wikipedia.org/wiki/Monaco Munegu \ Monaco - MC] (MonteCarlo) - Europe \ Mediterraneum Sea - Ligurian Sea. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/Bahia_de_Cadiz.jpg|url=http://www.stellarium.org/files/landscapes/Bahia_de_Cadiz.zip|name=Bahia de Cádiz, Spain|author=José Codejón|license=|compat=0.10.x|description=A new bridge is being built across de bay. The 360° panorama image was taken at noon of September 10th, 2012, from the pier of the small marina just closed to the Cadiz head of the bridge. &lt;br /&gt;
&lt;br /&gt;
The final picture is the result of stitching 11 frames, taken out of a 63 seconds full HD video, using PhotoStitch and Gimp 2.6.8. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.ticfisquim.org/astro/stellarium/thumbnails.jpg|url=http://www.ticfisquim.org/astro/stellarium/cocentaina.zip|name=Cocentaina, Spain|author=[http://www.ticfisquim.org Angel Juan Martínez]|license=|compat=0.9.x|description=This is a panoramic view from the roof of the Secondary School of Cocentaina, a little town of the Pais Valencià (Spain), in the mountains that are between Valencia and Alicante, where I teach Astronomy with the help of Stellarium. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.xs4all.nl/~adonet/stellarium/tulipfield.jpg|url=http://www.xs4all.nl/~adonet/stellarium/tulipfield.zip|name=Amstelveen, The Netherlands|author=[http://www.xs4all.nl/~adonet/stellarium/stellarium.html Jeroen Adolfse]|license=|compat=0.9.x|description=This landscape shows the tulipfields in spring (may 2008) in Schagerbrug, North Holland. It's an old_style landscape. (file is 4.5 Mb) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.didgeweb.com/stellarium/oudmeer_sample.png|url=http://www.didgeweb.com/stellarium/son_oudmeer.zip|name=Son &amp;amp;amp; Breugel, The Netherlands|author=[http://www.didgeweb.com/ Roland Mathijssen]|license=|compat=0.9.x|description=This landscape shows the Oude Meer (Old Lake) in the Sonse Heide in Son (close to Eindhoven). (file is 5.4 MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.obs-sirene.com/divers/stellarium/sirene.png|url=http://www.obs-sirene.com/divers/stellarium/sirene.zip|name=Sirene Observatory, Lagarde d'Apt (84), France|author=[http://cyprien.pouzenc.free.fr Cyprien Pouzenc]|license=|compat=0.9.x|description=Panoramic view of installations. Previously the site was used as a nuclear lauching pad. Now days, [http://www.obs-sirene.com Sirene] accepts everybody for astronomical observations. (File is 11 Mb) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.nett.is/~sveinki/stellarium/vonarskard-tn.png|url=http://www.nett.is/~sveinki/stellarium/vonarskard.zip|name=Vonarskar&amp;amp;eth;, Passage of Hope, Iceland|author=[http://www.nett.is/~sveinki/stellarium/ Sveinn &amp;amp;iacute; Felli]|license=|compat=0.9.x|description=This is the geographical center of Iceland, a barren pass between glaciers. Being sheltered from southern vinds by the huge Vatnajökull glacier, a great cold mass which then eliminates most humididy from the air, makes the place unusually good for stargazing. Old-style landscape, resolution is a bit low. (File is 1.1 Mb) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.brontovox.co.uk/Downloads/woodhenge_winter_solstice_sunset_ts.png|url=http://www.brontovox.co.uk/Downloads/woodhenge.zip|name=Woodhenge near Stonehenge|author=[http://www.brontovox.co.uk Hugo Jenks]|license=|compat=0.9.x|description=Woodhenge near Stonehenge was constructed around 2200 BC. It comprised numerous wooden posts set into the chalky ground. These posts of course decayed, and their positions today are marked with concrete cylinders. &lt;br /&gt;
&lt;br /&gt;
The posts are arranged, in plan view, as a series of concentric egg shapes. The axis of the egg shapes aligns approximately with summer solstice sunrise. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.brontovox.co.uk/Downloads/stonehenge_screenshot_st.jpg|url=http://www.brontovox.co.uk/Downloads/stonehenge.zip|name=Stonehenge|author=[http://www.brontovox.co.uk Hugo Jenks]|license=|compat=0.9.x|description=Was it an observatory? Yes indeed it was!  The alignment of the monument with the summer solstice sunrise has been well known for many years. The alignment with the winter solstice sunset may have been more significant. For the first time, many additional alignments are published, and are detailed here:  [http://www.brontovox.co.uk/ www.brontovox.co.uk] These alignments demonstrate that Stonehenge was primarily a functional scientific instrument, used for measuring angles. The angles of interest were the rising and setting bearings of the sun, moon, and stars. It was therefore possible to map the entire visible sky. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/rila.jpg|url=http://soyouzworld.free.fr/landscape/rila.zip|name=Rila Monastery, Bulgaria|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Rila Monastery in Bulgaria. This building is quite high so the sky area is not really large. This site is part of [http://whc.unesco.org/en/list/216 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://bg360.net/stellarium/silistar.jpg|url=http://bg360.net/stellarium/silistar.zip|name=Silistar, Bulgaria|author=[http://bg360.net BG360]|license=|compat=0.9.x|description=Panoramic view of the Silistar Beach in Bulgaria. See this panorama here [http://pano.bg360.net/silistar/index_en.php Flash pano]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://bg360.net/stellarium/alexandernevsky.jpg|url=http://bg360.net/stellarium/alexandernevsky.zip|name=St. Alexander Nevsky Cathedral, Sofia, Bulgaria|author=[http://bg360.net BG360]|license=|compat=0.9.x|description=Panoramic view of the Saint Alexander Nevsky Cathedral in Bulgaria. See this panorama here [http://pano.bg360.net/sofia/alexander-nevsky_en.php Flash pano]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://bg360.net/stellarium/rousse.jpg|url=http://bg360.net/stellarium/rousse.zip|name=Statue of Freedom, Rousse, Bulgaria|author=[http://bg360.net BG360]|license=|compat=0.9.x|description=Panoramic view from the center of Rousse in Bulgaria. See this panorama here [http://pano.bg360.net/ruse/pametnik-svobodata_en.php Flash pano]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/thumbnail-dm.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/dm.zip|name=Central Munich|author=Markus Dähne|license=|compat=0.9.x|description=This landscape shows the view from the Eastern observatory of the [http://www.beobachtergruppe.com Deutsches Museum] in Munich, Germany.  During public observing sessions, Stellarium is used to help explain the sky :-) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_leist_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_leist.zip|name=Leist, Switzerland|author=Bernd Lang|license=|compat=0.9.x|description=This landscape was developed from a panoramic picture of the Leist in Switzerland (2222m).  The picture was taken during a [http://www.panoramio.com/user/1437658 hiking tour] from Tanenboden to the top of the Leist. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_stonehenge_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_stonehenge.zip|name=Stonehenge, England|author=[http://www.freetadel.blogspot.com/ Fernando]|license=|compat=0.9.x|description=This landscape depicts Stonehenge - the famous prehistoric monument in Wiltshire, Southern England. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/avignon.jpg|url=http://soyouzworld.free.fr/landscape/avignon.zip|name=Place du Palais des Papes, Avignon|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Place du Palais des Papes in Avignon.  France. This site is part of [http://whc.unesco.org/en/list/228 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/avignonb.jpg|url=http://soyouzworld.free.fr/landscape/avignonb.zip|name=Le Pont d'Avignon, Avignon|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Pont d'Avignon (aka Bridge Saint-Bénezet) in Avignon.  France. This site is part of [http://whc.unesco.org/en/list/228 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/orange.jpg|url=http://soyouzworld.free.fr/landscape/orange.zip|name=Roman Theatre of Orange|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Roman Theatre of Orange- France. This site is part of [http://whc.unesco.org/en/list/163 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_cambridge_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_cambridge.zip|name=Centre for Mathematical Sciences, Cambridge, UK|author=[http://www.srcf.ucam.org/~mh519/ Matt Hickford]|license=|compat=0.9.x|description=Panorama from the grassy roof of the Centre for Mathematical Sciences, Cambridge University, UK in March. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_grantchester_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/grantchester.zip|name=Grantchester Meadows, Cambridgeshire, UK|author=[http://www.srcf.ucam.org/~mh519/ Matt Hickford]|license=|compat=0.9.x|description=Panorama from Grantchester Meadows, Cambridgeshire, UK in March. Flat horizon. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_areeiro_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_areeiro.zip|name=Pico do Areeiro|author=Filipe Gomes|license=|compat=0.9.x|description=This is a panoramic view of the [http://pt.wikipedia.org/wiki/Pico_do_Arieiro Pico do Areeiro], the second highest point of the island.  Madeira Island - Portugal. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_caniga_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_caniga.zip|name=Caniga Country|author=[http://www.flickr.com/photos/25710744@N03/2672852380/ Andrea Pittalis]|license=|compat=0.9.x|description=This landscape was taken from the Caniga Country, near Sassari in Sardinia, Italy. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.under-a-dark-sky.com/stellarium/cdn-landscape.jpg|url=http://www.under-a-dark-sky.com/stellarium/cdn.zip|name=Cuevas del Negro, Andalucia|author=Peter Lynch|license=|compat=0.9.x|description=A nearly flat rural landscape in southern Spain. The site has very dark skies and a view down to about 3&amp;amp;deg; to the south. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.astrosurf.com/aaaov/landscape/landscape_aaaov_thumb.jpg|url=http://www.astrosurf.com/aaaov/landscape/aaaov.zip|name=Astronomes Amateurs Aixois Observatoire Vauvenargues (AAAOV) - France|author=[http://www.astrosurf.com/aaaov AAAOV]|license=|compat=0.9.x|description=Vauvenargues Observatory located near Aix-en-Provence, France. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.astrosurf.com/aaaov/landscape/landscape_baie_saint_michel_thumb.jpg|url=http://www.astrosurf.com/aaaov/landscape/baie_saint_michel.zip|name=Astronomes Amateurs Aixois Observatoire Vauvenargues (AAAOV) - France|author=[http://www.astrosurf.com/aaaov AAAOV]|license=|compat=0.9.x|description=Saint Michel Bay - Serre Ponçon lake, Alpes - France. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_la_guardia_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_la_guardia.zip|name=La Guardia|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=|compat=0.9.x|description=La Guardia is a fishing village in Galicia, in the NW. of Spain. This landscape was taken on the 19/07/2008 at 12:38 p.m. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_uvalno_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_uvalno.zip|name=Uvalno, Czech Republic|author=|license=|compat=0.9.x|description=A view from a garden in the village of Uvalno, Czech Republic. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://astro.sentvid.org/stellarium/sentvid-thumbnail.png|url=http://astro.sentvid.org/stellarium/sentvid.zip|name=Šentvid, Ljubljana, Slovenia|author=|license=|compat=0.9.x|description=View from the roof of the observatory of Gymnasium Šentvid, Ljubljana, Slovenia. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://astronomia.zagan.pl/pliki/stellarium-moczyn.png|url=http://astronomia.zagan.pl/pliki/moczyn.zip|name=Poland,Zagan - sity Johannes Kepler|author=[http://astronomia.zagan.pl/articles.php?article_id=21 Jacek Patka]|license=|compat=0.9.x|description=View of the old quarter. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://perso.wanadoo.es/arias_llego/stellarium/laguardia/Thumbnail.png|url=http://perso.wanadoo.es/arias_llego/stellarium/laguardia/laguardia.zip|name=Port of La Guardia, Galicia, Spain|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=|compat=0.9.x|description=La Guardia is a fishing village in Galicia, in the NW. of Spain. This landscape was taken on the 19/07/2008.&lt;br /&gt;
&lt;br /&gt;
[http://perso.wanadoo.es/arias_llego/stellarium/laguardia/Port_of_La_Guardia.kmz Kmz file] }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/Thumbnail.png|url=http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/castrolaboreiro.zip|name=Castle of Castro Laboreiro 13th Century, Melgaço, Portugal|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=|compat=0.9.x|description=Castro Laboreiro is a village in Melgaço, in the NW. of Portugal. This landscape was taken on the 15/08/2010.&lt;br /&gt;
&lt;br /&gt;
Castle of Castro Laboreiro 13th Century, Melgaço, Portugal [http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/Castle_of_Castro_Laboreiro.kmz Kmz file] }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.cestomano.com/stellarium/thumbnail.png|url=http://www.cestomano.com/stellarium/lascanadas.zip|name=Las Cañadas del Teide, Tenerife, Spain|author=[http://www.cestomano.com José Ángel Estévez]|license=|compat=0.9.x|description=This landscape of Las Cañadas was built in April 2008. It's located in the center of Tenerife island, Canary Islands. It can be viewed the Teide volcano -the highest mountain in Spain: 3.718 mts.-, El Llano de Ucanca and Los Roques de García with the characteristic rock &amp;quot;El Cinchado&amp;quot; which, with Teide Volcano, appeared in the old 1.000 ptas. bill. &lt;br /&gt;
&lt;br /&gt;
'''Note:''' If you have problems with the landscape (landscape may not appear because low memory on VGA chip), try to download and replace the PNG landscape with [http://www.cestomano.com/stellarium/peq/lascanadas.png this 50% scaled image]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.waldvogel.com/stellarium/landscape_rodiano_tmb.png|url=http://www.waldvogel.com/stellarium/landscape_rodiano.zip|name=Frantoio Rodiano, Italy|author=Christian Waldvogel|license=|compat=0.9.x|description=The Frantoio Rodiano (Rodiano oil press) is situated on the foot of Mount Gargano in Puglia / Italy. Just a few kilometers uphill lies Monte Sant'Angelo, the famous stop for christian pilgrims on their way to Jerusalem. Stargazing has been kin to this region for milleniae: the oldest graves found in the Frantoio's vicinity date back to pre-etruscan times, and the famous Castel del Monte, an astronomical observation in itself, is not far either. The spherical landscape was created from 8 images taken on September 20th, 2010, at 1707, from the uppermost terrace of the Frantoio Rodiano. The landscape comes in three resolutions (1024 / 2048 / 4096). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/luene.jpg|url=http://www.ausgerechnet-jetzt.de/lueneburg.zip|name=Top of Water Tower of Lueneburg, Germany|author=Uwe Prolingheuer|license=|compat=0.9.x|description=This is a panoramic view from the top of old Water Tower 56m above ground, constructed 1906/07, in Lueneburg, a town with many retained medieval houses. Northern Germany. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/gas-gao.jpg|url=http://www.stellarium.org/files/landscapes/gas-gao.zip|name=GAS GAO, Russia|author=[http://www.kepler-observatorium.ru/ Andrey Kuznetsov]|license=|compat=0.10.x|description=Russia, Caucasus. The astronomical science station on the mountain Shadjatmaz. This is the view from amateur's observatory (by Andrey Kuznetsov, Sergey Kiselev). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/caucasus.jpg|url=http://www.stellarium.org/files/landscapes/caucasus.zip|name=Caucasus, Russia|author=[http://www.kepler-observatorium.ru/ Andrey Kuznetsov]|license=|compat=0.10.x|description=North Caucasus, Elbrus. }}&lt;br /&gt;
&lt;br /&gt;
===North America===&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/saltlakecity.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_salt_lake_city.zip|name=Salt Lake City Panorama|author=Hiram Bertoch|license=|compat=0.9.x|description=Hiram made this panorama for the KidsKnowIt Network's outreach program. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_sanjose_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_sanjose.zip|name=San Jose, California, USA|author=BrendaEM|license=|compat=0.9.x|description=This panorama was made using Nasa's WorldWind. Screenshots were taken at 45 degree increments. The screenshots were layered and stitched together, and then offset until the the Northern mountains were aligned. A landscape such as this could be made of any location in the world. There is a plug-in for WorldWind called &amp;quot;BigScreenshot,&amp;quot; that may make the process easier, but not automate it. A plug-in could be written to do this entire process automatically. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://trampleasure.net/science/solar-calendar/thumbnail.jpg|url=http://trampleasure.net/science/solar-calendar/landscape.ini|name=Berkeley, California, USA|author=Lee Trampleasure Amosslee|license=|compat=0.9.x|description=This panorama is centered at the [http://solarcalendar.org/ Cesar Chavez Memorial Solar Calendar] at the Berkeley Marina. The solar calendar has large stones that line up with the sunrises and sunsets at the equinoxes and solstices. [http://trampleasure.net/science/solar-calendar/chavez-solar-calendar-large.png 4096X2048 PNG photo, 8.3MB], or [http://trampleasure.net/science/solar-calendar/chavez-solar-calendar.png 2048x1024 PNG photo 2.1MB]. In the larger photo, I painted the Golden Gate bridge to make it stand out a bit more. Credits and location can be found in the [http://trampleasure.net/science/solar-calendar/landscape.ini landscapes.ini file]. Please include credits if you use/distribute this version.  }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.jrctech.net/landscapes/wiki-photos/tn_School-Image2.png|url=http://www.jrctech.net/landscapes/chesterton_school.zip|name=Chesterton Elementary School - San Diego, California, USA|author=[http://www.jrctech.net John Chester]|license=|compat=0.10.x|description=This landscape was taken to help encourage students to learn about science and astronomy using Stellarium.  The panorama was taken at the playground area of Chesterton Elementary School on October 23, 2011.  The image was constructed using the Multiple Image Method using 8 overlapping images to provide a high level of detail.  The original composite panorama image was 22442 (width) x 2418 (height) pixels .  Composite photo reduced to 5 equally sized photos of 2048 by 1024 pixels.  Many trees created complex horizon background but left details, such as tether-ball poles, in place during transparency development to keep landscape realistic.  The lines of the playground provide an interesting perspective with Stellarium. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/eltajin.jpg|url=http://soyouzworld.free.fr/landscape/eltajin.zip|name=El Tajin, Mexico|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the prehispanic city of El Tajin. Theses ruins are part of [http://whc.unesco.org/en/list/631 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/mexico.jpg|url=http://soyouzworld.free.fr/landscape/mexico.zip|name=Mexico Ciudad, Mexico|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Zocalo (Plaza de la Constitución) of Mexico Ciudad. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/uxmal.jpg|url=http://soyouzworld.free.fr/landscape/uxmal.zip|name=Uxmal, Yucatan, Mexico|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Cuadrangulo de las Monjas in Pre-Hispanic Town of Uxmal. This site is part of [http://whc.unesco.org/en/list/791 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://home.arcor.de/mdoege/pano/boulder_thumb.png|url=http://home.arcor.de/mdoege/pano/boulder.zip|name=University of Colorado at Boulder, Boulder, Colorado, USA|author=Martin C. Doege|license=|compat=0.9.x|description=View from Farrand Field at the [http://en.wikipedia.org/wiki/University_of_Colorado_at_Boulder University], with the [http://en.wikipedia.org/wiki/Flatirons Flatirons] to the southwest. (File is 2.9 Mb) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_jasperpyramidisland_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_jasperpyramidisland.zip|name=Jasper National Park, Alberta, Canada|author=[http://www.jasperdarksky.org/stellarium Rogier Gruys]|license=|compat=0.9.x|description=Pyramid Island dark sky observation site in [http://pc.gc.ca/jasper Jasper National Park], Alberta, Canada -  world's largest [http://www.jasperdarksky.org/ Dark Sky Preserve]. This site is only 15 min from the town of Jasper, yet nearly perfectly dark. The panorama was taken just before sunset in October 2011. }}&lt;br /&gt;
&lt;br /&gt;
===South America===&lt;br /&gt;
{{Package|image=http://www.essl.de/wp/wp-content/uploads/2008/03/paranalscreenshot.png|url=http://www.essl.de/wp/wp-content/uploads/2008/03/paranal.zip|name=ESO's Very Large Telescope in the Atacama Desert, Chile|author=[http://www.essl.de Dirk Essl]|license=|compat=0.9.x|description=The Very Large Telescope Project (VLT) is a system of four separate optical telescopes (the Antu telescope, the Kueyen telescope, the Melipal telescope, and the Yepun telescope) organized in an array formation. Each telescope has an 8.2 m aperture. The array is complemented by three movable Auxiliary Telescopes (ATs) of 1.8 m aperture. The project is organized by the [http://www.eso.org/ ESO]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/cachi.jpg|url=http://soyouzworld.free.fr/landscape/cachi.zip|name=Cachi, Argentina|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Parque National Los Cardones near the village of Cachi. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/lagunaverde.jpg|url=http://soyouzworld.free.fr/landscape/lagunaverde.zip|name=Laguna Verde, Bolivia|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Laguna Verde and Laguna Blanca under the Juriques (5704m) and Licancabur (5920m) Volcanos. These lakes are located in Reserva Nacional Eduardo Avaroa, Bolivia. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://documents.epfl.ch/users/m/mt/mtewes/www/permanent/euler_la_silla_thumb.png|url=http://documents.epfl.ch/users/m/mt/mtewes/www/permanent/euler_la_silla.zip|name=Swiss Euler Telescope, ESO La Silla Observatory, Chile|author=[http://obswww.unige.ch/~tewes/ Malte Tewes]|license=|compat=0.9.x|description=Euler is the nearby telescope that can be seen in the west. It is operated by the University of Geneva, and its main duty is the quest of extrasolar planets. The New Technology Telescope (NTT) shows up just behind Euler's control room, Tarot is in due south, and finally the venerable ESO 3.6 meter telescope sits on its hill in the southeast. The panorama was taken on September 3, 2010, at about 7:25 local time, a wonderful sunrise after a snowy night. [http://obswww.unige.ch/~tewes/stellarium_landscapes/ Screenshots] }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/images/landscape_braziland_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_braziland.zip|name=Divinópolis, Brazilia|author=[http://alquimiapopular.wordpress.com/psicologo/ Wanderson Nunes Ferreira]|license=|compat=0.9.x|description=[http://alquimiapopular.wordpress.com/psicologo/ Wanderson Nunes Ferreira] photographed this panorama in the Brazilian city of Divinópolis in March 2011 and stitched it together into a spherical panorama that can be used with Stellarium. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://resoundcity.com/resources/stellarium/shined_dream_tb.jpg|url=http://resoundcity.com/resources/stellarium/shined_dream.zip|name=Shined Dream, Argentina|author=Adrian Felipe Pera|license=|compat=0.9.x|description=[http://www.flickr.com/photos/afpera/7529438152 Shined Dream] by Adrian Felipe Pera, a [http://www.resoundcity.com/ ResoundCity] member. Pergamino, Buenos Aires, Argentina. A small town, but still flashed enough to see nearly the stars, or hear the song of the spheres. [http://www.flickr.com/photos/afpera/7529438152 Flickr image] [http://adn-pera.deviantart.com/#/d56ldh2 deviantart wallpaper]. }}&lt;br /&gt;
&lt;br /&gt;
===Polar regions===&lt;br /&gt;
{{Package|image=http://www.obs-sirene.com/divers/stellarium/concordia.png|url=http://www.obs-sirene.com/divers/stellarium/concordia.zip|name=French-Italian Concordia Station|author=[http://cyprien.pouzenc.free.fr Cyprien Pouzenc]|license=GPLv2+|compat=0.10.x|description=Panoramic view of the station installed at Dome C, Antarctica.}}&lt;br /&gt;
&lt;br /&gt;
===Special===&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/simple.jpg|url=http://www.stellarium.org/files/landscapes/simple.zip|name=Simple|author=[http://astro.uni-altai.ru/~aw/ Alexander Wolf]|license=Public Domain|compat=0.10.x|description=Simple semi-transparent texture for Stellarium.}}&lt;br /&gt;
&lt;br /&gt;
==Contributions==&lt;br /&gt;
Please feel free to contribute your own custom landscapes here.   Make thumbnails 200x114 pixels to fit with the rest of the page.  Please include a location section in your landscape.ini file with the longitude, latitude, altitude and planet for the location of the landscape (see one of the pre-existing landscapes for an example).&lt;br /&gt;
&lt;br /&gt;
To find out more about how to create a landscape, see the [http://www.porpoisehead.net/mysw/stellarium_user_guide_html-0.9.1-1/#SECTION00670000000000000000 Stellarium User Guide], and examine existing landscapes.  If you are having problems, posting to the forums is a good way to get some advice.&lt;br /&gt;
&lt;br /&gt;
===Important note on image dimensions===&lt;br /&gt;
'''IMPORTANT: Make sure all textures have dimensions which are integer powers of 2, i.e. 256, 512, 1024, 2048, 4096, 8192, 16384, ...   e.g. 4096 by 1024, 2048 by 2048 and so on.'''&lt;br /&gt;
&lt;br /&gt;
This is a limitation of OpenGL.  Some video hardware will work OK with images with different image dimensions, but many will not display properly, suffer vastly reduced frame rates, and even crash the computer.  &lt;br /&gt;
&lt;br /&gt;
'''Please make sure all contributed landscapes conform to these requirements, or your link may be removed.'''&lt;br /&gt;
&lt;br /&gt;
Be aware that many people's video hardware cannot handle very large textures.  This is hardware and driver dependent.  A typical maximum image size is 2048x2048 or 4096x4096.&lt;br /&gt;
&lt;br /&gt;
===Package contents===&lt;br /&gt;
Please package your landscape in a .zip file with all files inside a directory in the .zip file.  This should be unique to your landscape, and it would be nice it it was all lower-case with no spaces.  &lt;br /&gt;
&lt;br /&gt;
You should also include a readme.txt file which describes the landscape and specifies any usage restrictions or licensing terms for the images used in the landscape.  &lt;br /&gt;
&lt;br /&gt;
===Licensing===&lt;br /&gt;
Before you distribute images as part of a Stellarium landscape, please ensure you are legally entitled to - you must be the copyright holder for the images, or be able to distribute them for use with Stellarium under the terms of some agreement with the copyright holder (e.g. Creative Commons licensed images found on the web).&lt;br /&gt;
&lt;br /&gt;
It is important to explicitly state what use may be made of images for your landscape.  This should be done in the readme.txt file inside the .zip file.&lt;br /&gt;
&lt;br /&gt;
We recommend an open source license compatible with Stellarium itself (i.e. the GNU GPL), or one of the Creative Commons licenses.  &lt;br /&gt;
&lt;br /&gt;
===Example package contents===&lt;br /&gt;
&lt;br /&gt;
From the Mars Husband Hill landscape:&lt;br /&gt;
&lt;br /&gt;
 Archive:  landscape_mars_husband_hill.zip&lt;br /&gt;
   Length     Date   Time    Name&lt;br /&gt;
  --------    ----   ----    ----&lt;br /&gt;
   1815308  02-05-07 21:02   mars_husband_hill/husband_hill.png&lt;br /&gt;
       211  05-28-07 19:44   mars_husband_hill/landscape.ini&lt;br /&gt;
      1096  06-04-07 15:21   mars_husband_hill/readme.txt&lt;br /&gt;
  --------                   -------&lt;br /&gt;
   1816615                   3 files&lt;br /&gt;
&lt;br /&gt;
The readme.txt file should look something like this:&lt;br /&gt;
&lt;br /&gt;
 Mars Husband Hill Landscape for Stellarium&lt;br /&gt;
 ==========================================&lt;br /&gt;
 &lt;br /&gt;
 Description&lt;br /&gt;
 -----------&lt;br /&gt;
 &lt;br /&gt;
 This landscape was taken from the NASA Spirit Rover on Mars.&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 Files&lt;br /&gt;
 -----&lt;br /&gt;
 &lt;br /&gt;
 This file (readme.txt) should have come in a zip file with some others&lt;br /&gt;
 Here is a listing of all the files which should be in the zip file:&lt;br /&gt;
 &lt;br /&gt;
   mars/readme.txt&lt;br /&gt;
   mars/landscape.ini&lt;br /&gt;
   mars/husband_hill.png&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 Installation &amp;amp; Use&lt;br /&gt;
 ------------------&lt;br /&gt;
 &lt;br /&gt;
 Unzip the landscape package file in your personal stellarium data&lt;br /&gt;
 directory, or the &amp;lt;config_root&amp;gt;/landscapes directory.  The location&lt;br /&gt;
 varyies depending on your operating system.  See the Stellarium&lt;br /&gt;
 User Guide for per-platform details.&lt;br /&gt;
 &lt;br /&gt;
 Once you have installed the landscape, open Stellarium and go to the&lt;br /&gt;
 configuration dialog.  Select the landscapes tab, and select the landscape&lt;br /&gt;
 from the list of available landscapes.&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 Credits&lt;br /&gt;
 -------&lt;br /&gt;
 &lt;br /&gt;
 Image credit: NASA/JPL-Caltech/Cornell&lt;br /&gt;
 http://marsrovers.jpl.nasa.gov/gallery/panoramas/opportunity/index.html&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 License&lt;br /&gt;
 -------&lt;br /&gt;
 &lt;br /&gt;
 NASA Images are released into the public domain&lt;br /&gt;
&lt;br /&gt;
===File encoding===&lt;br /&gt;
The landscape.ini and readme.txt files should be UTF-8 encoded text or plain ASCII.  It's probably a good idea to adopt the Windows line ending encoding, (i.e. CR LF).  Both Windows and *nix style line ending encoding should work OK in Stellarium, but Windows users will have an ugly time reading the readme.txt if it uses *nix-style newlines.&lt;br /&gt;
&lt;br /&gt;
===Need hosting?===&lt;br /&gt;
&lt;br /&gt;
If you have a landscape you would like to share but have no web-space to put it, email [[User:matthewg42|me]] and I'll put it on [http://porpoisehead.net/ my site].&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
*[[Landscape Rotation]] - how to set landscape rotation so that a certain point is due north&lt;br /&gt;
*The user guide, section 5.7: [[Customising Landscapes]]&lt;br /&gt;
&lt;br /&gt;
==Tools==&lt;br /&gt;
The following tools may be useful to people who wish to create their own landscapes:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| width=15% | '''Program''' || width=20% | '''Platform(s)''' || width=15% | '''License''' || width=40% | '''Notes''' &lt;br /&gt;
|-&lt;br /&gt;
|[http://www.cs.ubc.ca/~mbrown/autostitch/autostitch.html Autostitch] &lt;br /&gt;
| Windows; may also run on Linux using [http://www.winehq.org/ Wine]&lt;br /&gt;
| Shareware/demo &lt;br /&gt;
| Looks like it produces good results.  Registered version includes extra types of projection.  No source code.&lt;br /&gt;
|-&lt;br /&gt;
|[http://hugin.sourceforge.net/ Hugin] &lt;br /&gt;
| Linux; FreeBSD; MacOSX; Windows&lt;br /&gt;
| Free/open source (GNU GPL)&lt;br /&gt;
| Hugin is a nice GUI for Panorama Tools&lt;br /&gt;
|-&lt;br /&gt;
||[http://webuser.fh-furtwangen.de/~dersch/ Panorama Tools]&lt;br /&gt;
| Linux; FreeBSD; MacOSX; Windows&lt;br /&gt;
| Free/open source (GNU GPL)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Microsoft's [http://research.microsoft.com/en-us/um/redmond/groups/ivm/ICE/ Image Composite Editor]&lt;br /&gt;
| Windows&lt;br /&gt;
| Free (costless) &lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
*[http://stargazerslounge.com/primers-tutorials/122628-tutorial-custom-stellarium-landscapes.html Tutorial: Custom Stellarium landscapes], thread at the Stargazers Lounge forum&lt;br /&gt;
*[http://www.cloudynights.com/ubbthreads/showflat.php/Number/3759113/ Stellarium landscape image of my back porch], thread at the Cloudy Nights forum (discusses using a home-made fish-eye lens from a peep-hole to create a &amp;quot;fisheye&amp;quot; landscape)&lt;br /&gt;
&lt;br /&gt;
[[Category:Landscapes]]&lt;br /&gt;
[[Category:Customization]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Landscapes</id>
		<title>Landscapes</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Landscapes"/>
				<updated>2012-12-16T14:49:57Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: /* Europe */ Corrrection of coordinates&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==How to install landscapes==&lt;br /&gt;
After you have downloaded the .zip file for a landscape from this page, you need to install it in Stellarium.&lt;br /&gt;
&lt;br /&gt;
===Automatic===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;http://www.stellarium.org/wikiimg/stellarium-0-11-1/add-remove-landscapes-button.png&amp;lt;/div&amp;gt;&lt;br /&gt;
If you have Stellarium 0.10.6 or later version, you can use the &amp;quot;Add/remove landscapes&amp;quot; feature to install landscapes automatically:&lt;br /&gt;
*Open the &amp;quot;Sky and viewing options&amp;quot; window by clicking on the appropriate button in the left button bar (or press the F4 key).&lt;br /&gt;
*The &amp;quot;Add/remove landscapes&amp;quot; button is at the bottom of the &amp;quot;Landscape&amp;quot; tab.&lt;br /&gt;
*When you press it, the &amp;quot;Add/remove landscapes&amp;quot; window will appear. It allows you to install &amp;lt;tt&amp;gt;.zip&amp;lt;/tt&amp;gt; files containing landscapes. It also lists the user-installed landscapes and allows you to remove them.&lt;br /&gt;
&lt;br /&gt;
Note that while this makes installing landscapes easier, it may also cause you to overlook what else is included in the ZIP archive. Landscape packages created without this feature in mind may contain other files, such as alternative textures in different sizes.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;align:center&amp;quot;&amp;gt;http://www.stellarium.org/wikiimg/stellarium-0-11-1/add-remove-landscapes-window.png&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Manual===&lt;br /&gt;
If you are using an earlier version of Stellarium, you can follow this procedure to install a landscape package:&lt;br /&gt;
#Browse to your [[User Data Directory]], which varies according to your operating system. (eg. in Windows Vista/7 enter  %appdata%\stellarium in Explorer's location bar )&lt;br /&gt;
#Create a sub-directory called ''landscapes'' in your user directory (if it doesn't exist).&lt;br /&gt;
#Unzip the landscape .zip file in the ''landscapes'' directory (if it's done right, a sub-directory should be created for each landscape).&lt;br /&gt;
&lt;br /&gt;
NOTE: Older version of Stellarium (prior to v0.9.0) used a slightly different mechanism for doing landscapes. You can find a list of the old landscapes [[Landscapes pre 0.9.0|here]].&lt;br /&gt;
&lt;br /&gt;
Since version 0.10.5 Stellarium has problems in correctly loading old style landscapes (multi panel) if they are not 8 or 16 panel panoramas. Some old 4,7,9 qnd 10 side panoramas converted into 8 ides can be found here &lt;br /&gt;
*[http://sarcasmogerdes.dyndns.org/stellarium/uploads/wiruna-field.zip] (Wiruna field Barry's site)&lt;br /&gt;
*[http://sarcasmogerdes.dyndns.org/stellarium/uploads/egarden-new.zip] (Egarden 8 panel Barry's site)&lt;br /&gt;
*[http://sarcasmogerdes.dyndns.org/stellarium/uploads/neven-new.zip] (Como area Sydney Barry's site)&lt;br /&gt;
&lt;br /&gt;
==User contributed landscapes (by continent)==&lt;br /&gt;
We have landscapes for the seven continents (in the [http://en.wikipedia.org/wiki/Continent seven continent model]) - all, including from Antarctica !&lt;br /&gt;
===Interplanetary===&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/husband-hill.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_mars_husband_hill.zip|name=Husband Hill, Mars|author=Johan|license=Public Domain|compat=0.9.x|description=Johan transformed this Mars image from NASA into a spherical panorama that can be used with Stellarium.  Mars rover Spirit made this image during August 24 to 27, 2005. Image credit: NASA/JPL-Caltech/Cornell. Read more on [http://marsrovers.nasa.gov/gallery/panoramas/spirit/2005.html this webpage].}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/landscape_marsopportunity_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_mars_opportunity_rover.zip|name=Mars Opportunity Rover|author=Mike|license=Public Domain|compat=0.9.x|description=Mike sent posted this landscape in the forums.  Another nice Mars rover landscape.}}&lt;br /&gt;
 &lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_iss_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_iss.zip|name=International Space Station|author=Makc|license=GPL|compat=0.9.x|description=Landscape made using some screen shots and data from the wonderful [http://www.shatters.net/celestia/ Celestia].  Set the projection mode to stereographic, zoom out to a wide field of view and point down towards the ground to get the nice rounded &amp;quot;planet&amp;quot; effect.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_apollo_11_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_apollo_11.zip|name=Apollo 11 landing site|author=Mathew Myrup|compat=0.9.x|description=This landscape is made using NASA photographs taken by Buzz Aldrin. Look down and you can see Buzz's footprints :)}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_apollo_17_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_apollo_17.zip|name=Apollo 17 landing site|author=Mathew Myrup|compat=0.9.x|description=This landscape is made using NASA photographs taken by Gene Cernan.}}&lt;br /&gt;
&lt;br /&gt;
===Africa===&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/idehan.jpg|url=http://soyouzworld.free.fr/landscape/idehan.zip|name=Idehan Ubari, Libya|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|compat=0.10.x|description=This is a panoramic view of the desert of Idehan Ubari in Libya.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/leptis.jpg|url=http://soyouzworld.free.fr/landscape/leptis.zip|name=Leptis Magna, Libya|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|compat=0.10.x|description=This is a panoramic view of the theatre of the Roman city of Leptis Magna. This site is part of [http://whc.unesco.org/en/list/183 UNESCO World Heritage].}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/sahara.jpg|url=http://soyouzworld.free.fr/landscape/sahara.zip|name=Sahara, Libya|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|compat=0.10.x|description=This is a panoramic view from somewhere in the middle of the Sahara in Libya.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/waw-al-namus.jpg|url=http://soyouzworld.free.fr/landscape/waw-al-namus.zip|name=Volcano Waw al-Namus, Libya|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|compat=0.10.x|description=This is a panoramic view of Volcano Waw al-Namus in the Sahara.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.domani.ch/masoala/en/capmasoala_thumb.jpg|url=http://www.domani.ch/masoala/en/cap_masoala.zip|name=Cap Masoala, Madagascar|author=Matthias D. Frei|license=GPLv2+|compat=0.9.x|description=This panorama was photographed from the abandoned French lighthouse at the southernmost point of the Masoala peninsula in Madagascar. It provides a spectacular view over the Indian Ocean and the Masoala peninsula that is still mainly covered with rainforest. More information about this particular place can be found  [http://www.domani.ch/masoala/en/index.html here]}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_mbabane_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_mbabane.zip|name=Mbabane, Swaziland|author=Quinton Reissmann|compat=0.9.x|description=Mbabane is the capital of the little kingdom of Swaziland. Waterford/Kamhlaba is an international school on a mountain side which prides itself in cultural diversity. In SiSwati &amp;quot;kamhlaba&amp;quot; means &amp;quot;a world in miniature&amp;quot;. The actual view is from the sports field where we usually set up the telescope.}}&lt;br /&gt;
&lt;br /&gt;
===Asia===&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_everest_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_everest.zip|name=Mount Everest|author=Makc|license=&amp;amp;copy;|compat=0.9.x|description=Amazing parorama of the summit of Mount Everest, 8.85 km above sea level.  [http://www.everestviews.com/ Roddy Mackenzie], who climbed the mountain in 1989, captured the image.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_jantar_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_jantar.zip|name=Jantar Mantar|author=Barry Perlus &amp;amp; Stellarium team|license=CC BY-NC-SA 3.0|compat=0.9.x|description=Professor Barry Perlus of Cornell University allowed us to use his panoramic photography of one of the Jantar Mantars in India to create this landscape.  For more information on these fascinating scientific and architectural works see [http://jantarmantar.org/ jantarmantar.org].}}&lt;br /&gt;
&lt;br /&gt;
===Australasia===&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/beaumont-hills.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_beaumont_hills.zip|name=Beaumont Hills, Sydney, Australia|author=Barry Gerdes|license=GPLv2+|compat=0.9.x|description=Barry made an interesting multiple-image landscape from the rooftop of his house. You can find a detailed account of how this was done in the [http://porpoisehead.net/mysw/stellarium_user_guide_html-0.9.0-1/#SECTION001100000000000000000 Stellarium User Guide].}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/transit-hill.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_transit_hill.zip|name=Transit Hill, Lord Howe Island, Australia|author=Graeme Ewing|compat=0.9.x|description=Graeme Ewing Contributed this panorama of the astronomically significant and visually stunning Transit Hill site Northeast of Sydney, Australia. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_penneshaw_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_penneshaw.zip|name=Penneshaw, Kangaroo Island, Australia|author=Clive Nelson|compat=0.9.x|description=Penneshaw is a small township at the Northwest end of Kangaroo Island, off the coast of South Australia. In the north is the entrance to Gulf St Vincent and the Australian mainland. In the east is the Penneshaw township, To the west, on the horizon, is Kingscote, the main town on Kangaroo Island.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_largsbay_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_largsbay.zip|name=Largs Bay in South Australia|author=Martin Lewicki|license=GPL|compat=0.9.x|description=Panoramic view of Largs Bay in South Australia 8 panel old style landscape. Largs Pier Hotel facade in SSE and Largs Bay Sailing Club due east. Jetty extends to Gulf St Vincent to the west.}}&lt;br /&gt;
&lt;br /&gt;
===Europe===&lt;br /&gt;
{{Package|image=http://www.observatoire-naef.ch/assets/files/ependes-thumbnail.png|url=https://github.com/martignoni/ependes-landscape/raw/master/ependes.zip|name=Épendes Observatory, Fribourg, Switzerland|author=[http://www.stellarium.org/wiki/index.php/User:Mina Nicolas Martignoni]|license=CC BY-NC-SA 3.0|compat=0.10.x|description=The [http://www.observatoire-naef.ch/ Épendes Observatory] (46°45′45″N 7°08′22″E) is located near the city of Fribourg, Switzerland. The images for this landscape were taken in August 2006. The landscape comes in three resolutions (1024 / 2048 / 4096). File size is about 9.8 MB.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://michael.nadev.net/pub/wurania.png|url=http://michael.nadev.net/pub/wurania.zip|name=Urania Observatory, Vienna, Austria|author=Michael Prokosch|license=CC BY-ND 3.0|compat=0.9.x|description=The [http://www.astronomie-wien.at/astronomie_urania.html Urania Observatory] (48°12′41.88″N 16°23′1.53″E) is located right in the middle of the city of Vienna, capital of Austria. Built in 1910 under emporer Franz Joseph I. it's the countries oldest non-scientifical observatory still in use for people's education. This landscape was taken in August 2011. If you are not distracted by the stars, you can even see St. Stephan's cathedral, the Viennese Giant Wheel and the Danube Canal. File size is about 11.5 MB.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://perso.wanadoo.es/arias_llego/stellarium/laguardia/Thumbnail.png|url=http://perso.wanadoo.es/arias_llego/stellarium/laguardia/laguardia.zip|name=Port of La Guardia, Galicia, Spain|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=CC BY-NC-ND 3.0|compat=0.10.x|description=La Guardia is a fishing village in Galicia, in the NW. of Spain. This landscape was taken on the 19/07/2008. '''[http://perso.wanadoo.es/arias_llego/stellarium/laguardia/Port_of_La_Guardia.kmz KMZ file]'''. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/Thumbnail.png|url=http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/castrolaboreiro.zip|name=Castle of Castro Laboreiro 13th Century, Melgaço, Portugal|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=CC BY-NC-ND 3.0|compat=0.10.x|description=Castro Laboreiro is a village in Melgaço, in the NW. of Portugal. This landscape was taken on the 15/08/2010. '''[http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/Castle_of_Castro_Laboreiro.kmz Kmz file]'''. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.cestomano.com/stellarium/thumbnail.png|url=http://www.cestomano.com/stellarium/lascanadas.zip|name=Las Cañadas del Teide, Tenerife, Spain|author=[http://www.cestomano.com José Ángel Estévez]|license=|compat=0.10.x|description=This landscape of Las Cañadas was built in April 2008. It's located in the center of Tenerife island, Canary Islands. It can be viewed the Teide volcano -the highest mountain in Spain: 3.718 mts.-, El Llano de Ucanca and Los Roques de García with the characteristic rock &amp;quot;El Cinchado&amp;quot; which, with Teide Volcano, appeared in the old 1.000 ptas. bill. &lt;br /&gt;
&lt;br /&gt;
'''Note:''' If you have problems with the landscape (landscape may not appear because low memory on VGA chip), try to download and replace the PNG landscape with [http://www.cestomano.com/stellarium/peq/lascanadas.png this 50% scaled image]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.waldvogel.com/stellarium/landscape_jungfraujoch_tmb.png|url=http://www.waldvogel.com/stellarium/landscape_jungfraujoch.zip|name=Jungfraujoch High Altitude Research Station, Switzerland|author=Christian Waldvogel|license=|compat=0.10.x|description=Lying at 3580m in the Bernese Alps, the Jungfraujoch is often dubbed &amp;quot;Top of Europe&amp;quot;. It has been home to an astronomical observation station for more than 80 years. The spherical landscape was created from 20 images taken on June 29th, 2008, at 1015, from the lower terrace of the Sphinx Obervatory. The landscape comes in three resolutions (1024 / 2048 / 4096). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/San_Pietro.jpg|url=http://www.stellarium.org/files/landscapes/San_Pietro.zip|name=St Peter's Square (Vatican)|author=Gianfranco Mazzani|license=|compat=0.10.x|description=This is a complete high resolution panoramic view of the St Peter's Square, City of Vatican. &lt;br /&gt;
&lt;br /&gt;
Gianfranco Mazzani photographed this panorama in july 2004 by using a Nikon Coolpix 8700, and stitched &lt;br /&gt;
the original 10 pictures together into a spherical panorama using Hugin program. The panorama has been &lt;br /&gt;
than cutted into 8 alfa channel pictures and re-dimensioned the width to 2048 pixel and then dimensioned &lt;br /&gt;
the height to 32 cm by using Photoschop elements 2.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.waldvogel.com/stellarium/landscape_rodiano_tmb.png|url=http://www.waldvogel.com/stellarium/landscape_rodiano.zip|name=Frantoio Rodiano, Italy|author=Christian Waldvogel|license=|compat=0.10.x|description=The Frantoio Rodiano (Rodiano oil press) is situated on the foot of Mount Gargano in Puglia / Italy. Just a few kilometers uphill lies Monte Sant'Angelo, the famous stop for christian pilgrims on their way to Jerusalem. Stargazing has been kin to this region for milleniae: the oldest graves found in the Frantoio's vicinity date back to pre-etruscan times, and the famous Castel del Monte, an astronomical observation in itself, is not far either. The spherical landscape was created from 8 images taken on September 20th, 2010, at 1707, from the uppermost terrace of the Frantoio Rodiano. The landscape comes in three resolutions (1024 / 2048 / 4096). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://pano.jubila.de/stellarium/muchachos_thumb.jpg|url=http://pano.jubila.de/stellarium/muchachos.zip|name=Roque de los Muchachos, La Palma, Spain|author=Uwe Buecher|license=|compat=0.10.x|description=This high resolution landscape was built with hugin from 20 photos taken in October 2007. It is located on top of the highest mountain on La Palma, Canary Islands. You can see the Buildings of the Observatorio del Roque de los Muchachos, one of them is the Gran Telescopio Canarias (GTC) which is the greatest telescope in the world today (10.4m diameter). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_egarden_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_egarden.zip|name=English Garden, Munich, Germany|author=Rob Spearman, Johan Meuris|license=|compat=0.9.x|description=This high resolution landscape was taken in April 2007 by Rob. Johan helped with the post production.  The result is a very high quality landscape. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_egarden_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_egarden_old_style.zip|name=English Garden, Munich, Germany|author=Rob Spearman, Johan Meuris|license=|compat=0.9.x|description=The original English Garden landscape was re-constructed by Barry Gerdes as an old_style landscape.  This means that it can be used with video hardware which cannot cope with single very large texture files, and yet preserves the resolution of the landscape (by splitting the images into multiple files). Try this is the original English Garden landscapes doesn't load on your computer. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/voksenlia.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_voksenlia.zip|name=Voksenlia, Oslo, Norway|author=Steinar Midtskogen|license=|compat=0.10.x|description=Steinar Midtskogen sent [http://porpoisehead.net/mysw/downloads/voksenlia.png this huge (17 MiB!) spherical landscape image] of Voksenlia, Oslo, Norway (59°58'14N, 10°38'57E, alt=348m). (Currently not working with version 0.9.0). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/observatory-hill-Barry.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_edinburgh.zip|name=Calton Hill, Edinburgh, Scotland|author=Friedrich Noelle, Barry Gerdes|license=|compat=0.9.x|description=Friedrich Noelle took a nice panorama of Observatory Hill, Edinburgh which Barry converted into a Stellarium landscape. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/sight_thumb.jpg|url=http://www.geomancygroup.org/stella/sighthill.zip|name=Sighthill stone circle, Glasgow, Scotland|author=[http://www.geomancygroup.org Grahame Gardner]|license=|compat=0.9.x|description=Sighthill stone circle is a modern stone ring constructed in 1979 by amateur astronomer and SF writer Duncan Lunan. Located next to the M8 motorway in Glasgow city centre, yet with surprisingly good views, the circle has alignments to the solsticial solar rises and settings and the lunar standstills. Alignments to the rising of Rigel are included for 1979 AD and 1800 BC. (2MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/beech_thumb.jpg|url=http://www.geomancygroup.org/stella/beechhill.zip|name=Beech Hill stone circle, nr. Nutley, E. Sussex, England|author=[http://www.geomancygroup.org Grahame Gardner]|license=|compat=0.9.x|description=Beech Hill is a modern stone ring constructed in 2000 by Ivan McBeth and Richard Creightmore of The Geomancy Group [http://www.geomancygroup.org/ www.geomancygroup.org]. Located in the Ashdown Forest, the circle's main alignment is to the Pole Star, denoted by the angled outlier. (2.2MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/calave_tb.jpg|url=http://www.geomancygroup.org/stella/calanaisave.zip|name=Calanais I (Callanish) Avenue, Lewis, Western Isles, Scotland|author=[http://www.geomancygroup.org Grahame Gardner]|license=|compat=0.9.x|description=Callanish is arguably the finest megalithic monument in the British Isles, and is just the largest site in a vast complex of interconnected monuments designed to observe the southern major standstills of the moon. From this position at the end of the avenue, the moon is seen to set behind the rocky outcrop of Cnoc-an-Tursa, only to 're-gleam' in the centre of the main circle a short time afterwards. (4MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/machrie_tb.jpg|url=http://www.geomancygroup.org/stella/machrie5.zip|name=Machrie Moor 5, Isle of Arran, Scotland|author=[http://www.geomancygroup.org Grahame Gardner]|license=|compat=0.9.x|description=This delightful little double-concentric stone circle is the first site you come to when visiting the Machrie Moor complex of megalithic sites on Arran. Although not the most spectactular site in the group, it is one of the most complete and has good views. (7.3MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/mitchthumbnail.jpg|url=http://www.geomancygroup.org/stella/mitchell2.zip|name=Mitchell's Fold stone circle, Shropshire, England|author=[http://www.vallecrucisgrail.co.uk/ Ian Pegler]|license=|compat=0.9.x|description=This wonderful ancient stone circle stands on a plateau amid the rolling Shropshire hills and is loved by walkers, dowsers and Wiccans alike. April 2010 - new version uploaded, featuring improved centre camera position based on Alexander Thom's geometry and improved alignments. (1.8MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/aveburyn_thumb.jpg|url=http://www.geomancygroup.org/stella/aveburynorth.zip|name=Avebury - North circle, Wiltshire, England|author=[http://www.vallecrucisgrail.co.uk/ Ian Pegler]|license=|compat=0.9.x|description=The North circle of the largest megalithic complex in Europe. In the background you can just make out the Red Lion pub. (1MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/vallecrucis_thumb.jpg|url=http://www.geomancygroup.org/stella/vallecrucis.zip|name=Valle Crucis Abbey, Llangollen, North Wales|author=[http://www.vallecrucisgrail.co.uk/ Ian Pegler]|license=|compat=0.9.x|description=This ruined Cistercian abbey dates to 1200 but may be the site of a much earlier Dark Age settlement with a very early Christian church. (2.5MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/ponta-da-piedade.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_lagos.zip|name=Ponta da Piedade, Algarve, Lagos, Portugal|author=Johan|license=|compat=0.9.x|description=Johan photographed this panorama in June 2006 and stitched it together into a spherical panorama that can be used with Stellarium.  You see sandstone cliffs on the Atlantic coast of southern Portugal, a lighthouse, and a natural bridge. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/landscape_gurnigel_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_gurnigel.zip|name=Gurnigel, Switzerland|author=Martin Mutti|license=|compat=0.9.x|description=This is the site of the Bern Astronomical Society's observing site. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/tishinka-ardashev.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_tishinka.zip|name=Tishinka, Russia|author=Dmitri Ardashev|license=|compat=0.9.x|description=This is a small village between Moscow's and Kaluga's regions, in 130 km south-west of Moscow (55°18'32.46N, 36°26'42.06E, alt=195). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_t60pic_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_t60pic.zip|name=T60 dome, Pic du Midi Observatory, France|author=Sylvain Rondi|license=|compat=0.9.x|description=Sylvain photographed this panorama in February 2007 and stitched it together into a spherical panorama that can be used with Stellarium. This is the panoramic view from the amateur 60cm telescope dome from [http://astrosurf.com/t60/ T60 Association], installed at Pic du Midi Observatory. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_t1mpic_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_t1mpic.zip|name=T1M terrasse, Pic du Midi Observatory, France|author=Sylvain Rondi|license=|compat=0.9.x|description=Sylvain photographed this panorama in February 2007 and stitched it together into a spherical panorama that can be used with Stellarium. This is the panoramic view from the terrasse of the professional 106cm telescope at Pic du Midi Observatory (France). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_sheffieldrivelin_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_sheffieldrivelin.zip|name=River Rivelin, Sheffield, UK|author=Jan Wedekind|license=CC SA-2.0|compat=0.9.x|description=This is a 270° fisheye panorama created from 40 photos using Hugin. It shows the River Rivelin in Sheffield in the middle of April 2007. The fringes (twigs and tree tops) where dimmed out using The Gimp. The overexposed parts of the horizon have been removed. Copyright (C) 2007, [[User:Wedesoft|Jan Wedekind]], [http://creativecommons.org/licenses/by-sa/2.0/ Creative Commons Attribution ShareAlike License 2.0] }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_ares_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_ares.zip|name=Ares, Galicia, Spain|author=[http://www.stellarium.org/wiki/index.php/User:rcasl Rubén Castiñeiras Lorenzo]|license=|compat=0.9.x|description=Ares is a small fishing village in Galicia, in the NW of Spain, close to the city of Ferrol. The 360 degree image was taken at the noon of August 6th, 2007, just in front of the &amp;quot;Paseo Rosalía de Castro&amp;quot;. It has been made with 17 photos, stitched with Hugin 0.7 beta 4 and retouched with the Gimp 2.2.17. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_ovindoli_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_ovindoli.zip|name=Ovindoli, Italy|author=Pierluigi Panunzi|license=|compat=0.9.x|description=Ovindoli is a famous ski resort in central Italy. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/rustrel.jpg|url=http://soyouzworld.free.fr/landscape/rustrel.zip|name=Rustrel, France|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Colorado de Rustrel in &amp;quot;Les Sentiers de l'Ocre et du Fer&amp;quot;, Provence, France. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://files.myopera.com/aid85/files/host/Stintino.jpg|url=http://files.myopera.com/aid85/files/host/stintino.zip|name=Stintino, Italy|author=[http://my.opera.com/aid85 aid85]|license=|compat=0.9.x|description=High resolution 360° landscape taken at &amp;quot;LaPelosa&amp;quot; beach in Stintino (SS) Sardinia \ Italy - Europe \ Mediterranean Sea. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/vatican.jpg|url=http://soyouzworld.free.fr/landscape/vatican.zip|name=St Peter's Square, Vatican|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the St Peter's Square. City of Vatican. Some parts of the buildings are missing, not enough pictures... This site is part of [http://whc.unesco.org/en/list/286 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://files.myopera.com/aid85/files/host/Larvotto.jpg|url=http://files.myopera.com/aid85/files/host/munegu.zip|name=Munegu, MC|author=[http://my.opera.com/aid85 aid85]|license=|compat=0.9.x|description=High resolution 360° landscape taken at Larvotto beach in [http://en.wikipedia.org/wiki/Monaco Munegu \ Monaco - MC] (MonteCarlo) - Europe \ Mediterraneum Sea - Ligurian Sea. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/Bahia_de_Cadiz.jpg|url=http://www.stellarium.org/files/landscapes/Bahia_de_Cadiz.zip|name=Bahia de Cádiz, Spain|author=José Codejón|license=|compat=0.10.x|description=A new bridge is being built across de bay. The 360° panorama image was taken at noon of September 10th, 2012, from the pier of the small marina just closed to the Cadiz head of the bridge. &lt;br /&gt;
&lt;br /&gt;
The final picture is the result of stitching 11 frames, taken out of a 63 seconds full HD video, using PhotoStitch and Gimp 2.6.8. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.ticfisquim.org/astro/stellarium/thumbnails.jpg|url=http://www.ticfisquim.org/astro/stellarium/cocentaina.zip|name=Cocentaina, Spain|author=[http://www.ticfisquim.org Angel Juan Martínez]|license=|compat=0.9.x|description=This is a panoramic view from the roof of the Secondary School of Cocentaina, a little town of the Pais Valencià (Spain), in the mountains that are between Valencia and Alicante, where I teach Astronomy with the help of Stellarium. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.xs4all.nl/~adonet/stellarium/tulipfield.jpg|url=http://www.xs4all.nl/~adonet/stellarium/tulipfield.zip|name=Amstelveen, The Netherlands|author=[http://www.xs4all.nl/~adonet/stellarium/stellarium.html Jeroen Adolfse]|license=|compat=0.9.x|description=This landscape shows the tulipfields in spring (may 2008) in Schagerbrug, North Holland. It's an old_style landscape. (file is 4.5 Mb) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.didgeweb.com/stellarium/oudmeer_sample.png|url=http://www.didgeweb.com/stellarium/son_oudmeer.zip|name=Son &amp;amp;amp; Breugel, The Netherlands|author=[http://www.didgeweb.com/ Roland Mathijssen]|license=|compat=0.9.x|description=This landscape shows the Oude Meer (Old Lake) in the Sonse Heide in Son (close to Eindhoven). (file is 5.4 MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.obs-sirene.com/divers/stellarium/sirene.png|url=http://www.obs-sirene.com/divers/stellarium/sirene.zip|name=Sirene Observatory, Lagarde d'Apt (84), France|author=[http://cyprien.pouzenc.free.fr Cyprien Pouzenc]|license=|compat=0.9.x|description=Panoramic view of installations. Previously the site was used as a nuclear lauching pad. Now days, [http://www.obs-sirene.com Sirene] accepts everybody for astronomical observations. (File is 11 Mb) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.nett.is/~sveinki/stellarium/vonarskard-tn.png|url=http://www.nett.is/~sveinki/stellarium/vonarskard.zip|name=Vonarskar&amp;amp;eth;, Passage of Hope, Iceland|author=[http://www.nett.is/~sveinki/stellarium/ Sveinn &amp;amp;iacute; Felli]|license=|compat=0.9.x|description=This is the geographical center of Iceland, a barren pass between glaciers. Being sheltered from southern vinds by the huge Vatnajökull glacier, a great cold mass which then eliminates most humididy from the air, makes the place unusually good for stargazing. Old-style landscape, resolution is a bit low. (File is 1.1 Mb) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.brontovox.co.uk/Downloads/woodhenge_winter_solstice_sunset_ts.png|url=http://www.brontovox.co.uk/Downloads/woodhenge.zip|name=Woodhenge near Stonehenge|author=[http://www.brontovox.co.uk Hugo Jenks]|license=|compat=0.9.x|description=Woodhenge near Stonehenge was constructed around 2200 BC. It comprised numerous wooden posts set into the chalky ground. These posts of course decayed, and their positions today are marked with concrete cylinders. &lt;br /&gt;
&lt;br /&gt;
The posts are arranged, in plan view, as a series of concentric egg shapes. The axis of the egg shapes aligns approximately with summer solstice sunrise. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.brontovox.co.uk/Downloads/stonehenge_screenshot_st.jpg|url=http://www.brontovox.co.uk/Downloads/stonehenge.zip|name=Stonehenge|author=[http://www.brontovox.co.uk Hugo Jenks]|license=|compat=0.9.x|description=Was it an observatory? Yes indeed it was!  The alignment of the monument with the summer solstice sunrise has been well known for many years. The alignment with the winter solstice sunset may have been more significant. For the first time, many additional alignments are published, and are detailed here:  [http://www.brontovox.co.uk/ www.brontovox.co.uk] These alignments demonstrate that Stonehenge was primarily a functional scientific instrument, used for measuring angles. The angles of interest were the rising and setting bearings of the sun, moon, and stars. It was therefore possible to map the entire visible sky. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/rila.jpg|url=http://soyouzworld.free.fr/landscape/rila.zip|name=Rila Monastery, Bulgaria|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Rila Monastery in Bulgaria. This building is quite high so the sky area is not really large. This site is part of [http://whc.unesco.org/en/list/216 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://bg360.net/stellarium/silistar.jpg|url=http://bg360.net/stellarium/silistar.zip|name=Silistar, Bulgaria|author=[http://bg360.net BG360]|license=|compat=0.9.x|description=Panoramic view of the Silistar Beach in Bulgaria. See this panorama here [http://pano.bg360.net/silistar/index_en.php Flash pano]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://bg360.net/stellarium/alexandernevsky.jpg|url=http://bg360.net/stellarium/alexandernevsky.zip|name=St. Alexander Nevsky Cathedral, Sofia, Bulgaria|author=[http://bg360.net BG360]|license=|compat=0.9.x|description=Panoramic view of the Saint Alexander Nevsky Cathedral in Bulgaria. See this panorama here [http://pano.bg360.net/sofia/alexander-nevsky_en.php Flash pano]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://bg360.net/stellarium/rousse.jpg|url=http://bg360.net/stellarium/rousse.zip|name=Statue of Freedom, Rousse, Bulgaria|author=[http://bg360.net BG360]|license=|compat=0.9.x|description=Panoramic view from the center of Rousse in Bulgaria. See this panorama here [http://pano.bg360.net/ruse/pametnik-svobodata_en.php Flash pano]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/thumbnail-dm.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/dm.zip|name=Central Munich|author=Markus Dähne|license=|compat=0.9.x|description=This landscape shows the view from the Eastern observatory of the [http://www.beobachtergruppe.com Deutsches Museum] in Munich, Germany.  During public observing sessions, Stellarium is used to help explain the sky :-) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_leist_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_leist.zip|name=Leist, Switzerland|author=Bernd Lang|license=|compat=0.9.x|description=This landscape was developed from a panoramic picture of the Leist in Switzerland (2222m).  The picture was taken during a [http://www.panoramio.com/user/1437658 hiking tour] from Tanenboden to the top of the Leist. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_stonehenge_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_stonehenge.zip|name=Stonehenge, England|author=[http://www.freetadel.blogspot.com/ Fernando]|license=|compat=0.9.x|description=This landscape depicts Stonehenge - the famous prehistoric monument in Wiltshire, Southern England. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/avignon.jpg|url=http://soyouzworld.free.fr/landscape/avignon.zip|name=Place du Palais des Papes, Avignon|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Place du Palais des Papes in Avignon.  France. This site is part of [http://whc.unesco.org/en/list/228 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/avignonb.jpg|url=http://soyouzworld.free.fr/landscape/avignonb.zip|name=Le Pont d'Avignon, Avignon|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Pont d'Avignon (aka Bridge Saint-Bénezet) in Avignon.  France. This site is part of [http://whc.unesco.org/en/list/228 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/orange.jpg|url=http://soyouzworld.free.fr/landscape/orange.zip|name=Roman Theatre of Orange|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Roman Theatre of Orange- France. This site is part of [http://whc.unesco.org/en/list/163 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_cambridge_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_cambridge.zip|name=Centre for Mathematical Sciences, Cambridge, UK|author=[http://www.srcf.ucam.org/~mh519/ Matt Hickford]|license=|compat=0.9.x|description=Panorama from the grassy roof of the Centre for Mathematical Sciences, Cambridge University, UK in March. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_grantchester_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/grantchester.zip|name=Grantchester Meadows, Cambridgeshire, UK|author=[http://www.srcf.ucam.org/~mh519/ Matt Hickford]|license=|compat=0.9.x|description=Panorama from Grantchester Meadows, Cambridgeshire, UK in March. Flat horizon. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_areeiro_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_areeiro.zip|name=Pico do Areeiro|author=Filipe Gomes|license=|compat=0.9.x|description=This is a panoramic view of the [http://pt.wikipedia.org/wiki/Pico_do_Arieiro Pico do Areeiro], the second highest point of the island.  Madeira Island - Portugal. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_caniga_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_caniga.zip|name=Caniga Country|author=[http://www.flickr.com/photos/25710744@N03/2672852380/ Andrea Pittalis]|license=|compat=0.9.x|description=This landscape was taken from the Caniga Country, near Sassari in Sardinia, Italy. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.under-a-dark-sky.com/stellarium/cdn-landscape.jpg|url=http://www.under-a-dark-sky.com/stellarium/cdn.zip|name=Cuevas del Negro, Andalucia|author=Peter Lynch|license=|compat=0.9.x|description=A nearly flat rural landscape in southern Spain. The site has very dark skies and a view down to about 3&amp;amp;deg; to the south. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.astrosurf.com/aaaov/landscape/landscape_aaaov_thumb.jpg|url=http://www.astrosurf.com/aaaov/landscape/aaaov.zip|name=Astronomes Amateurs Aixois Observatoire Vauvenargues (AAAOV) - France|author=[http://www.astrosurf.com/aaaov AAAOV]|license=|compat=0.9.x|description=Vauvenargues Observatory located near Aix-en-Provence, France. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.astrosurf.com/aaaov/landscape/landscape_baie_saint_michel_thumb.jpg|url=http://www.astrosurf.com/aaaov/landscape/baie_saint_michel.zip|name=Astronomes Amateurs Aixois Observatoire Vauvenargues (AAAOV) - France|author=[http://www.astrosurf.com/aaaov AAAOV]|license=|compat=0.9.x|description=Saint Michel Bay - Serre Ponçon lake, Alpes - France. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_la_guardia_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_la_guardia.zip|name=La Guardia|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=|compat=0.9.x|description=La Guardia is a fishing village in Galicia, in the NW. of Spain. This landscape was taken on the 19/07/2008 at 12:38 p.m. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_uvalno_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_uvalno.zip|name=Uvalno, Czech Republic|author=|license=|compat=0.9.x|description=A view from a garden in the village of Uvalno, Czech Republic. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://astro.sentvid.org/stellarium/sentvid-thumbnail.png|url=http://astro.sentvid.org/stellarium/sentvid.zip|name=Šentvid, Ljubljana, Slovenia|author=|license=|compat=0.9.x|description=View from the roof of the observatory of Gymnasium Šentvid, Ljubljana, Slovenia. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://astronomia.zagan.pl/pliki/stellarium-moczyn.png|url=http://astronomia.zagan.pl/pliki/moczyn.zip|name=Poland,Zagan - sity Johannes Kepler|author=[http://astronomia.zagan.pl/articles.php?article_id=21 Jacek Patka]|license=|compat=0.9.x|description=View of the old quarter. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://perso.wanadoo.es/arias_llego/stellarium/laguardia/Thumbnail.png|url=http://perso.wanadoo.es/arias_llego/stellarium/laguardia/laguardia.zip|name=Port of La Guardia, Galicia, Spain|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=|compat=0.9.x|description=La Guardia is a fishing village in Galicia, in the NW. of Spain. This landscape was taken on the 19/07/2008.&lt;br /&gt;
&lt;br /&gt;
[http://perso.wanadoo.es/arias_llego/stellarium/laguardia/Port_of_La_Guardia.kmz Kmz file] }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/Thumbnail.png|url=http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/castrolaboreiro.zip|name=Castle of Castro Laboreiro 13th Century, Melgaço, Portugal|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=|compat=0.9.x|description=Castro Laboreiro is a village in Melgaço, in the NW. of Portugal. This landscape was taken on the 15/08/2010.&lt;br /&gt;
&lt;br /&gt;
Castle of Castro Laboreiro 13th Century, Melgaço, Portugal [http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/Castle_of_Castro_Laboreiro.kmz Kmz file] }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.cestomano.com/stellarium/thumbnail.png|url=http://www.cestomano.com/stellarium/lascanadas.zip|name=Las Cañadas del Teide, Tenerife, Spain|author=[http://www.cestomano.com José Ángel Estévez]|license=|compat=0.9.x|description=This landscape of Las Cañadas was built in April 2008. It's located in the center of Tenerife island, Canary Islands. It can be viewed the Teide volcano -the highest mountain in Spain: 3.718 mts.-, El Llano de Ucanca and Los Roques de García with the characteristic rock &amp;quot;El Cinchado&amp;quot; which, with Teide Volcano, appeared in the old 1.000 ptas. bill. &lt;br /&gt;
&lt;br /&gt;
'''Note:''' If you have problems with the landscape (landscape may not appear because low memory on VGA chip), try to download and replace the PNG landscape with [http://www.cestomano.com/stellarium/peq/lascanadas.png this 50% scaled image]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.waldvogel.com/stellarium/landscape_rodiano_tmb.png|url=http://www.waldvogel.com/stellarium/landscape_rodiano.zip|name=Frantoio Rodiano, Italy|author=Christian Waldvogel|license=|compat=0.9.x|description=The Frantoio Rodiano (Rodiano oil press) is situated on the foot of Mount Gargano in Puglia / Italy. Just a few kilometers uphill lies Monte Sant'Angelo, the famous stop for christian pilgrims on their way to Jerusalem. Stargazing has been kin to this region for milleniae: the oldest graves found in the Frantoio's vicinity date back to pre-etruscan times, and the famous Castel del Monte, an astronomical observation in itself, is not far either. The spherical landscape was created from 8 images taken on September 20th, 2010, at 1707, from the uppermost terrace of the Frantoio Rodiano. The landscape comes in three resolutions (1024 / 2048 / 4096). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/luene.jpg|url=http://www.ausgerechnet-jetzt.de/lueneburg.zip|name=Top of Water Tower of Lueneburg, Germany|author=Uwe Prolingheuer|license=|compat=0.9.x|description=This is a panoramic view from the top of old Water Tower 56m above ground, constructed 1906/07, in Lueneburg, a town with many retained medieval houses. Northern Germany. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/gas-gao.jpg|url=http://www.stellarium.org/files/landscapes/gas-gao.zip|name=GAS GAO, Russia|author=[http://www.kepler-observatorium.ru/ Andrey Kuznetsov]|license=|compat=0.10.x|description=Russia, Caucasus. The astronomical science station on the mountain Shadjatmaz. This is the view from amateur's observatory (by Andrey Kuznetsov, Sergey Kiselev). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/caucasus.jpg|url=http://www.stellarium.org/files/landscapes/caucasus.zip|name=Caucasus, Russia|author=[http://www.kepler-observatorium.ru/ Andrey Kuznetsov]|license=|compat=0.10.x|description=North Caucasus, Elbrus. }}&lt;br /&gt;
&lt;br /&gt;
===North America===&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/saltlakecity.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_salt_lake_city.zip|name=Salt Lake City Panorama|author=Hiram Bertoch|license=|compat=0.9.x|description=Hiram made this panorama for the KidsKnowIt Network's outreach program. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_sanjose_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_sanjose.zip|name=San Jose, California, USA|author=BrendaEM|license=|compat=0.9.x|description=This panorama was made using Nasa's WorldWind. Screenshots were taken at 45 degree increments. The screenshots were layered and stitched together, and then offset until the the Northern mountains were aligned. A landscape such as this could be made of any location in the world. There is a plug-in for WorldWind called &amp;quot;BigScreenshot,&amp;quot; that may make the process easier, but not automate it. A plug-in could be written to do this entire process automatically. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://trampleasure.net/science/solar-calendar/thumbnail.jpg|url=http://trampleasure.net/science/solar-calendar/landscape.ini|name=Berkeley, California, USA|author=Lee Trampleasure Amosslee|license=|compat=0.9.x|description=This panorama is centered at the [http://solarcalendar.org/ Cesar Chavez Memorial Solar Calendar] at the Berkeley Marina. The solar calendar has large stones that line up with the sunrises and sunsets at the equinoxes and solstices. [http://trampleasure.net/science/solar-calendar/chavez-solar-calendar-large.png 4096X2048 PNG photo, 8.3MB], or [http://trampleasure.net/science/solar-calendar/chavez-solar-calendar.png 2048x1024 PNG photo 2.1MB]. In the larger photo, I painted the Golden Gate bridge to make it stand out a bit more. Credits and location can be found in the [http://trampleasure.net/science/solar-calendar/landscape.ini landscapes.ini file]. Please include credits if you use/distribute this version.  }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.jrctech.net/landscapes/wiki-photos/tn_School-Image2.png|url=http://www.jrctech.net/landscapes/chesterton_school.zip|name=Chesterton Elementary School - San Diego, California, USA|author=[http://www.jrctech.net John Chester]|license=|compat=0.10.x|description=This landscape was taken to help encourage students to learn about science and astronomy using Stellarium.  The panorama was taken at the playground area of Chesterton Elementary School on October 23, 2011.  The image was constructed using the Multiple Image Method using 8 overlapping images to provide a high level of detail.  The original composite panorama image was 22442 (width) x 2418 (height) pixels .  Composite photo reduced to 5 equally sized photos of 2048 by 1024 pixels.  Many trees created complex horizon background but left details, such as tether-ball poles, in place during transparency development to keep landscape realistic.  The lines of the playground provide an interesting perspective with Stellarium. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/eltajin.jpg|url=http://soyouzworld.free.fr/landscape/eltajin.zip|name=El Tajin, Mexico|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the prehispanic city of El Tajin. Theses ruins are part of [http://whc.unesco.org/en/list/631 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/mexico.jpg|url=http://soyouzworld.free.fr/landscape/mexico.zip|name=Mexico Ciudad, Mexico|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Zocalo (Plaza de la Constitución) of Mexico Ciudad. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/uxmal.jpg|url=http://soyouzworld.free.fr/landscape/uxmal.zip|name=Uxmal, Yucatan, Mexico|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Cuadrangulo de las Monjas in Pre-Hispanic Town of Uxmal. This site is part of [http://whc.unesco.org/en/list/791 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://home.arcor.de/mdoege/pano/boulder_thumb.png|url=http://home.arcor.de/mdoege/pano/boulder.zip|name=University of Colorado at Boulder, Boulder, Colorado, USA|author=Martin C. Doege|license=|compat=0.9.x|description=View from Farrand Field at the [http://en.wikipedia.org/wiki/University_of_Colorado_at_Boulder University], with the [http://en.wikipedia.org/wiki/Flatirons Flatirons] to the southwest. (File is 2.9 Mb) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_jasperpyramidisland_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_jasperpyramidisland.zip|name=Jasper National Park, Alberta, Canada|author=[http://www.jasperdarksky.org/stellarium Rogier Gruys]|license=|compat=0.9.x|description=Pyramid Island dark sky observation site in [http://pc.gc.ca/jasper Jasper National Park], Alberta, Canada -  world's largest [http://www.jasperdarksky.org/ Dark Sky Preserve]. This site is only 15 min from the town of Jasper, yet nearly perfectly dark. The panorama was taken just before sunset in October 2011. }}&lt;br /&gt;
&lt;br /&gt;
===South America===&lt;br /&gt;
{{Package|image=http://www.essl.de/wp/wp-content/uploads/2008/03/paranalscreenshot.png|url=http://www.essl.de/wp/wp-content/uploads/2008/03/paranal.zip|name=ESO's Very Large Telescope in the Atacama Desert, Chile|author=[http://www.essl.de Dirk Essl]|license=|compat=0.9.x|description=The Very Large Telescope Project (VLT) is a system of four separate optical telescopes (the Antu telescope, the Kueyen telescope, the Melipal telescope, and the Yepun telescope) organized in an array formation. Each telescope has an 8.2 m aperture. The array is complemented by three movable Auxiliary Telescopes (ATs) of 1.8 m aperture. The project is organized by the [http://www.eso.org/ ESO]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/cachi.jpg|url=http://soyouzworld.free.fr/landscape/cachi.zip|name=Cachi, Argentina|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Parque National Los Cardones near the village of Cachi. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/lagunaverde.jpg|url=http://soyouzworld.free.fr/landscape/lagunaverde.zip|name=Laguna Verde, Bolivia|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Laguna Verde and Laguna Blanca under the Juriques (5704m) and Licancabur (5920m) Volcanos. These lakes are located in Reserva Nacional Eduardo Avaroa, Bolivia. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://documents.epfl.ch/users/m/mt/mtewes/www/permanent/euler_la_silla_thumb.png|url=http://documents.epfl.ch/users/m/mt/mtewes/www/permanent/euler_la_silla.zip|name=Swiss Euler Telescope, ESO La Silla Observatory, Chile|author=[http://obswww.unige.ch/~tewes/ Malte Tewes]|license=|compat=0.9.x|description=Euler is the nearby telescope that can be seen in the west. It is operated by the University of Geneva, and its main duty is the quest of extrasolar planets. The New Technology Telescope (NTT) shows up just behind Euler's control room, Tarot is in due south, and finally the venerable ESO 3.6 meter telescope sits on its hill in the southeast. The panorama was taken on September 3, 2010, at about 7:25 local time, a wonderful sunrise after a snowy night. [http://obswww.unige.ch/~tewes/stellarium_landscapes/ Screenshots] }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/images/landscape_braziland_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_braziland.zip|name=Divinópolis, Brazilia|author=[http://alquimiapopular.wordpress.com/psicologo/ Wanderson Nunes Ferreira]|license=|compat=0.9.x|description=[http://alquimiapopular.wordpress.com/psicologo/ Wanderson Nunes Ferreira] photographed this panorama in the Brazilian city of Divinópolis in March 2011 and stitched it together into a spherical panorama that can be used with Stellarium. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://resoundcity.com/resources/stellarium/shined_dream_tb.jpg|url=http://resoundcity.com/resources/stellarium/shined_dream.zip|name=Shined Dream, Argentina|author=Adrian Felipe Pera|license=|compat=0.9.x|description=[http://www.flickr.com/photos/afpera/7529438152 Shined Dream] by Adrian Felipe Pera, a [http://www.resoundcity.com/ ResoundCity] member. Pergamino, Buenos Aires, Argentina. A small town, but still flashed enough to see nearly the stars, or hear the song of the spheres. [http://www.flickr.com/photos/afpera/7529438152 Flickr image] [http://adn-pera.deviantart.com/#/d56ldh2 deviantart wallpaper]. }}&lt;br /&gt;
&lt;br /&gt;
===Polar regions===&lt;br /&gt;
{{Package|image=http://www.obs-sirene.com/divers/stellarium/concordia.png|url=http://www.obs-sirene.com/divers/stellarium/concordia.zip|name=French-Italian Concordia Station|author=[http://cyprien.pouzenc.free.fr Cyprien Pouzenc]|license=GPLv2+|compat=0.10.x|description=Panoramic view of the station installed at Dome C, Antarctica.}}&lt;br /&gt;
&lt;br /&gt;
===Special===&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/simple.jpg|url=http://www.stellarium.org/files/landscapes/simple.zip|name=Simple|author=[http://astro.uni-altai.ru/~aw/ Alexander Wolf]|license=Public Domain|compat=0.10.x|description=Simple semi-transparent texture for Stellarium.}}&lt;br /&gt;
&lt;br /&gt;
==Contributions==&lt;br /&gt;
Please feel free to contribute your own custom landscapes here.   Make thumbnails 200x114 pixels to fit with the rest of the page.  Please include a location section in your landscape.ini file with the longitude, latitude, altitude and planet for the location of the landscape (see one of the pre-existing landscapes for an example).&lt;br /&gt;
&lt;br /&gt;
To find out more about how to create a landscape, see the [http://www.porpoisehead.net/mysw/stellarium_user_guide_html-0.9.1-1/#SECTION00670000000000000000 Stellarium User Guide], and examine existing landscapes.  If you are having problems, posting to the forums is a good way to get some advice.&lt;br /&gt;
&lt;br /&gt;
===Important note on image dimensions===&lt;br /&gt;
'''IMPORTANT: Make sure all textures have dimensions which are integer powers of 2, i.e. 256, 512, 1024, 2048, 4096, 8192, 16384, ...   e.g. 4096 by 1024, 2048 by 2048 and so on.'''&lt;br /&gt;
&lt;br /&gt;
This is a limitation of OpenGL.  Some video hardware will work OK with images with different image dimensions, but many will not display properly, suffer vastly reduced frame rates, and even crash the computer.  &lt;br /&gt;
&lt;br /&gt;
'''Please make sure all contributed landscapes conform to these requirements, or your link may be removed.'''&lt;br /&gt;
&lt;br /&gt;
Be aware that many people's video hardware cannot handle very large textures.  This is hardware and driver dependent.  A typical maximum image size is 2048x2048 or 4096x4096.&lt;br /&gt;
&lt;br /&gt;
===Package contents===&lt;br /&gt;
Please package your landscape in a .zip file with all files inside a directory in the .zip file.  This should be unique to your landscape, and it would be nice it it was all lower-case with no spaces.  &lt;br /&gt;
&lt;br /&gt;
You should also include a readme.txt file which describes the landscape and specifies any usage restrictions or licensing terms for the images used in the landscape.  &lt;br /&gt;
&lt;br /&gt;
===Licensing===&lt;br /&gt;
Before you distribute images as part of a Stellarium landscape, please ensure you are legally entitled to - you must be the copyright holder for the images, or be able to distribute them for use with Stellarium under the terms of some agreement with the copyright holder (e.g. Creative Commons licensed images found on the web).&lt;br /&gt;
&lt;br /&gt;
It is important to explicitly state what use may be made of images for your landscape.  This should be done in the readme.txt file inside the .zip file.&lt;br /&gt;
&lt;br /&gt;
We recommend an open source license compatible with Stellarium itself (i.e. the GNU GPL), or one of the Creative Commons licenses.  &lt;br /&gt;
&lt;br /&gt;
===Example package contents===&lt;br /&gt;
&lt;br /&gt;
From the Mars Husband Hill landscape:&lt;br /&gt;
&lt;br /&gt;
 Archive:  landscape_mars_husband_hill.zip&lt;br /&gt;
   Length     Date   Time    Name&lt;br /&gt;
  --------    ----   ----    ----&lt;br /&gt;
   1815308  02-05-07 21:02   mars_husband_hill/husband_hill.png&lt;br /&gt;
       211  05-28-07 19:44   mars_husband_hill/landscape.ini&lt;br /&gt;
      1096  06-04-07 15:21   mars_husband_hill/readme.txt&lt;br /&gt;
  --------                   -------&lt;br /&gt;
   1816615                   3 files&lt;br /&gt;
&lt;br /&gt;
The readme.txt file should look something like this:&lt;br /&gt;
&lt;br /&gt;
 Mars Husband Hill Landscape for Stellarium&lt;br /&gt;
 ==========================================&lt;br /&gt;
 &lt;br /&gt;
 Description&lt;br /&gt;
 -----------&lt;br /&gt;
 &lt;br /&gt;
 This landscape was taken from the NASA Spirit Rover on Mars.&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 Files&lt;br /&gt;
 -----&lt;br /&gt;
 &lt;br /&gt;
 This file (readme.txt) should have come in a zip file with some others&lt;br /&gt;
 Here is a listing of all the files which should be in the zip file:&lt;br /&gt;
 &lt;br /&gt;
   mars/readme.txt&lt;br /&gt;
   mars/landscape.ini&lt;br /&gt;
   mars/husband_hill.png&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 Installation &amp;amp; Use&lt;br /&gt;
 ------------------&lt;br /&gt;
 &lt;br /&gt;
 Unzip the landscape package file in your personal stellarium data&lt;br /&gt;
 directory, or the &amp;lt;config_root&amp;gt;/landscapes directory.  The location&lt;br /&gt;
 varyies depending on your operating system.  See the Stellarium&lt;br /&gt;
 User Guide for per-platform details.&lt;br /&gt;
 &lt;br /&gt;
 Once you have installed the landscape, open Stellarium and go to the&lt;br /&gt;
 configuration dialog.  Select the landscapes tab, and select the landscape&lt;br /&gt;
 from the list of available landscapes.&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 Credits&lt;br /&gt;
 -------&lt;br /&gt;
 &lt;br /&gt;
 Image credit: NASA/JPL-Caltech/Cornell&lt;br /&gt;
 http://marsrovers.jpl.nasa.gov/gallery/panoramas/opportunity/index.html&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 License&lt;br /&gt;
 -------&lt;br /&gt;
 &lt;br /&gt;
 NASA Images are released into the public domain&lt;br /&gt;
&lt;br /&gt;
===File encoding===&lt;br /&gt;
The landscape.ini and readme.txt files should be UTF-8 encoded text or plain ASCII.  It's probably a good idea to adopt the Windows line ending encoding, (i.e. CR LF).  Both Windows and *nix style line ending encoding should work OK in Stellarium, but Windows users will have an ugly time reading the readme.txt if it uses *nix-style newlines.&lt;br /&gt;
&lt;br /&gt;
===Need hosting?===&lt;br /&gt;
&lt;br /&gt;
If you have a landscape you would like to share but have no web-space to put it, email [[User:matthewg42|me]] and I'll put it on [http://porpoisehead.net/ my site].&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
*[[Landscape Rotation]] - how to set landscape rotation so that a certain point is due north&lt;br /&gt;
*The user guide, section 5.7: [[Customising Landscapes]]&lt;br /&gt;
&lt;br /&gt;
==Tools==&lt;br /&gt;
The following tools may be useful to people who wish to create their own landscapes:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| width=15% | '''Program''' || width=20% | '''Platform(s)''' || width=15% | '''License''' || width=40% | '''Notes''' &lt;br /&gt;
|-&lt;br /&gt;
|[http://www.cs.ubc.ca/~mbrown/autostitch/autostitch.html Autostitch] &lt;br /&gt;
| Windows; may also run on Linux using [http://www.winehq.org/ Wine]&lt;br /&gt;
| Shareware/demo &lt;br /&gt;
| Looks like it produces good results.  Registered version includes extra types of projection.  No source code.&lt;br /&gt;
|-&lt;br /&gt;
|[http://hugin.sourceforge.net/ Hugin] &lt;br /&gt;
| Linux; FreeBSD; MacOSX; Windows&lt;br /&gt;
| Free/open source (GNU GPL)&lt;br /&gt;
| Hugin is a nice GUI for Panorama Tools&lt;br /&gt;
|-&lt;br /&gt;
||[http://webuser.fh-furtwangen.de/~dersch/ Panorama Tools]&lt;br /&gt;
| Linux; FreeBSD; MacOSX; Windows&lt;br /&gt;
| Free/open source (GNU GPL)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Microsoft's [http://research.microsoft.com/en-us/um/redmond/groups/ivm/ICE/ Image Composite Editor]&lt;br /&gt;
| Windows&lt;br /&gt;
| Free (costless) &lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
*[http://stargazerslounge.com/primers-tutorials/122628-tutorial-custom-stellarium-landscapes.html Tutorial: Custom Stellarium landscapes], thread at the Stargazers Lounge forum&lt;br /&gt;
*[http://www.cloudynights.com/ubbthreads/showflat.php/Number/3759113/ Stellarium landscape image of my back porch], thread at the Cloudy Nights forum (discusses using a home-made fish-eye lens from a peep-hole to create a &amp;quot;fisheye&amp;quot; landscape)&lt;br /&gt;
&lt;br /&gt;
[[Category:Landscapes]]&lt;br /&gt;
[[Category:Customization]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Landscapes</id>
		<title>Landscapes</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Landscapes"/>
				<updated>2012-12-16T14:10:53Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: /* Europe */ Typo fixed&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==How to install landscapes==&lt;br /&gt;
After you have downloaded the .zip file for a landscape from this page, you need to install it in Stellarium.&lt;br /&gt;
&lt;br /&gt;
===Automatic===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;http://www.stellarium.org/wikiimg/stellarium-0-11-1/add-remove-landscapes-button.png&amp;lt;/div&amp;gt;&lt;br /&gt;
If you have Stellarium 0.10.6 or later version, you can use the &amp;quot;Add/remove landscapes&amp;quot; feature to install landscapes automatically:&lt;br /&gt;
*Open the &amp;quot;Sky and viewing options&amp;quot; window by clicking on the appropriate button in the left button bar (or press the F4 key).&lt;br /&gt;
*The &amp;quot;Add/remove landscapes&amp;quot; button is at the bottom of the &amp;quot;Landscape&amp;quot; tab.&lt;br /&gt;
*When you press it, the &amp;quot;Add/remove landscapes&amp;quot; window will appear. It allows you to install &amp;lt;tt&amp;gt;.zip&amp;lt;/tt&amp;gt; files containing landscapes. It also lists the user-installed landscapes and allows you to remove them.&lt;br /&gt;
&lt;br /&gt;
Note that while this makes installing landscapes easier, it may also cause you to overlook what else is included in the ZIP archive. Landscape packages created without this feature in mind may contain other files, such as alternative textures in different sizes.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;align:center&amp;quot;&amp;gt;http://www.stellarium.org/wikiimg/stellarium-0-11-1/add-remove-landscapes-window.png&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Manual===&lt;br /&gt;
If you are using an earlier version of Stellarium, you can follow this procedure to install a landscape package:&lt;br /&gt;
#Browse to your [[User Data Directory]], which varies according to your operating system. (eg. in Windows Vista/7 enter  %appdata%\stellarium in Explorer's location bar )&lt;br /&gt;
#Create a sub-directory called ''landscapes'' in your user directory (if it doesn't exist).&lt;br /&gt;
#Unzip the landscape .zip file in the ''landscapes'' directory (if it's done right, a sub-directory should be created for each landscape).&lt;br /&gt;
&lt;br /&gt;
NOTE: Older version of Stellarium (prior to v0.9.0) used a slightly different mechanism for doing landscapes. You can find a list of the old landscapes [[Landscapes pre 0.9.0|here]].&lt;br /&gt;
&lt;br /&gt;
Since version 0.10.5 Stellarium has problems in correctly loading old style landscapes (multi panel) if they are not 8 or 16 panel panoramas. Some old 4,7,9 qnd 10 side panoramas converted into 8 ides can be found here &lt;br /&gt;
*[http://sarcasmogerdes.dyndns.org/stellarium/uploads/wiruna-field.zip] (Wiruna field Barry's site)&lt;br /&gt;
*[http://sarcasmogerdes.dyndns.org/stellarium/uploads/egarden-new.zip] (Egarden 8 panel Barry's site)&lt;br /&gt;
*[http://sarcasmogerdes.dyndns.org/stellarium/uploads/neven-new.zip] (Como area Sydney Barry's site)&lt;br /&gt;
&lt;br /&gt;
==User contributed landscapes (by continent)==&lt;br /&gt;
We have landscapes for the seven continents (in the [http://en.wikipedia.org/wiki/Continent seven continent model]) - all, including from Antarctica !&lt;br /&gt;
===Interplanetary===&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/husband-hill.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_mars_husband_hill.zip|name=Husband Hill, Mars|author=Johan|license=Public Domain|compat=0.9.x|description=Johan transformed this Mars image from NASA into a spherical panorama that can be used with Stellarium.  Mars rover Spirit made this image during August 24 to 27, 2005. Image credit: NASA/JPL-Caltech/Cornell. Read more on [http://marsrovers.nasa.gov/gallery/panoramas/spirit/2005.html this webpage].}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/landscape_marsopportunity_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_mars_opportunity_rover.zip|name=Mars Opportunity Rover|author=Mike|license=Public Domain|compat=0.9.x|description=Mike sent posted this landscape in the forums.  Another nice Mars rover landscape.}}&lt;br /&gt;
 &lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_iss_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_iss.zip|name=International Space Station|author=Makc|license=GPL|compat=0.9.x|description=Landscape made using some screen shots and data from the wonderful [http://www.shatters.net/celestia/ Celestia].  Set the projection mode to stereographic, zoom out to a wide field of view and point down towards the ground to get the nice rounded &amp;quot;planet&amp;quot; effect.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_apollo_11_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_apollo_11.zip|name=Apollo 11 landing site|author=Mathew Myrup|compat=0.9.x|description=This landscape is made using NASA photographs taken by Buzz Aldrin. Look down and you can see Buzz's footprints :)}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_apollo_17_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_apollo_17.zip|name=Apollo 17 landing site|author=Mathew Myrup|compat=0.9.x|description=This landscape is made using NASA photographs taken by Gene Cernan.}}&lt;br /&gt;
&lt;br /&gt;
===Africa===&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/idehan.jpg|url=http://soyouzworld.free.fr/landscape/idehan.zip|name=Idehan Ubari, Libya|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|compat=0.10.x|description=This is a panoramic view of the desert of Idehan Ubari in Libya.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/leptis.jpg|url=http://soyouzworld.free.fr/landscape/leptis.zip|name=Leptis Magna, Libya|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|compat=0.10.x|description=This is a panoramic view of the theatre of the Roman city of Leptis Magna. This site is part of [http://whc.unesco.org/en/list/183 UNESCO World Heritage].}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/sahara.jpg|url=http://soyouzworld.free.fr/landscape/sahara.zip|name=Sahara, Libya|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|compat=0.10.x|description=This is a panoramic view from somewhere in the middle of the Sahara in Libya.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/waw-al-namus.jpg|url=http://soyouzworld.free.fr/landscape/waw-al-namus.zip|name=Volcano Waw al-Namus, Libya|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|compat=0.10.x|description=This is a panoramic view of Volcano Waw al-Namus in the Sahara.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.domani.ch/masoala/en/capmasoala_thumb.jpg|url=http://www.domani.ch/masoala/en/cap_masoala.zip|name=Cap Masoala, Madagascar|author=Matthias D. Frei|license=GPLv2+|compat=0.9.x|description=This panorama was photographed from the abandoned French lighthouse at the southernmost point of the Masoala peninsula in Madagascar. It provides a spectacular view over the Indian Ocean and the Masoala peninsula that is still mainly covered with rainforest. More information about this particular place can be found  [http://www.domani.ch/masoala/en/index.html here]}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_mbabane_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_mbabane.zip|name=Mbabane, Swaziland|author=Quinton Reissmann|compat=0.9.x|description=Mbabane is the capital of the little kingdom of Swaziland. Waterford/Kamhlaba is an international school on a mountain side which prides itself in cultural diversity. In SiSwati &amp;quot;kamhlaba&amp;quot; means &amp;quot;a world in miniature&amp;quot;. The actual view is from the sports field where we usually set up the telescope.}}&lt;br /&gt;
&lt;br /&gt;
===Asia===&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_everest_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_everest.zip|name=Mount Everest|author=Makc|license=&amp;amp;copy;|compat=0.9.x|description=Amazing parorama of the summit of Mount Everest, 8.85 km above sea level.  [http://www.everestviews.com/ Roddy Mackenzie], who climbed the mountain in 1989, captured the image.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_jantar_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_jantar.zip|name=Jantar Mantar|author=Barry Perlus &amp;amp; Stellarium team|license=CC BY-NC-SA 3.0|compat=0.9.x|description=Professor Barry Perlus of Cornell University allowed us to use his panoramic photography of one of the Jantar Mantars in India to create this landscape.  For more information on these fascinating scientific and architectural works see [http://jantarmantar.org/ jantarmantar.org].}}&lt;br /&gt;
&lt;br /&gt;
===Australasia===&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/beaumont-hills.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_beaumont_hills.zip|name=Beaumont Hills, Sydney, Australia|author=Barry Gerdes|license=GPLv2+|compat=0.9.x|description=Barry made an interesting multiple-image landscape from the rooftop of his house. You can find a detailed account of how this was done in the [http://porpoisehead.net/mysw/stellarium_user_guide_html-0.9.0-1/#SECTION001100000000000000000 Stellarium User Guide].}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/transit-hill.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_transit_hill.zip|name=Transit Hill, Lord Howe Island, Australia|author=Graeme Ewing|compat=0.9.x|description=Graeme Ewing Contributed this panorama of the astronomically significant and visually stunning Transit Hill site Northeast of Sydney, Australia. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_penneshaw_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_penneshaw.zip|name=Penneshaw, Kangaroo Island, Australia|author=Clive Nelson|compat=0.9.x|description=Penneshaw is a small township at the Northwest end of Kangaroo Island, off the coast of South Australia. In the north is the entrance to Gulf St Vincent and the Australian mainland. In the east is the Penneshaw township, To the west, on the horizon, is Kingscote, the main town on Kangaroo Island.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_largsbay_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_largsbay.zip|name=Largs Bay in South Australia|author=Martin Lewicki|license=GPL|compat=0.9.x|description=Panoramic view of Largs Bay in South Australia 8 panel old style landscape. Largs Pier Hotel facade in SSE and Largs Bay Sailing Club due east. Jetty extends to Gulf St Vincent to the west.}}&lt;br /&gt;
&lt;br /&gt;
===Europe===&lt;br /&gt;
{{Package|image=http://www.observatoire-naef.ch/assets/files/ependes-thumbnail.png|url=https://github.com/martignoni/ependes-landscape/raw/master/ependes.zip|name=Épendes Observatory, Fribourg, Switzerland|author=[http://www.stellarium.org/wiki/index.php/User:Mina Nicolas Martignoni]|license=CC BY-NC-SA 3.0|compat=0.10.x|description=The [http://www.observatoire-naef.ch/ Épendes Observatory] (46°44′01″N 7°08′25″E) is located near the city of Fribourg, Switzerland. The images for this landscape were taken in August 2006. The landscape comes in three resolutions (1024 / 2048 / 4096). File size is about 9.8 MB.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://michael.nadev.net/pub/wurania.png|url=http://michael.nadev.net/pub/wurania.zip|name=Urania Observatory, Vienna, Austria|author=Michael Prokosch|license=CC BY-ND 3.0|compat=0.9.x|description=The [http://www.astronomie-wien.at/astronomie_urania.html Urania Observatory] (48°12′41.88″N 16°23′1.53″E) is located right in the middle of the city of Vienna, capital of Austria. Built in 1910 under emporer Franz Joseph I. it's the countries oldest non-scientifical observatory still in use for people's education. This landscape was taken in August 2011. If you are not distracted by the stars, you can even see St. Stephan's cathedral, the Viennese Giant Wheel and the Danube Canal. File size is about 11.5 MB.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://perso.wanadoo.es/arias_llego/stellarium/laguardia/Thumbnail.png|url=http://perso.wanadoo.es/arias_llego/stellarium/laguardia/laguardia.zip|name=Port of La Guardia, Galicia, Spain|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=CC BY-NC-ND 3.0|compat=0.10.x|description=La Guardia is a fishing village in Galicia, in the NW. of Spain. This landscape was taken on the 19/07/2008. '''[http://perso.wanadoo.es/arias_llego/stellarium/laguardia/Port_of_La_Guardia.kmz KMZ file]'''. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/Thumbnail.png|url=http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/castrolaboreiro.zip|name=Castle of Castro Laboreiro 13th Century, Melgaço, Portugal|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=CC BY-NC-ND 3.0|compat=0.10.x|description=Castro Laboreiro is a village in Melgaço, in the NW. of Portugal. This landscape was taken on the 15/08/2010. '''[http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/Castle_of_Castro_Laboreiro.kmz Kmz file]'''. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.cestomano.com/stellarium/thumbnail.png|url=http://www.cestomano.com/stellarium/lascanadas.zip|name=Las Cañadas del Teide, Tenerife, Spain|author=[http://www.cestomano.com José Ángel Estévez]|license=|compat=0.10.x|description=This landscape of Las Cañadas was built in April 2008. It's located in the center of Tenerife island, Canary Islands. It can be viewed the Teide volcano -the highest mountain in Spain: 3.718 mts.-, El Llano de Ucanca and Los Roques de García with the characteristic rock &amp;quot;El Cinchado&amp;quot; which, with Teide Volcano, appeared in the old 1.000 ptas. bill. &lt;br /&gt;
&lt;br /&gt;
'''Note:''' If you have problems with the landscape (landscape may not appear because low memory on VGA chip), try to download and replace the PNG landscape with [http://www.cestomano.com/stellarium/peq/lascanadas.png this 50% scaled image]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.waldvogel.com/stellarium/landscape_jungfraujoch_tmb.png|url=http://www.waldvogel.com/stellarium/landscape_jungfraujoch.zip|name=Jungfraujoch High Altitude Research Station, Switzerland|author=Christian Waldvogel|license=|compat=0.10.x|description=Lying at 3580m in the Bernese Alps, the Jungfraujoch is often dubbed &amp;quot;Top of Europe&amp;quot;. It has been home to an astronomical observation station for more than 80 years. The spherical landscape was created from 20 images taken on June 29th, 2008, at 1015, from the lower terrace of the Sphinx Obervatory. The landscape comes in three resolutions (1024 / 2048 / 4096). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/San_Pietro.jpg|url=http://www.stellarium.org/files/landscapes/San_Pietro.zip|name=St Peter's Square (Vatican)|author=Gianfranco Mazzani|license=|compat=0.10.x|description=This is a complete high resolution panoramic view of the St Peter's Square, City of Vatican. &lt;br /&gt;
&lt;br /&gt;
Gianfranco Mazzani photographed this panorama in july 2004 by using a Nikon Coolpix 8700, and stitched &lt;br /&gt;
the original 10 pictures together into a spherical panorama using Hugin program. The panorama has been &lt;br /&gt;
than cutted into 8 alfa channel pictures and re-dimensioned the width to 2048 pixel and then dimensioned &lt;br /&gt;
the height to 32 cm by using Photoschop elements 2.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.waldvogel.com/stellarium/landscape_rodiano_tmb.png|url=http://www.waldvogel.com/stellarium/landscape_rodiano.zip|name=Frantoio Rodiano, Italy|author=Christian Waldvogel|license=|compat=0.10.x|description=The Frantoio Rodiano (Rodiano oil press) is situated on the foot of Mount Gargano in Puglia / Italy. Just a few kilometers uphill lies Monte Sant'Angelo, the famous stop for christian pilgrims on their way to Jerusalem. Stargazing has been kin to this region for milleniae: the oldest graves found in the Frantoio's vicinity date back to pre-etruscan times, and the famous Castel del Monte, an astronomical observation in itself, is not far either. The spherical landscape was created from 8 images taken on September 20th, 2010, at 1707, from the uppermost terrace of the Frantoio Rodiano. The landscape comes in three resolutions (1024 / 2048 / 4096). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://pano.jubila.de/stellarium/muchachos_thumb.jpg|url=http://pano.jubila.de/stellarium/muchachos.zip|name=Roque de los Muchachos, La Palma, Spain|author=Uwe Buecher|license=|compat=0.10.x|description=This high resolution landscape was built with hugin from 20 photos taken in October 2007. It is located on top of the highest mountain on La Palma, Canary Islands. You can see the Buildings of the Observatorio del Roque de los Muchachos, one of them is the Gran Telescopio Canarias (GTC) which is the greatest telescope in the world today (10.4m diameter). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_egarden_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_egarden.zip|name=English Garden, Munich, Germany|author=Rob Spearman, Johan Meuris|license=|compat=0.9.x|description=This high resolution landscape was taken in April 2007 by Rob. Johan helped with the post production.  The result is a very high quality landscape. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_egarden_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_egarden_old_style.zip|name=English Garden, Munich, Germany|author=Rob Spearman, Johan Meuris|license=|compat=0.9.x|description=The original English Garden landscape was re-constructed by Barry Gerdes as an old_style landscape.  This means that it can be used with video hardware which cannot cope with single very large texture files, and yet preserves the resolution of the landscape (by splitting the images into multiple files). Try this is the original English Garden landscapes doesn't load on your computer. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/voksenlia.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_voksenlia.zip|name=Voksenlia, Oslo, Norway|author=Steinar Midtskogen|license=|compat=0.10.x|description=Steinar Midtskogen sent [http://porpoisehead.net/mysw/downloads/voksenlia.png this huge (17 MiB!) spherical landscape image] of Voksenlia, Oslo, Norway (59°58'14N, 10°38'57E, alt=348m). (Currently not working with version 0.9.0). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/observatory-hill-Barry.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_edinburgh.zip|name=Calton Hill, Edinburgh, Scotland|author=Friedrich Noelle, Barry Gerdes|license=|compat=0.9.x|description=Friedrich Noelle took a nice panorama of Observatory Hill, Edinburgh which Barry converted into a Stellarium landscape. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/sight_thumb.jpg|url=http://www.geomancygroup.org/stella/sighthill.zip|name=Sighthill stone circle, Glasgow, Scotland|author=[http://www.geomancygroup.org Grahame Gardner]|license=|compat=0.9.x|description=Sighthill stone circle is a modern stone ring constructed in 1979 by amateur astronomer and SF writer Duncan Lunan. Located next to the M8 motorway in Glasgow city centre, yet with surprisingly good views, the circle has alignments to the solsticial solar rises and settings and the lunar standstills. Alignments to the rising of Rigel are included for 1979 AD and 1800 BC. (2MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/beech_thumb.jpg|url=http://www.geomancygroup.org/stella/beechhill.zip|name=Beech Hill stone circle, nr. Nutley, E. Sussex, England|author=[http://www.geomancygroup.org Grahame Gardner]|license=|compat=0.9.x|description=Beech Hill is a modern stone ring constructed in 2000 by Ivan McBeth and Richard Creightmore of The Geomancy Group [http://www.geomancygroup.org/ www.geomancygroup.org]. Located in the Ashdown Forest, the circle's main alignment is to the Pole Star, denoted by the angled outlier. (2.2MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/calave_tb.jpg|url=http://www.geomancygroup.org/stella/calanaisave.zip|name=Calanais I (Callanish) Avenue, Lewis, Western Isles, Scotland|author=[http://www.geomancygroup.org Grahame Gardner]|license=|compat=0.9.x|description=Callanish is arguably the finest megalithic monument in the British Isles, and is just the largest site in a vast complex of interconnected monuments designed to observe the southern major standstills of the moon. From this position at the end of the avenue, the moon is seen to set behind the rocky outcrop of Cnoc-an-Tursa, only to 're-gleam' in the centre of the main circle a short time afterwards. (4MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/machrie_tb.jpg|url=http://www.geomancygroup.org/stella/machrie5.zip|name=Machrie Moor 5, Isle of Arran, Scotland|author=[http://www.geomancygroup.org Grahame Gardner]|license=|compat=0.9.x|description=This delightful little double-concentric stone circle is the first site you come to when visiting the Machrie Moor complex of megalithic sites on Arran. Although not the most spectactular site in the group, it is one of the most complete and has good views. (7.3MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/mitchthumbnail.jpg|url=http://www.geomancygroup.org/stella/mitchell2.zip|name=Mitchell's Fold stone circle, Shropshire, England|author=[http://www.vallecrucisgrail.co.uk/ Ian Pegler]|license=|compat=0.9.x|description=This wonderful ancient stone circle stands on a plateau amid the rolling Shropshire hills and is loved by walkers, dowsers and Wiccans alike. April 2010 - new version uploaded, featuring improved centre camera position based on Alexander Thom's geometry and improved alignments. (1.8MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/aveburyn_thumb.jpg|url=http://www.geomancygroup.org/stella/aveburynorth.zip|name=Avebury - North circle, Wiltshire, England|author=[http://www.vallecrucisgrail.co.uk/ Ian Pegler]|license=|compat=0.9.x|description=The North circle of the largest megalithic complex in Europe. In the background you can just make out the Red Lion pub. (1MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/vallecrucis_thumb.jpg|url=http://www.geomancygroup.org/stella/vallecrucis.zip|name=Valle Crucis Abbey, Llangollen, North Wales|author=[http://www.vallecrucisgrail.co.uk/ Ian Pegler]|license=|compat=0.9.x|description=This ruined Cistercian abbey dates to 1200 but may be the site of a much earlier Dark Age settlement with a very early Christian church. (2.5MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/ponta-da-piedade.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_lagos.zip|name=Ponta da Piedade, Algarve, Lagos, Portugal|author=Johan|license=|compat=0.9.x|description=Johan photographed this panorama in June 2006 and stitched it together into a spherical panorama that can be used with Stellarium.  You see sandstone cliffs on the Atlantic coast of southern Portugal, a lighthouse, and a natural bridge. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/landscape_gurnigel_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_gurnigel.zip|name=Gurnigel, Switzerland|author=Martin Mutti|license=|compat=0.9.x|description=This is the site of the Bern Astronomical Society's observing site. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/tishinka-ardashev.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_tishinka.zip|name=Tishinka, Russia|author=Dmitri Ardashev|license=|compat=0.9.x|description=This is a small village between Moscow's and Kaluga's regions, in 130 km south-west of Moscow (55°18'32.46N, 36°26'42.06E, alt=195). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_t60pic_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_t60pic.zip|name=T60 dome, Pic du Midi Observatory, France|author=Sylvain Rondi|license=|compat=0.9.x|description=Sylvain photographed this panorama in February 2007 and stitched it together into a spherical panorama that can be used with Stellarium. This is the panoramic view from the amateur 60cm telescope dome from [http://astrosurf.com/t60/ T60 Association], installed at Pic du Midi Observatory. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_t1mpic_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_t1mpic.zip|name=T1M terrasse, Pic du Midi Observatory, France|author=Sylvain Rondi|license=|compat=0.9.x|description=Sylvain photographed this panorama in February 2007 and stitched it together into a spherical panorama that can be used with Stellarium. This is the panoramic view from the terrasse of the professional 106cm telescope at Pic du Midi Observatory (France). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_sheffieldrivelin_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_sheffieldrivelin.zip|name=River Rivelin, Sheffield, UK|author=Jan Wedekind|license=CC SA-2.0|compat=0.9.x|description=This is a 270° fisheye panorama created from 40 photos using Hugin. It shows the River Rivelin in Sheffield in the middle of April 2007. The fringes (twigs and tree tops) where dimmed out using The Gimp. The overexposed parts of the horizon have been removed. Copyright (C) 2007, [[User:Wedesoft|Jan Wedekind]], [http://creativecommons.org/licenses/by-sa/2.0/ Creative Commons Attribution ShareAlike License 2.0] }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_ares_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_ares.zip|name=Ares, Galicia, Spain|author=[http://www.stellarium.org/wiki/index.php/User:rcasl Rubén Castiñeiras Lorenzo]|license=|compat=0.9.x|description=Ares is a small fishing village in Galicia, in the NW of Spain, close to the city of Ferrol. The 360 degree image was taken at the noon of August 6th, 2007, just in front of the &amp;quot;Paseo Rosalía de Castro&amp;quot;. It has been made with 17 photos, stitched with Hugin 0.7 beta 4 and retouched with the Gimp 2.2.17. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_ovindoli_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_ovindoli.zip|name=Ovindoli, Italy|author=Pierluigi Panunzi|license=|compat=0.9.x|description=Ovindoli is a famous ski resort in central Italy. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/rustrel.jpg|url=http://soyouzworld.free.fr/landscape/rustrel.zip|name=Rustrel, France|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Colorado de Rustrel in &amp;quot;Les Sentiers de l'Ocre et du Fer&amp;quot;, Provence, France. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://files.myopera.com/aid85/files/host/Stintino.jpg|url=http://files.myopera.com/aid85/files/host/stintino.zip|name=Stintino, Italy|author=[http://my.opera.com/aid85 aid85]|license=|compat=0.9.x|description=High resolution 360° landscape taken at &amp;quot;LaPelosa&amp;quot; beach in Stintino (SS) Sardinia \ Italy - Europe \ Mediterranean Sea. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/vatican.jpg|url=http://soyouzworld.free.fr/landscape/vatican.zip|name=St Peter's Square, Vatican|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the St Peter's Square. City of Vatican. Some parts of the buildings are missing, not enough pictures... This site is part of [http://whc.unesco.org/en/list/286 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://files.myopera.com/aid85/files/host/Larvotto.jpg|url=http://files.myopera.com/aid85/files/host/munegu.zip|name=Munegu, MC|author=[http://my.opera.com/aid85 aid85]|license=|compat=0.9.x|description=High resolution 360° landscape taken at Larvotto beach in [http://en.wikipedia.org/wiki/Monaco Munegu \ Monaco - MC] (MonteCarlo) - Europe \ Mediterraneum Sea - Ligurian Sea. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/Bahia_de_Cadiz.jpg|url=http://www.stellarium.org/files/landscapes/Bahia_de_Cadiz.zip|name=Bahia de Cádiz, Spain|author=José Codejón|license=|compat=0.10.x|description=A new bridge is being built across de bay. The 360° panorama image was taken at noon of September 10th, 2012, from the pier of the small marina just closed to the Cadiz head of the bridge. &lt;br /&gt;
&lt;br /&gt;
The final picture is the result of stitching 11 frames, taken out of a 63 seconds full HD video, using PhotoStitch and Gimp 2.6.8. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.ticfisquim.org/astro/stellarium/thumbnails.jpg|url=http://www.ticfisquim.org/astro/stellarium/cocentaina.zip|name=Cocentaina, Spain|author=[http://www.ticfisquim.org Angel Juan Martínez]|license=|compat=0.9.x|description=This is a panoramic view from the roof of the Secondary School of Cocentaina, a little town of the Pais Valencià (Spain), in the mountains that are between Valencia and Alicante, where I teach Astronomy with the help of Stellarium. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.xs4all.nl/~adonet/stellarium/tulipfield.jpg|url=http://www.xs4all.nl/~adonet/stellarium/tulipfield.zip|name=Amstelveen, The Netherlands|author=[http://www.xs4all.nl/~adonet/stellarium/stellarium.html Jeroen Adolfse]|license=|compat=0.9.x|description=This landscape shows the tulipfields in spring (may 2008) in Schagerbrug, North Holland. It's an old_style landscape. (file is 4.5 Mb) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.didgeweb.com/stellarium/oudmeer_sample.png|url=http://www.didgeweb.com/stellarium/son_oudmeer.zip|name=Son &amp;amp;amp; Breugel, The Netherlands|author=[http://www.didgeweb.com/ Roland Mathijssen]|license=|compat=0.9.x|description=This landscape shows the Oude Meer (Old Lake) in the Sonse Heide in Son (close to Eindhoven). (file is 5.4 MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.obs-sirene.com/divers/stellarium/sirene.png|url=http://www.obs-sirene.com/divers/stellarium/sirene.zip|name=Sirene Observatory, Lagarde d'Apt (84), France|author=[http://cyprien.pouzenc.free.fr Cyprien Pouzenc]|license=|compat=0.9.x|description=Panoramic view of installations. Previously the site was used as a nuclear lauching pad. Now days, [http://www.obs-sirene.com Sirene] accepts everybody for astronomical observations. (File is 11 Mb) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.nett.is/~sveinki/stellarium/vonarskard-tn.png|url=http://www.nett.is/~sveinki/stellarium/vonarskard.zip|name=Vonarskar&amp;amp;eth;, Passage of Hope, Iceland|author=[http://www.nett.is/~sveinki/stellarium/ Sveinn &amp;amp;iacute; Felli]|license=|compat=0.9.x|description=This is the geographical center of Iceland, a barren pass between glaciers. Being sheltered from southern vinds by the huge Vatnajökull glacier, a great cold mass which then eliminates most humididy from the air, makes the place unusually good for stargazing. Old-style landscape, resolution is a bit low. (File is 1.1 Mb) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.brontovox.co.uk/Downloads/woodhenge_winter_solstice_sunset_ts.png|url=http://www.brontovox.co.uk/Downloads/woodhenge.zip|name=Woodhenge near Stonehenge|author=[http://www.brontovox.co.uk Hugo Jenks]|license=|compat=0.9.x|description=Woodhenge near Stonehenge was constructed around 2200 BC. It comprised numerous wooden posts set into the chalky ground. These posts of course decayed, and their positions today are marked with concrete cylinders. &lt;br /&gt;
&lt;br /&gt;
The posts are arranged, in plan view, as a series of concentric egg shapes. The axis of the egg shapes aligns approximately with summer solstice sunrise. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.brontovox.co.uk/Downloads/stonehenge_screenshot_st.jpg|url=http://www.brontovox.co.uk/Downloads/stonehenge.zip|name=Stonehenge|author=[http://www.brontovox.co.uk Hugo Jenks]|license=|compat=0.9.x|description=Was it an observatory? Yes indeed it was!  The alignment of the monument with the summer solstice sunrise has been well known for many years. The alignment with the winter solstice sunset may have been more significant. For the first time, many additional alignments are published, and are detailed here:  [http://www.brontovox.co.uk/ www.brontovox.co.uk] These alignments demonstrate that Stonehenge was primarily a functional scientific instrument, used for measuring angles. The angles of interest were the rising and setting bearings of the sun, moon, and stars. It was therefore possible to map the entire visible sky. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/rila.jpg|url=http://soyouzworld.free.fr/landscape/rila.zip|name=Rila Monastery, Bulgaria|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Rila Monastery in Bulgaria. This building is quite high so the sky area is not really large. This site is part of [http://whc.unesco.org/en/list/216 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://bg360.net/stellarium/silistar.jpg|url=http://bg360.net/stellarium/silistar.zip|name=Silistar, Bulgaria|author=[http://bg360.net BG360]|license=|compat=0.9.x|description=Panoramic view of the Silistar Beach in Bulgaria. See this panorama here [http://pano.bg360.net/silistar/index_en.php Flash pano]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://bg360.net/stellarium/alexandernevsky.jpg|url=http://bg360.net/stellarium/alexandernevsky.zip|name=St. Alexander Nevsky Cathedral, Sofia, Bulgaria|author=[http://bg360.net BG360]|license=|compat=0.9.x|description=Panoramic view of the Saint Alexander Nevsky Cathedral in Bulgaria. See this panorama here [http://pano.bg360.net/sofia/alexander-nevsky_en.php Flash pano]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://bg360.net/stellarium/rousse.jpg|url=http://bg360.net/stellarium/rousse.zip|name=Statue of Freedom, Rousse, Bulgaria|author=[http://bg360.net BG360]|license=|compat=0.9.x|description=Panoramic view from the center of Rousse in Bulgaria. See this panorama here [http://pano.bg360.net/ruse/pametnik-svobodata_en.php Flash pano]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/thumbnail-dm.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/dm.zip|name=Central Munich|author=Markus Dähne|license=|compat=0.9.x|description=This landscape shows the view from the Eastern observatory of the [http://www.beobachtergruppe.com Deutsches Museum] in Munich, Germany.  During public observing sessions, Stellarium is used to help explain the sky :-) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_leist_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_leist.zip|name=Leist, Switzerland|author=Bernd Lang|license=|compat=0.9.x|description=This landscape was developed from a panoramic picture of the Leist in Switzerland (2222m).  The picture was taken during a [http://www.panoramio.com/user/1437658 hiking tour] from Tanenboden to the top of the Leist. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_stonehenge_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_stonehenge.zip|name=Stonehenge, England|author=[http://www.freetadel.blogspot.com/ Fernando]|license=|compat=0.9.x|description=This landscape depicts Stonehenge - the famous prehistoric monument in Wiltshire, Southern England. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/avignon.jpg|url=http://soyouzworld.free.fr/landscape/avignon.zip|name=Place du Palais des Papes, Avignon|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Place du Palais des Papes in Avignon.  France. This site is part of [http://whc.unesco.org/en/list/228 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/avignonb.jpg|url=http://soyouzworld.free.fr/landscape/avignonb.zip|name=Le Pont d'Avignon, Avignon|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Pont d'Avignon (aka Bridge Saint-Bénezet) in Avignon.  France. This site is part of [http://whc.unesco.org/en/list/228 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/orange.jpg|url=http://soyouzworld.free.fr/landscape/orange.zip|name=Roman Theatre of Orange|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Roman Theatre of Orange- France. This site is part of [http://whc.unesco.org/en/list/163 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_cambridge_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_cambridge.zip|name=Centre for Mathematical Sciences, Cambridge, UK|author=[http://www.srcf.ucam.org/~mh519/ Matt Hickford]|license=|compat=0.9.x|description=Panorama from the grassy roof of the Centre for Mathematical Sciences, Cambridge University, UK in March. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_grantchester_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/grantchester.zip|name=Grantchester Meadows, Cambridgeshire, UK|author=[http://www.srcf.ucam.org/~mh519/ Matt Hickford]|license=|compat=0.9.x|description=Panorama from Grantchester Meadows, Cambridgeshire, UK in March. Flat horizon. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_areeiro_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_areeiro.zip|name=Pico do Areeiro|author=Filipe Gomes|license=|compat=0.9.x|description=This is a panoramic view of the [http://pt.wikipedia.org/wiki/Pico_do_Arieiro Pico do Areeiro], the second highest point of the island.  Madeira Island - Portugal. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_caniga_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_caniga.zip|name=Caniga Country|author=[http://www.flickr.com/photos/25710744@N03/2672852380/ Andrea Pittalis]|license=|compat=0.9.x|description=This landscape was taken from the Caniga Country, near Sassari in Sardinia, Italy. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.under-a-dark-sky.com/stellarium/cdn-landscape.jpg|url=http://www.under-a-dark-sky.com/stellarium/cdn.zip|name=Cuevas del Negro, Andalucia|author=Peter Lynch|license=|compat=0.9.x|description=A nearly flat rural landscape in southern Spain. The site has very dark skies and a view down to about 3&amp;amp;deg; to the south. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.astrosurf.com/aaaov/landscape/landscape_aaaov_thumb.jpg|url=http://www.astrosurf.com/aaaov/landscape/aaaov.zip|name=Astronomes Amateurs Aixois Observatoire Vauvenargues (AAAOV) - France|author=[http://www.astrosurf.com/aaaov AAAOV]|license=|compat=0.9.x|description=Vauvenargues Observatory located near Aix-en-Provence, France. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.astrosurf.com/aaaov/landscape/landscape_baie_saint_michel_thumb.jpg|url=http://www.astrosurf.com/aaaov/landscape/baie_saint_michel.zip|name=Astronomes Amateurs Aixois Observatoire Vauvenargues (AAAOV) - France|author=[http://www.astrosurf.com/aaaov AAAOV]|license=|compat=0.9.x|description=Saint Michel Bay - Serre Ponçon lake, Alpes - France. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_la_guardia_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_la_guardia.zip|name=La Guardia|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=|compat=0.9.x|description=La Guardia is a fishing village in Galicia, in the NW. of Spain. This landscape was taken on the 19/07/2008 at 12:38 p.m. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_uvalno_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_uvalno.zip|name=Uvalno, Czech Republic|author=|license=|compat=0.9.x|description=A view from a garden in the village of Uvalno, Czech Republic. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://astro.sentvid.org/stellarium/sentvid-thumbnail.png|url=http://astro.sentvid.org/stellarium/sentvid.zip|name=Šentvid, Ljubljana, Slovenia|author=|license=|compat=0.9.x|description=View from the roof of the observatory of Gymnasium Šentvid, Ljubljana, Slovenia. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://astronomia.zagan.pl/pliki/stellarium-moczyn.png|url=http://astronomia.zagan.pl/pliki/moczyn.zip|name=Poland,Zagan - sity Johannes Kepler|author=[http://astronomia.zagan.pl/articles.php?article_id=21 Jacek Patka]|license=|compat=0.9.x|description=View of the old quarter. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://perso.wanadoo.es/arias_llego/stellarium/laguardia/Thumbnail.png|url=http://perso.wanadoo.es/arias_llego/stellarium/laguardia/laguardia.zip|name=Port of La Guardia, Galicia, Spain|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=|compat=0.9.x|description=La Guardia is a fishing village in Galicia, in the NW. of Spain. This landscape was taken on the 19/07/2008.&lt;br /&gt;
&lt;br /&gt;
[http://perso.wanadoo.es/arias_llego/stellarium/laguardia/Port_of_La_Guardia.kmz Kmz file] }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/Thumbnail.png|url=http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/castrolaboreiro.zip|name=Castle of Castro Laboreiro 13th Century, Melgaço, Portugal|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=|compat=0.9.x|description=Castro Laboreiro is a village in Melgaço, in the NW. of Portugal. This landscape was taken on the 15/08/2010.&lt;br /&gt;
&lt;br /&gt;
Castle of Castro Laboreiro 13th Century, Melgaço, Portugal [http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/Castle_of_Castro_Laboreiro.kmz Kmz file] }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.cestomano.com/stellarium/thumbnail.png|url=http://www.cestomano.com/stellarium/lascanadas.zip|name=Las Cañadas del Teide, Tenerife, Spain|author=[http://www.cestomano.com José Ángel Estévez]|license=|compat=0.9.x|description=This landscape of Las Cañadas was built in April 2008. It's located in the center of Tenerife island, Canary Islands. It can be viewed the Teide volcano -the highest mountain in Spain: 3.718 mts.-, El Llano de Ucanca and Los Roques de García with the characteristic rock &amp;quot;El Cinchado&amp;quot; which, with Teide Volcano, appeared in the old 1.000 ptas. bill. &lt;br /&gt;
&lt;br /&gt;
'''Note:''' If you have problems with the landscape (landscape may not appear because low memory on VGA chip), try to download and replace the PNG landscape with [http://www.cestomano.com/stellarium/peq/lascanadas.png this 50% scaled image]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.waldvogel.com/stellarium/landscape_rodiano_tmb.png|url=http://www.waldvogel.com/stellarium/landscape_rodiano.zip|name=Frantoio Rodiano, Italy|author=Christian Waldvogel|license=|compat=0.9.x|description=The Frantoio Rodiano (Rodiano oil press) is situated on the foot of Mount Gargano in Puglia / Italy. Just a few kilometers uphill lies Monte Sant'Angelo, the famous stop for christian pilgrims on their way to Jerusalem. Stargazing has been kin to this region for milleniae: the oldest graves found in the Frantoio's vicinity date back to pre-etruscan times, and the famous Castel del Monte, an astronomical observation in itself, is not far either. The spherical landscape was created from 8 images taken on September 20th, 2010, at 1707, from the uppermost terrace of the Frantoio Rodiano. The landscape comes in three resolutions (1024 / 2048 / 4096). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/luene.jpg|url=http://www.ausgerechnet-jetzt.de/lueneburg.zip|name=Top of Water Tower of Lueneburg, Germany|author=Uwe Prolingheuer|license=|compat=0.9.x|description=This is a panoramic view from the top of old Water Tower 56m above ground, constructed 1906/07, in Lueneburg, a town with many retained medieval houses. Northern Germany. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/gas-gao.jpg|url=http://www.stellarium.org/files/landscapes/gas-gao.zip|name=GAS GAO, Russia|author=[http://www.kepler-observatorium.ru/ Andrey Kuznetsov]|license=|compat=0.10.x|description=Russia, Caucasus. The astronomical science station on the mountain Shadjatmaz. This is the view from amateur's observatory (by Andrey Kuznetsov, Sergey Kiselev). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/caucasus.jpg|url=http://www.stellarium.org/files/landscapes/caucasus.zip|name=Caucasus, Russia|author=[http://www.kepler-observatorium.ru/ Andrey Kuznetsov]|license=|compat=0.10.x|description=North Caucasus, Elbrus. }}&lt;br /&gt;
&lt;br /&gt;
===North America===&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/saltlakecity.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_salt_lake_city.zip|name=Salt Lake City Panorama|author=Hiram Bertoch|license=|compat=0.9.x|description=Hiram made this panorama for the KidsKnowIt Network's outreach program. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_sanjose_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_sanjose.zip|name=San Jose, California, USA|author=BrendaEM|license=|compat=0.9.x|description=This panorama was made using Nasa's WorldWind. Screenshots were taken at 45 degree increments. The screenshots were layered and stitched together, and then offset until the the Northern mountains were aligned. A landscape such as this could be made of any location in the world. There is a plug-in for WorldWind called &amp;quot;BigScreenshot,&amp;quot; that may make the process easier, but not automate it. A plug-in could be written to do this entire process automatically. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://trampleasure.net/science/solar-calendar/thumbnail.jpg|url=http://trampleasure.net/science/solar-calendar/landscape.ini|name=Berkeley, California, USA|author=Lee Trampleasure Amosslee|license=|compat=0.9.x|description=This panorama is centered at the [http://solarcalendar.org/ Cesar Chavez Memorial Solar Calendar] at the Berkeley Marina. The solar calendar has large stones that line up with the sunrises and sunsets at the equinoxes and solstices. [http://trampleasure.net/science/solar-calendar/chavez-solar-calendar-large.png 4096X2048 PNG photo, 8.3MB], or [http://trampleasure.net/science/solar-calendar/chavez-solar-calendar.png 2048x1024 PNG photo 2.1MB]. In the larger photo, I painted the Golden Gate bridge to make it stand out a bit more. Credits and location can be found in the [http://trampleasure.net/science/solar-calendar/landscape.ini landscapes.ini file]. Please include credits if you use/distribute this version.  }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.jrctech.net/landscapes/wiki-photos/tn_School-Image2.png|url=http://www.jrctech.net/landscapes/chesterton_school.zip|name=Chesterton Elementary School - San Diego, California, USA|author=[http://www.jrctech.net John Chester]|license=|compat=0.10.x|description=This landscape was taken to help encourage students to learn about science and astronomy using Stellarium.  The panorama was taken at the playground area of Chesterton Elementary School on October 23, 2011.  The image was constructed using the Multiple Image Method using 8 overlapping images to provide a high level of detail.  The original composite panorama image was 22442 (width) x 2418 (height) pixels .  Composite photo reduced to 5 equally sized photos of 2048 by 1024 pixels.  Many trees created complex horizon background but left details, such as tether-ball poles, in place during transparency development to keep landscape realistic.  The lines of the playground provide an interesting perspective with Stellarium. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/eltajin.jpg|url=http://soyouzworld.free.fr/landscape/eltajin.zip|name=El Tajin, Mexico|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the prehispanic city of El Tajin. Theses ruins are part of [http://whc.unesco.org/en/list/631 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/mexico.jpg|url=http://soyouzworld.free.fr/landscape/mexico.zip|name=Mexico Ciudad, Mexico|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Zocalo (Plaza de la Constitución) of Mexico Ciudad. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/uxmal.jpg|url=http://soyouzworld.free.fr/landscape/uxmal.zip|name=Uxmal, Yucatan, Mexico|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Cuadrangulo de las Monjas in Pre-Hispanic Town of Uxmal. This site is part of [http://whc.unesco.org/en/list/791 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://home.arcor.de/mdoege/pano/boulder_thumb.png|url=http://home.arcor.de/mdoege/pano/boulder.zip|name=University of Colorado at Boulder, Boulder, Colorado, USA|author=Martin C. Doege|license=|compat=0.9.x|description=View from Farrand Field at the [http://en.wikipedia.org/wiki/University_of_Colorado_at_Boulder University], with the [http://en.wikipedia.org/wiki/Flatirons Flatirons] to the southwest. (File is 2.9 Mb) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_jasperpyramidisland_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_jasperpyramidisland.zip|name=Jasper National Park, Alberta, Canada|author=[http://www.jasperdarksky.org/stellarium Rogier Gruys]|license=|compat=0.9.x|description=Pyramid Island dark sky observation site in [http://pc.gc.ca/jasper Jasper National Park], Alberta, Canada -  world's largest [http://www.jasperdarksky.org/ Dark Sky Preserve]. This site is only 15 min from the town of Jasper, yet nearly perfectly dark. The panorama was taken just before sunset in October 2011. }}&lt;br /&gt;
&lt;br /&gt;
===South America===&lt;br /&gt;
{{Package|image=http://www.essl.de/wp/wp-content/uploads/2008/03/paranalscreenshot.png|url=http://www.essl.de/wp/wp-content/uploads/2008/03/paranal.zip|name=ESO's Very Large Telescope in the Atacama Desert, Chile|author=[http://www.essl.de Dirk Essl]|license=|compat=0.9.x|description=The Very Large Telescope Project (VLT) is a system of four separate optical telescopes (the Antu telescope, the Kueyen telescope, the Melipal telescope, and the Yepun telescope) organized in an array formation. Each telescope has an 8.2 m aperture. The array is complemented by three movable Auxiliary Telescopes (ATs) of 1.8 m aperture. The project is organized by the [http://www.eso.org/ ESO]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/cachi.jpg|url=http://soyouzworld.free.fr/landscape/cachi.zip|name=Cachi, Argentina|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Parque National Los Cardones near the village of Cachi. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/lagunaverde.jpg|url=http://soyouzworld.free.fr/landscape/lagunaverde.zip|name=Laguna Verde, Bolivia|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Laguna Verde and Laguna Blanca under the Juriques (5704m) and Licancabur (5920m) Volcanos. These lakes are located in Reserva Nacional Eduardo Avaroa, Bolivia. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://documents.epfl.ch/users/m/mt/mtewes/www/permanent/euler_la_silla_thumb.png|url=http://documents.epfl.ch/users/m/mt/mtewes/www/permanent/euler_la_silla.zip|name=Swiss Euler Telescope, ESO La Silla Observatory, Chile|author=[http://obswww.unige.ch/~tewes/ Malte Tewes]|license=|compat=0.9.x|description=Euler is the nearby telescope that can be seen in the west. It is operated by the University of Geneva, and its main duty is the quest of extrasolar planets. The New Technology Telescope (NTT) shows up just behind Euler's control room, Tarot is in due south, and finally the venerable ESO 3.6 meter telescope sits on its hill in the southeast. The panorama was taken on September 3, 2010, at about 7:25 local time, a wonderful sunrise after a snowy night. [http://obswww.unige.ch/~tewes/stellarium_landscapes/ Screenshots] }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/images/landscape_braziland_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_braziland.zip|name=Divinópolis, Brazilia|author=[http://alquimiapopular.wordpress.com/psicologo/ Wanderson Nunes Ferreira]|license=|compat=0.9.x|description=[http://alquimiapopular.wordpress.com/psicologo/ Wanderson Nunes Ferreira] photographed this panorama in the Brazilian city of Divinópolis in March 2011 and stitched it together into a spherical panorama that can be used with Stellarium. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://resoundcity.com/resources/stellarium/shined_dream_tb.jpg|url=http://resoundcity.com/resources/stellarium/shined_dream.zip|name=Shined Dream, Argentina|author=Adrian Felipe Pera|license=|compat=0.9.x|description=[http://www.flickr.com/photos/afpera/7529438152 Shined Dream] by Adrian Felipe Pera, a [http://www.resoundcity.com/ ResoundCity] member. Pergamino, Buenos Aires, Argentina. A small town, but still flashed enough to see nearly the stars, or hear the song of the spheres. [http://www.flickr.com/photos/afpera/7529438152 Flickr image] [http://adn-pera.deviantart.com/#/d56ldh2 deviantart wallpaper]. }}&lt;br /&gt;
&lt;br /&gt;
===Polar regions===&lt;br /&gt;
{{Package|image=http://www.obs-sirene.com/divers/stellarium/concordia.png|url=http://www.obs-sirene.com/divers/stellarium/concordia.zip|name=French-Italian Concordia Station|author=[http://cyprien.pouzenc.free.fr Cyprien Pouzenc]|license=GPLv2+|compat=0.10.x|description=Panoramic view of the station installed at Dome C, Antarctica.}}&lt;br /&gt;
&lt;br /&gt;
===Special===&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/simple.jpg|url=http://www.stellarium.org/files/landscapes/simple.zip|name=Simple|author=[http://astro.uni-altai.ru/~aw/ Alexander Wolf]|license=Public Domain|compat=0.10.x|description=Simple semi-transparent texture for Stellarium.}}&lt;br /&gt;
&lt;br /&gt;
==Contributions==&lt;br /&gt;
Please feel free to contribute your own custom landscapes here.   Make thumbnails 200x114 pixels to fit with the rest of the page.  Please include a location section in your landscape.ini file with the longitude, latitude, altitude and planet for the location of the landscape (see one of the pre-existing landscapes for an example).&lt;br /&gt;
&lt;br /&gt;
To find out more about how to create a landscape, see the [http://www.porpoisehead.net/mysw/stellarium_user_guide_html-0.9.1-1/#SECTION00670000000000000000 Stellarium User Guide], and examine existing landscapes.  If you are having problems, posting to the forums is a good way to get some advice.&lt;br /&gt;
&lt;br /&gt;
===Important note on image dimensions===&lt;br /&gt;
'''IMPORTANT: Make sure all textures have dimensions which are integer powers of 2, i.e. 256, 512, 1024, 2048, 4096, 8192, 16384, ...   e.g. 4096 by 1024, 2048 by 2048 and so on.'''&lt;br /&gt;
&lt;br /&gt;
This is a limitation of OpenGL.  Some video hardware will work OK with images with different image dimensions, but many will not display properly, suffer vastly reduced frame rates, and even crash the computer.  &lt;br /&gt;
&lt;br /&gt;
'''Please make sure all contributed landscapes conform to these requirements, or your link may be removed.'''&lt;br /&gt;
&lt;br /&gt;
Be aware that many people's video hardware cannot handle very large textures.  This is hardware and driver dependent.  A typical maximum image size is 2048x2048 or 4096x4096.&lt;br /&gt;
&lt;br /&gt;
===Package contents===&lt;br /&gt;
Please package your landscape in a .zip file with all files inside a directory in the .zip file.  This should be unique to your landscape, and it would be nice it it was all lower-case with no spaces.  &lt;br /&gt;
&lt;br /&gt;
You should also include a readme.txt file which describes the landscape and specifies any usage restrictions or licensing terms for the images used in the landscape.  &lt;br /&gt;
&lt;br /&gt;
===Licensing===&lt;br /&gt;
Before you distribute images as part of a Stellarium landscape, please ensure you are legally entitled to - you must be the copyright holder for the images, or be able to distribute them for use with Stellarium under the terms of some agreement with the copyright holder (e.g. Creative Commons licensed images found on the web).&lt;br /&gt;
&lt;br /&gt;
It is important to explicitly state what use may be made of images for your landscape.  This should be done in the readme.txt file inside the .zip file.&lt;br /&gt;
&lt;br /&gt;
We recommend an open source license compatible with Stellarium itself (i.e. the GNU GPL), or one of the Creative Commons licenses.  &lt;br /&gt;
&lt;br /&gt;
===Example package contents===&lt;br /&gt;
&lt;br /&gt;
From the Mars Husband Hill landscape:&lt;br /&gt;
&lt;br /&gt;
 Archive:  landscape_mars_husband_hill.zip&lt;br /&gt;
   Length     Date   Time    Name&lt;br /&gt;
  --------    ----   ----    ----&lt;br /&gt;
   1815308  02-05-07 21:02   mars_husband_hill/husband_hill.png&lt;br /&gt;
       211  05-28-07 19:44   mars_husband_hill/landscape.ini&lt;br /&gt;
      1096  06-04-07 15:21   mars_husband_hill/readme.txt&lt;br /&gt;
  --------                   -------&lt;br /&gt;
   1816615                   3 files&lt;br /&gt;
&lt;br /&gt;
The readme.txt file should look something like this:&lt;br /&gt;
&lt;br /&gt;
 Mars Husband Hill Landscape for Stellarium&lt;br /&gt;
 ==========================================&lt;br /&gt;
 &lt;br /&gt;
 Description&lt;br /&gt;
 -----------&lt;br /&gt;
 &lt;br /&gt;
 This landscape was taken from the NASA Spirit Rover on Mars.&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 Files&lt;br /&gt;
 -----&lt;br /&gt;
 &lt;br /&gt;
 This file (readme.txt) should have come in a zip file with some others&lt;br /&gt;
 Here is a listing of all the files which should be in the zip file:&lt;br /&gt;
 &lt;br /&gt;
   mars/readme.txt&lt;br /&gt;
   mars/landscape.ini&lt;br /&gt;
   mars/husband_hill.png&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 Installation &amp;amp; Use&lt;br /&gt;
 ------------------&lt;br /&gt;
 &lt;br /&gt;
 Unzip the landscape package file in your personal stellarium data&lt;br /&gt;
 directory, or the &amp;lt;config_root&amp;gt;/landscapes directory.  The location&lt;br /&gt;
 varyies depending on your operating system.  See the Stellarium&lt;br /&gt;
 User Guide for per-platform details.&lt;br /&gt;
 &lt;br /&gt;
 Once you have installed the landscape, open Stellarium and go to the&lt;br /&gt;
 configuration dialog.  Select the landscapes tab, and select the landscape&lt;br /&gt;
 from the list of available landscapes.&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 Credits&lt;br /&gt;
 -------&lt;br /&gt;
 &lt;br /&gt;
 Image credit: NASA/JPL-Caltech/Cornell&lt;br /&gt;
 http://marsrovers.jpl.nasa.gov/gallery/panoramas/opportunity/index.html&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 License&lt;br /&gt;
 -------&lt;br /&gt;
 &lt;br /&gt;
 NASA Images are released into the public domain&lt;br /&gt;
&lt;br /&gt;
===File encoding===&lt;br /&gt;
The landscape.ini and readme.txt files should be UTF-8 encoded text or plain ASCII.  It's probably a good idea to adopt the Windows line ending encoding, (i.e. CR LF).  Both Windows and *nix style line ending encoding should work OK in Stellarium, but Windows users will have an ugly time reading the readme.txt if it uses *nix-style newlines.&lt;br /&gt;
&lt;br /&gt;
===Need hosting?===&lt;br /&gt;
&lt;br /&gt;
If you have a landscape you would like to share but have no web-space to put it, email [[User:matthewg42|me]] and I'll put it on [http://porpoisehead.net/ my site].&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
*[[Landscape Rotation]] - how to set landscape rotation so that a certain point is due north&lt;br /&gt;
*The user guide, section 5.7: [[Customising Landscapes]]&lt;br /&gt;
&lt;br /&gt;
==Tools==&lt;br /&gt;
The following tools may be useful to people who wish to create their own landscapes:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| width=15% | '''Program''' || width=20% | '''Platform(s)''' || width=15% | '''License''' || width=40% | '''Notes''' &lt;br /&gt;
|-&lt;br /&gt;
|[http://www.cs.ubc.ca/~mbrown/autostitch/autostitch.html Autostitch] &lt;br /&gt;
| Windows; may also run on Linux using [http://www.winehq.org/ Wine]&lt;br /&gt;
| Shareware/demo &lt;br /&gt;
| Looks like it produces good results.  Registered version includes extra types of projection.  No source code.&lt;br /&gt;
|-&lt;br /&gt;
|[http://hugin.sourceforge.net/ Hugin] &lt;br /&gt;
| Linux; FreeBSD; MacOSX; Windows&lt;br /&gt;
| Free/open source (GNU GPL)&lt;br /&gt;
| Hugin is a nice GUI for Panorama Tools&lt;br /&gt;
|-&lt;br /&gt;
||[http://webuser.fh-furtwangen.de/~dersch/ Panorama Tools]&lt;br /&gt;
| Linux; FreeBSD; MacOSX; Windows&lt;br /&gt;
| Free/open source (GNU GPL)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Microsoft's [http://research.microsoft.com/en-us/um/redmond/groups/ivm/ICE/ Image Composite Editor]&lt;br /&gt;
| Windows&lt;br /&gt;
| Free (costless) &lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
*[http://stargazerslounge.com/primers-tutorials/122628-tutorial-custom-stellarium-landscapes.html Tutorial: Custom Stellarium landscapes], thread at the Stargazers Lounge forum&lt;br /&gt;
*[http://www.cloudynights.com/ubbthreads/showflat.php/Number/3759113/ Stellarium landscape image of my back porch], thread at the Cloudy Nights forum (discusses using a home-made fish-eye lens from a peep-hole to create a &amp;quot;fisheye&amp;quot; landscape)&lt;br /&gt;
&lt;br /&gt;
[[Category:Landscapes]]&lt;br /&gt;
[[Category:Customization]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Landscapes</id>
		<title>Landscapes</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Landscapes"/>
				<updated>2012-12-16T14:03:42Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: /* Europe */ URL change&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==How to install landscapes==&lt;br /&gt;
After you have downloaded the .zip file for a landscape from this page, you need to install it in Stellarium.&lt;br /&gt;
&lt;br /&gt;
===Automatic===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;http://www.stellarium.org/wikiimg/stellarium-0-11-1/add-remove-landscapes-button.png&amp;lt;/div&amp;gt;&lt;br /&gt;
If you have Stellarium 0.10.6 or later version, you can use the &amp;quot;Add/remove landscapes&amp;quot; feature to install landscapes automatically:&lt;br /&gt;
*Open the &amp;quot;Sky and viewing options&amp;quot; window by clicking on the appropriate button in the left button bar (or press the F4 key).&lt;br /&gt;
*The &amp;quot;Add/remove landscapes&amp;quot; button is at the bottom of the &amp;quot;Landscape&amp;quot; tab.&lt;br /&gt;
*When you press it, the &amp;quot;Add/remove landscapes&amp;quot; window will appear. It allows you to install &amp;lt;tt&amp;gt;.zip&amp;lt;/tt&amp;gt; files containing landscapes. It also lists the user-installed landscapes and allows you to remove them.&lt;br /&gt;
&lt;br /&gt;
Note that while this makes installing landscapes easier, it may also cause you to overlook what else is included in the ZIP archive. Landscape packages created without this feature in mind may contain other files, such as alternative textures in different sizes.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;align:center&amp;quot;&amp;gt;http://www.stellarium.org/wikiimg/stellarium-0-11-1/add-remove-landscapes-window.png&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Manual===&lt;br /&gt;
If you are using an earlier version of Stellarium, you can follow this procedure to install a landscape package:&lt;br /&gt;
#Browse to your [[User Data Directory]], which varies according to your operating system. (eg. in Windows Vista/7 enter  %appdata%\stellarium in Explorer's location bar )&lt;br /&gt;
#Create a sub-directory called ''landscapes'' in your user directory (if it doesn't exist).&lt;br /&gt;
#Unzip the landscape .zip file in the ''landscapes'' directory (if it's done right, a sub-directory should be created for each landscape).&lt;br /&gt;
&lt;br /&gt;
NOTE: Older version of Stellarium (prior to v0.9.0) used a slightly different mechanism for doing landscapes. You can find a list of the old landscapes [[Landscapes pre 0.9.0|here]].&lt;br /&gt;
&lt;br /&gt;
Since version 0.10.5 Stellarium has problems in correctly loading old style landscapes (multi panel) if they are not 8 or 16 panel panoramas. Some old 4,7,9 qnd 10 side panoramas converted into 8 ides can be found here &lt;br /&gt;
*[http://sarcasmogerdes.dyndns.org/stellarium/uploads/wiruna-field.zip] (Wiruna field Barry's site)&lt;br /&gt;
*[http://sarcasmogerdes.dyndns.org/stellarium/uploads/egarden-new.zip] (Egarden 8 panel Barry's site)&lt;br /&gt;
*[http://sarcasmogerdes.dyndns.org/stellarium/uploads/neven-new.zip] (Como area Sydney Barry's site)&lt;br /&gt;
&lt;br /&gt;
==User contributed landscapes (by continent)==&lt;br /&gt;
We have landscapes for the seven continents (in the [http://en.wikipedia.org/wiki/Continent seven continent model]) - all, including from Antarctica !&lt;br /&gt;
===Interplanetary===&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/husband-hill.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_mars_husband_hill.zip|name=Husband Hill, Mars|author=Johan|license=Public Domain|compat=0.9.x|description=Johan transformed this Mars image from NASA into a spherical panorama that can be used with Stellarium.  Mars rover Spirit made this image during August 24 to 27, 2005. Image credit: NASA/JPL-Caltech/Cornell. Read more on [http://marsrovers.nasa.gov/gallery/panoramas/spirit/2005.html this webpage].}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/landscape_marsopportunity_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_mars_opportunity_rover.zip|name=Mars Opportunity Rover|author=Mike|license=Public Domain|compat=0.9.x|description=Mike sent posted this landscape in the forums.  Another nice Mars rover landscape.}}&lt;br /&gt;
 &lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_iss_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_iss.zip|name=International Space Station|author=Makc|license=GPL|compat=0.9.x|description=Landscape made using some screen shots and data from the wonderful [http://www.shatters.net/celestia/ Celestia].  Set the projection mode to stereographic, zoom out to a wide field of view and point down towards the ground to get the nice rounded &amp;quot;planet&amp;quot; effect.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_apollo_11_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_apollo_11.zip|name=Apollo 11 landing site|author=Mathew Myrup|compat=0.9.x|description=This landscape is made using NASA photographs taken by Buzz Aldrin. Look down and you can see Buzz's footprints :)}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_apollo_17_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_apollo_17.zip|name=Apollo 17 landing site|author=Mathew Myrup|compat=0.9.x|description=This landscape is made using NASA photographs taken by Gene Cernan.}}&lt;br /&gt;
&lt;br /&gt;
===Africa===&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/idehan.jpg|url=http://soyouzworld.free.fr/landscape/idehan.zip|name=Idehan Ubari, Libya|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|compat=0.10.x|description=This is a panoramic view of the desert of Idehan Ubari in Libya.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/leptis.jpg|url=http://soyouzworld.free.fr/landscape/leptis.zip|name=Leptis Magna, Libya|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|compat=0.10.x|description=This is a panoramic view of the theatre of the Roman city of Leptis Magna. This site is part of [http://whc.unesco.org/en/list/183 UNESCO World Heritage].}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/sahara.jpg|url=http://soyouzworld.free.fr/landscape/sahara.zip|name=Sahara, Libya|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|compat=0.10.x|description=This is a panoramic view from somewhere in the middle of the Sahara in Libya.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/waw-al-namus.jpg|url=http://soyouzworld.free.fr/landscape/waw-al-namus.zip|name=Volcano Waw al-Namus, Libya|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|compat=0.10.x|description=This is a panoramic view of Volcano Waw al-Namus in the Sahara.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.domani.ch/masoala/en/capmasoala_thumb.jpg|url=http://www.domani.ch/masoala/en/cap_masoala.zip|name=Cap Masoala, Madagascar|author=Matthias D. Frei|license=GPLv2+|compat=0.9.x|description=This panorama was photographed from the abandoned French lighthouse at the southernmost point of the Masoala peninsula in Madagascar. It provides a spectacular view over the Indian Ocean and the Masoala peninsula that is still mainly covered with rainforest. More information about this particular place can be found  [http://www.domani.ch/masoala/en/index.html here]}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_mbabane_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_mbabane.zip|name=Mbabane, Swaziland|author=Quinton Reissmann|compat=0.9.x|description=Mbabane is the capital of the little kingdom of Swaziland. Waterford/Kamhlaba is an international school on a mountain side which prides itself in cultural diversity. In SiSwati &amp;quot;kamhlaba&amp;quot; means &amp;quot;a world in miniature&amp;quot;. The actual view is from the sports field where we usually set up the telescope.}}&lt;br /&gt;
&lt;br /&gt;
===Asia===&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_everest_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_everest.zip|name=Mount Everest|author=Makc|license=&amp;amp;copy;|compat=0.9.x|description=Amazing parorama of the summit of Mount Everest, 8.85 km above sea level.  [http://www.everestviews.com/ Roddy Mackenzie], who climbed the mountain in 1989, captured the image.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_jantar_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_jantar.zip|name=Jantar Mantar|author=Barry Perlus &amp;amp; Stellarium team|license=CC BY-NC-SA 3.0|compat=0.9.x|description=Professor Barry Perlus of Cornell University allowed us to use his panoramic photography of one of the Jantar Mantars in India to create this landscape.  For more information on these fascinating scientific and architectural works see [http://jantarmantar.org/ jantarmantar.org].}}&lt;br /&gt;
&lt;br /&gt;
===Australasia===&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/beaumont-hills.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_beaumont_hills.zip|name=Beaumont Hills, Sydney, Australia|author=Barry Gerdes|license=GPLv2+|compat=0.9.x|description=Barry made an interesting multiple-image landscape from the rooftop of his house. You can find a detailed account of how this was done in the [http://porpoisehead.net/mysw/stellarium_user_guide_html-0.9.0-1/#SECTION001100000000000000000 Stellarium User Guide].}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/transit-hill.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_transit_hill.zip|name=Transit Hill, Lord Howe Island, Australia|author=Graeme Ewing|compat=0.9.x|description=Graeme Ewing Contributed this panorama of the astronomically significant and visually stunning Transit Hill site Northeast of Sydney, Australia. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_penneshaw_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_penneshaw.zip|name=Penneshaw, Kangaroo Island, Australia|author=Clive Nelson|compat=0.9.x|description=Penneshaw is a small township at the Northwest end of Kangaroo Island, off the coast of South Australia. In the north is the entrance to Gulf St Vincent and the Australian mainland. In the east is the Penneshaw township, To the west, on the horizon, is Kingscote, the main town on Kangaroo Island.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_largsbay_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_largsbay.zip|name=Largs Bay in South Australia|author=Martin Lewicki|license=GPL|compat=0.9.x|description=Panoramic view of Largs Bay in South Australia 8 panel old style landscape. Largs Pier Hotel facade in SSE and Largs Bay Sailing Club due east. Jetty extends to Gulf St Vincent to the west.}}&lt;br /&gt;
&lt;br /&gt;
===Europe===&lt;br /&gt;
{{Package|image=http://www.observatoire-naef.ch/assets/files/ependes-thumbnail.png|url=https://github.com/martignoni/ependes-landscape/raw/master/ependes.zip|name=Épendes Observatory, Fribourg, Switzerland|author=[http://www.stellarium.org/wiki/index.php/User:Mina Nicolas Martignoni]|license=CC BY-NC-SA 3.0|compat=0.10.x|description=The [http://www.observatoire-naef.ch/ Épendes Observatory] (44°44′01″N 7°08′25″E) is located near the city of Fribourg, Switzerland. The images for this landscape were taken in August 2006. The landscape comes in three resolutions (1024 / 2048 / 4096). File size is about 9.8 MB.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://michael.nadev.net/pub/wurania.png|url=http://michael.nadev.net/pub/wurania.zip|name=Urania Observatory, Vienna, Austria|author=Michael Prokosch|license=CC BY-ND 3.0|compat=0.9.x|description=The [http://www.astronomie-wien.at/astronomie_urania.html Urania Observatory] (48°12′41.88″N 16°23′1.53″E) is located right in the middle of the city of Vienna, capital of Austria. Built in 1910 under emporer Franz Joseph I. it's the countries oldest non-scientifical observatory still in use for people's education. This landscape was taken in August 2011. If you are not distracted by the stars, you can even see St. Stephan's cathedral, the Viennese Giant Wheel and the Danube Canal. File size is about 11.5 MB.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://perso.wanadoo.es/arias_llego/stellarium/laguardia/Thumbnail.png|url=http://perso.wanadoo.es/arias_llego/stellarium/laguardia/laguardia.zip|name=Port of La Guardia, Galicia, Spain|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=CC BY-NC-ND 3.0|compat=0.10.x|description=La Guardia is a fishing village in Galicia, in the NW. of Spain. This landscape was taken on the 19/07/2008. '''[http://perso.wanadoo.es/arias_llego/stellarium/laguardia/Port_of_La_Guardia.kmz KMZ file]'''. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/Thumbnail.png|url=http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/castrolaboreiro.zip|name=Castle of Castro Laboreiro 13th Century, Melgaço, Portugal|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=CC BY-NC-ND 3.0|compat=0.10.x|description=Castro Laboreiro is a village in Melgaço, in the NW. of Portugal. This landscape was taken on the 15/08/2010. '''[http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/Castle_of_Castro_Laboreiro.kmz Kmz file]'''. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.cestomano.com/stellarium/thumbnail.png|url=http://www.cestomano.com/stellarium/lascanadas.zip|name=Las Cañadas del Teide, Tenerife, Spain|author=[http://www.cestomano.com José Ángel Estévez]|license=|compat=0.10.x|description=This landscape of Las Cañadas was built in April 2008. It's located in the center of Tenerife island, Canary Islands. It can be viewed the Teide volcano -the highest mountain in Spain: 3.718 mts.-, El Llano de Ucanca and Los Roques de García with the characteristic rock &amp;quot;El Cinchado&amp;quot; which, with Teide Volcano, appeared in the old 1.000 ptas. bill. &lt;br /&gt;
&lt;br /&gt;
'''Note:''' If you have problems with the landscape (landscape may not appear because low memory on VGA chip), try to download and replace the PNG landscape with [http://www.cestomano.com/stellarium/peq/lascanadas.png this 50% scaled image]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.waldvogel.com/stellarium/landscape_jungfraujoch_tmb.png|url=http://www.waldvogel.com/stellarium/landscape_jungfraujoch.zip|name=Jungfraujoch High Altitude Research Station, Switzerland|author=Christian Waldvogel|license=|compat=0.10.x|description=Lying at 3580m in the Bernese Alps, the Jungfraujoch is often dubbed &amp;quot;Top of Europe&amp;quot;. It has been home to an astronomical observation station for more than 80 years. The spherical landscape was created from 20 images taken on June 29th, 2008, at 1015, from the lower terrace of the Sphinx Obervatory. The landscape comes in three resolutions (1024 / 2048 / 4096). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/San_Pietro.jpg|url=http://www.stellarium.org/files/landscapes/San_Pietro.zip|name=St Peter's Square (Vatican)|author=Gianfranco Mazzani|license=|compat=0.10.x|description=This is a complete high resolution panoramic view of the St Peter's Square, City of Vatican. &lt;br /&gt;
&lt;br /&gt;
Gianfranco Mazzani photographed this panorama in july 2004 by using a Nikon Coolpix 8700, and stitched &lt;br /&gt;
the original 10 pictures together into a spherical panorama using Hugin program. The panorama has been &lt;br /&gt;
than cutted into 8 alfa channel pictures and re-dimensioned the width to 2048 pixel and then dimensioned &lt;br /&gt;
the height to 32 cm by using Photoschop elements 2.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.waldvogel.com/stellarium/landscape_rodiano_tmb.png|url=http://www.waldvogel.com/stellarium/landscape_rodiano.zip|name=Frantoio Rodiano, Italy|author=Christian Waldvogel|license=|compat=0.10.x|description=The Frantoio Rodiano (Rodiano oil press) is situated on the foot of Mount Gargano in Puglia / Italy. Just a few kilometers uphill lies Monte Sant'Angelo, the famous stop for christian pilgrims on their way to Jerusalem. Stargazing has been kin to this region for milleniae: the oldest graves found in the Frantoio's vicinity date back to pre-etruscan times, and the famous Castel del Monte, an astronomical observation in itself, is not far either. The spherical landscape was created from 8 images taken on September 20th, 2010, at 1707, from the uppermost terrace of the Frantoio Rodiano. The landscape comes in three resolutions (1024 / 2048 / 4096). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://pano.jubila.de/stellarium/muchachos_thumb.jpg|url=http://pano.jubila.de/stellarium/muchachos.zip|name=Roque de los Muchachos, La Palma, Spain|author=Uwe Buecher|license=|compat=0.10.x|description=This high resolution landscape was built with hugin from 20 photos taken in October 2007. It is located on top of the highest mountain on La Palma, Canary Islands. You can see the Buildings of the Observatorio del Roque de los Muchachos, one of them is the Gran Telescopio Canarias (GTC) which is the greatest telescope in the world today (10.4m diameter). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_egarden_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_egarden.zip|name=English Garden, Munich, Germany|author=Rob Spearman, Johan Meuris|license=|compat=0.9.x|description=This high resolution landscape was taken in April 2007 by Rob. Johan helped with the post production.  The result is a very high quality landscape. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_egarden_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_egarden_old_style.zip|name=English Garden, Munich, Germany|author=Rob Spearman, Johan Meuris|license=|compat=0.9.x|description=The original English Garden landscape was re-constructed by Barry Gerdes as an old_style landscape.  This means that it can be used with video hardware which cannot cope with single very large texture files, and yet preserves the resolution of the landscape (by splitting the images into multiple files). Try this is the original English Garden landscapes doesn't load on your computer. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/voksenlia.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_voksenlia.zip|name=Voksenlia, Oslo, Norway|author=Steinar Midtskogen|license=|compat=0.10.x|description=Steinar Midtskogen sent [http://porpoisehead.net/mysw/downloads/voksenlia.png this huge (17 MiB!) spherical landscape image] of Voksenlia, Oslo, Norway (59°58'14N, 10°38'57E, alt=348m). (Currently not working with version 0.9.0). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/observatory-hill-Barry.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_edinburgh.zip|name=Calton Hill, Edinburgh, Scotland|author=Friedrich Noelle, Barry Gerdes|license=|compat=0.9.x|description=Friedrich Noelle took a nice panorama of Observatory Hill, Edinburgh which Barry converted into a Stellarium landscape. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/sight_thumb.jpg|url=http://www.geomancygroup.org/stella/sighthill.zip|name=Sighthill stone circle, Glasgow, Scotland|author=[http://www.geomancygroup.org Grahame Gardner]|license=|compat=0.9.x|description=Sighthill stone circle is a modern stone ring constructed in 1979 by amateur astronomer and SF writer Duncan Lunan. Located next to the M8 motorway in Glasgow city centre, yet with surprisingly good views, the circle has alignments to the solsticial solar rises and settings and the lunar standstills. Alignments to the rising of Rigel are included for 1979 AD and 1800 BC. (2MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/beech_thumb.jpg|url=http://www.geomancygroup.org/stella/beechhill.zip|name=Beech Hill stone circle, nr. Nutley, E. Sussex, England|author=[http://www.geomancygroup.org Grahame Gardner]|license=|compat=0.9.x|description=Beech Hill is a modern stone ring constructed in 2000 by Ivan McBeth and Richard Creightmore of The Geomancy Group [http://www.geomancygroup.org/ www.geomancygroup.org]. Located in the Ashdown Forest, the circle's main alignment is to the Pole Star, denoted by the angled outlier. (2.2MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/calave_tb.jpg|url=http://www.geomancygroup.org/stella/calanaisave.zip|name=Calanais I (Callanish) Avenue, Lewis, Western Isles, Scotland|author=[http://www.geomancygroup.org Grahame Gardner]|license=|compat=0.9.x|description=Callanish is arguably the finest megalithic monument in the British Isles, and is just the largest site in a vast complex of interconnected monuments designed to observe the southern major standstills of the moon. From this position at the end of the avenue, the moon is seen to set behind the rocky outcrop of Cnoc-an-Tursa, only to 're-gleam' in the centre of the main circle a short time afterwards. (4MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/machrie_tb.jpg|url=http://www.geomancygroup.org/stella/machrie5.zip|name=Machrie Moor 5, Isle of Arran, Scotland|author=[http://www.geomancygroup.org Grahame Gardner]|license=|compat=0.9.x|description=This delightful little double-concentric stone circle is the first site you come to when visiting the Machrie Moor complex of megalithic sites on Arran. Although not the most spectactular site in the group, it is one of the most complete and has good views. (7.3MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/mitchthumbnail.jpg|url=http://www.geomancygroup.org/stella/mitchell2.zip|name=Mitchell's Fold stone circle, Shropshire, England|author=[http://www.vallecrucisgrail.co.uk/ Ian Pegler]|license=|compat=0.9.x|description=This wonderful ancient stone circle stands on a plateau amid the rolling Shropshire hills and is loved by walkers, dowsers and Wiccans alike. April 2010 - new version uploaded, featuring improved centre camera position based on Alexander Thom's geometry and improved alignments. (1.8MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/aveburyn_thumb.jpg|url=http://www.geomancygroup.org/stella/aveburynorth.zip|name=Avebury - North circle, Wiltshire, England|author=[http://www.vallecrucisgrail.co.uk/ Ian Pegler]|license=|compat=0.9.x|description=The North circle of the largest megalithic complex in Europe. In the background you can just make out the Red Lion pub. (1MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/vallecrucis_thumb.jpg|url=http://www.geomancygroup.org/stella/vallecrucis.zip|name=Valle Crucis Abbey, Llangollen, North Wales|author=[http://www.vallecrucisgrail.co.uk/ Ian Pegler]|license=|compat=0.9.x|description=This ruined Cistercian abbey dates to 1200 but may be the site of a much earlier Dark Age settlement with a very early Christian church. (2.5MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/ponta-da-piedade.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_lagos.zip|name=Ponta da Piedade, Algarve, Lagos, Portugal|author=Johan|license=|compat=0.9.x|description=Johan photographed this panorama in June 2006 and stitched it together into a spherical panorama that can be used with Stellarium.  You see sandstone cliffs on the Atlantic coast of southern Portugal, a lighthouse, and a natural bridge. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/landscape_gurnigel_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_gurnigel.zip|name=Gurnigel, Switzerland|author=Martin Mutti|license=|compat=0.9.x|description=This is the site of the Bern Astronomical Society's observing site. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/tishinka-ardashev.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_tishinka.zip|name=Tishinka, Russia|author=Dmitri Ardashev|license=|compat=0.9.x|description=This is a small village between Moscow's and Kaluga's regions, in 130 km south-west of Moscow (55°18'32.46N, 36°26'42.06E, alt=195). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_t60pic_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_t60pic.zip|name=T60 dome, Pic du Midi Observatory, France|author=Sylvain Rondi|license=|compat=0.9.x|description=Sylvain photographed this panorama in February 2007 and stitched it together into a spherical panorama that can be used with Stellarium. This is the panoramic view from the amateur 60cm telescope dome from [http://astrosurf.com/t60/ T60 Association], installed at Pic du Midi Observatory. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_t1mpic_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_t1mpic.zip|name=T1M terrasse, Pic du Midi Observatory, France|author=Sylvain Rondi|license=|compat=0.9.x|description=Sylvain photographed this panorama in February 2007 and stitched it together into a spherical panorama that can be used with Stellarium. This is the panoramic view from the terrasse of the professional 106cm telescope at Pic du Midi Observatory (France). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_sheffieldrivelin_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_sheffieldrivelin.zip|name=River Rivelin, Sheffield, UK|author=Jan Wedekind|license=CC SA-2.0|compat=0.9.x|description=This is a 270° fisheye panorama created from 40 photos using Hugin. It shows the River Rivelin in Sheffield in the middle of April 2007. The fringes (twigs and tree tops) where dimmed out using The Gimp. The overexposed parts of the horizon have been removed. Copyright (C) 2007, [[User:Wedesoft|Jan Wedekind]], [http://creativecommons.org/licenses/by-sa/2.0/ Creative Commons Attribution ShareAlike License 2.0] }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_ares_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_ares.zip|name=Ares, Galicia, Spain|author=[http://www.stellarium.org/wiki/index.php/User:rcasl Rubén Castiñeiras Lorenzo]|license=|compat=0.9.x|description=Ares is a small fishing village in Galicia, in the NW of Spain, close to the city of Ferrol. The 360 degree image was taken at the noon of August 6th, 2007, just in front of the &amp;quot;Paseo Rosalía de Castro&amp;quot;. It has been made with 17 photos, stitched with Hugin 0.7 beta 4 and retouched with the Gimp 2.2.17. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_ovindoli_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_ovindoli.zip|name=Ovindoli, Italy|author=Pierluigi Panunzi|license=|compat=0.9.x|description=Ovindoli is a famous ski resort in central Italy. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/rustrel.jpg|url=http://soyouzworld.free.fr/landscape/rustrel.zip|name=Rustrel, France|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Colorado de Rustrel in &amp;quot;Les Sentiers de l'Ocre et du Fer&amp;quot;, Provence, France. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://files.myopera.com/aid85/files/host/Stintino.jpg|url=http://files.myopera.com/aid85/files/host/stintino.zip|name=Stintino, Italy|author=[http://my.opera.com/aid85 aid85]|license=|compat=0.9.x|description=High resolution 360° landscape taken at &amp;quot;LaPelosa&amp;quot; beach in Stintino (SS) Sardinia \ Italy - Europe \ Mediterranean Sea. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/vatican.jpg|url=http://soyouzworld.free.fr/landscape/vatican.zip|name=St Peter's Square, Vatican|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the St Peter's Square. City of Vatican. Some parts of the buildings are missing, not enough pictures... This site is part of [http://whc.unesco.org/en/list/286 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://files.myopera.com/aid85/files/host/Larvotto.jpg|url=http://files.myopera.com/aid85/files/host/munegu.zip|name=Munegu, MC|author=[http://my.opera.com/aid85 aid85]|license=|compat=0.9.x|description=High resolution 360° landscape taken at Larvotto beach in [http://en.wikipedia.org/wiki/Monaco Munegu \ Monaco - MC] (MonteCarlo) - Europe \ Mediterraneum Sea - Ligurian Sea. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/Bahia_de_Cadiz.jpg|url=http://www.stellarium.org/files/landscapes/Bahia_de_Cadiz.zip|name=Bahia de Cádiz, Spain|author=José Codejón|license=|compat=0.10.x|description=A new bridge is being built across de bay. The 360° panorama image was taken at noon of September 10th, 2012, from the pier of the small marina just closed to the Cadiz head of the bridge. &lt;br /&gt;
&lt;br /&gt;
The final picture is the result of stitching 11 frames, taken out of a 63 seconds full HD video, using PhotoStitch and Gimp 2.6.8. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.ticfisquim.org/astro/stellarium/thumbnails.jpg|url=http://www.ticfisquim.org/astro/stellarium/cocentaina.zip|name=Cocentaina, Spain|author=[http://www.ticfisquim.org Angel Juan Martínez]|license=|compat=0.9.x|description=This is a panoramic view from the roof of the Secondary School of Cocentaina, a little town of the Pais Valencià (Spain), in the mountains that are between Valencia and Alicante, where I teach Astronomy with the help of Stellarium. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.xs4all.nl/~adonet/stellarium/tulipfield.jpg|url=http://www.xs4all.nl/~adonet/stellarium/tulipfield.zip|name=Amstelveen, The Netherlands|author=[http://www.xs4all.nl/~adonet/stellarium/stellarium.html Jeroen Adolfse]|license=|compat=0.9.x|description=This landscape shows the tulipfields in spring (may 2008) in Schagerbrug, North Holland. It's an old_style landscape. (file is 4.5 Mb) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.didgeweb.com/stellarium/oudmeer_sample.png|url=http://www.didgeweb.com/stellarium/son_oudmeer.zip|name=Son &amp;amp;amp; Breugel, The Netherlands|author=[http://www.didgeweb.com/ Roland Mathijssen]|license=|compat=0.9.x|description=This landscape shows the Oude Meer (Old Lake) in the Sonse Heide in Son (close to Eindhoven). (file is 5.4 MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.obs-sirene.com/divers/stellarium/sirene.png|url=http://www.obs-sirene.com/divers/stellarium/sirene.zip|name=Sirene Observatory, Lagarde d'Apt (84), France|author=[http://cyprien.pouzenc.free.fr Cyprien Pouzenc]|license=|compat=0.9.x|description=Panoramic view of installations. Previously the site was used as a nuclear lauching pad. Now days, [http://www.obs-sirene.com Sirene] accepts everybody for astronomical observations. (File is 11 Mb) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.nett.is/~sveinki/stellarium/vonarskard-tn.png|url=http://www.nett.is/~sveinki/stellarium/vonarskard.zip|name=Vonarskar&amp;amp;eth;, Passage of Hope, Iceland|author=[http://www.nett.is/~sveinki/stellarium/ Sveinn &amp;amp;iacute; Felli]|license=|compat=0.9.x|description=This is the geographical center of Iceland, a barren pass between glaciers. Being sheltered from southern vinds by the huge Vatnajökull glacier, a great cold mass which then eliminates most humididy from the air, makes the place unusually good for stargazing. Old-style landscape, resolution is a bit low. (File is 1.1 Mb) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.brontovox.co.uk/Downloads/woodhenge_winter_solstice_sunset_ts.png|url=http://www.brontovox.co.uk/Downloads/woodhenge.zip|name=Woodhenge near Stonehenge|author=[http://www.brontovox.co.uk Hugo Jenks]|license=|compat=0.9.x|description=Woodhenge near Stonehenge was constructed around 2200 BC. It comprised numerous wooden posts set into the chalky ground. These posts of course decayed, and their positions today are marked with concrete cylinders. &lt;br /&gt;
&lt;br /&gt;
The posts are arranged, in plan view, as a series of concentric egg shapes. The axis of the egg shapes aligns approximately with summer solstice sunrise. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.brontovox.co.uk/Downloads/stonehenge_screenshot_st.jpg|url=http://www.brontovox.co.uk/Downloads/stonehenge.zip|name=Stonehenge|author=[http://www.brontovox.co.uk Hugo Jenks]|license=|compat=0.9.x|description=Was it an observatory? Yes indeed it was!  The alignment of the monument with the summer solstice sunrise has been well known for many years. The alignment with the winter solstice sunset may have been more significant. For the first time, many additional alignments are published, and are detailed here:  [http://www.brontovox.co.uk/ www.brontovox.co.uk] These alignments demonstrate that Stonehenge was primarily a functional scientific instrument, used for measuring angles. The angles of interest were the rising and setting bearings of the sun, moon, and stars. It was therefore possible to map the entire visible sky. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/rila.jpg|url=http://soyouzworld.free.fr/landscape/rila.zip|name=Rila Monastery, Bulgaria|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Rila Monastery in Bulgaria. This building is quite high so the sky area is not really large. This site is part of [http://whc.unesco.org/en/list/216 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://bg360.net/stellarium/silistar.jpg|url=http://bg360.net/stellarium/silistar.zip|name=Silistar, Bulgaria|author=[http://bg360.net BG360]|license=|compat=0.9.x|description=Panoramic view of the Silistar Beach in Bulgaria. See this panorama here [http://pano.bg360.net/silistar/index_en.php Flash pano]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://bg360.net/stellarium/alexandernevsky.jpg|url=http://bg360.net/stellarium/alexandernevsky.zip|name=St. Alexander Nevsky Cathedral, Sofia, Bulgaria|author=[http://bg360.net BG360]|license=|compat=0.9.x|description=Panoramic view of the Saint Alexander Nevsky Cathedral in Bulgaria. See this panorama here [http://pano.bg360.net/sofia/alexander-nevsky_en.php Flash pano]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://bg360.net/stellarium/rousse.jpg|url=http://bg360.net/stellarium/rousse.zip|name=Statue of Freedom, Rousse, Bulgaria|author=[http://bg360.net BG360]|license=|compat=0.9.x|description=Panoramic view from the center of Rousse in Bulgaria. See this panorama here [http://pano.bg360.net/ruse/pametnik-svobodata_en.php Flash pano]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/thumbnail-dm.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/dm.zip|name=Central Munich|author=Markus Dähne|license=|compat=0.9.x|description=This landscape shows the view from the Eastern observatory of the [http://www.beobachtergruppe.com Deutsches Museum] in Munich, Germany.  During public observing sessions, Stellarium is used to help explain the sky :-) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_leist_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_leist.zip|name=Leist, Switzerland|author=Bernd Lang|license=|compat=0.9.x|description=This landscape was developed from a panoramic picture of the Leist in Switzerland (2222m).  The picture was taken during a [http://www.panoramio.com/user/1437658 hiking tour] from Tanenboden to the top of the Leist. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_stonehenge_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_stonehenge.zip|name=Stonehenge, England|author=[http://www.freetadel.blogspot.com/ Fernando]|license=|compat=0.9.x|description=This landscape depicts Stonehenge - the famous prehistoric monument in Wiltshire, Southern England. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/avignon.jpg|url=http://soyouzworld.free.fr/landscape/avignon.zip|name=Place du Palais des Papes, Avignon|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Place du Palais des Papes in Avignon.  France. This site is part of [http://whc.unesco.org/en/list/228 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/avignonb.jpg|url=http://soyouzworld.free.fr/landscape/avignonb.zip|name=Le Pont d'Avignon, Avignon|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Pont d'Avignon (aka Bridge Saint-Bénezet) in Avignon.  France. This site is part of [http://whc.unesco.org/en/list/228 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/orange.jpg|url=http://soyouzworld.free.fr/landscape/orange.zip|name=Roman Theatre of Orange|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Roman Theatre of Orange- France. This site is part of [http://whc.unesco.org/en/list/163 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_cambridge_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_cambridge.zip|name=Centre for Mathematical Sciences, Cambridge, UK|author=[http://www.srcf.ucam.org/~mh519/ Matt Hickford]|license=|compat=0.9.x|description=Panorama from the grassy roof of the Centre for Mathematical Sciences, Cambridge University, UK in March. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_grantchester_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/grantchester.zip|name=Grantchester Meadows, Cambridgeshire, UK|author=[http://www.srcf.ucam.org/~mh519/ Matt Hickford]|license=|compat=0.9.x|description=Panorama from Grantchester Meadows, Cambridgeshire, UK in March. Flat horizon. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_areeiro_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_areeiro.zip|name=Pico do Areeiro|author=Filipe Gomes|license=|compat=0.9.x|description=This is a panoramic view of the [http://pt.wikipedia.org/wiki/Pico_do_Arieiro Pico do Areeiro], the second highest point of the island.  Madeira Island - Portugal. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_caniga_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_caniga.zip|name=Caniga Country|author=[http://www.flickr.com/photos/25710744@N03/2672852380/ Andrea Pittalis]|license=|compat=0.9.x|description=This landscape was taken from the Caniga Country, near Sassari in Sardinia, Italy. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.under-a-dark-sky.com/stellarium/cdn-landscape.jpg|url=http://www.under-a-dark-sky.com/stellarium/cdn.zip|name=Cuevas del Negro, Andalucia|author=Peter Lynch|license=|compat=0.9.x|description=A nearly flat rural landscape in southern Spain. The site has very dark skies and a view down to about 3&amp;amp;deg; to the south. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.astrosurf.com/aaaov/landscape/landscape_aaaov_thumb.jpg|url=http://www.astrosurf.com/aaaov/landscape/aaaov.zip|name=Astronomes Amateurs Aixois Observatoire Vauvenargues (AAAOV) - France|author=[http://www.astrosurf.com/aaaov AAAOV]|license=|compat=0.9.x|description=Vauvenargues Observatory located near Aix-en-Provence, France. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.astrosurf.com/aaaov/landscape/landscape_baie_saint_michel_thumb.jpg|url=http://www.astrosurf.com/aaaov/landscape/baie_saint_michel.zip|name=Astronomes Amateurs Aixois Observatoire Vauvenargues (AAAOV) - France|author=[http://www.astrosurf.com/aaaov AAAOV]|license=|compat=0.9.x|description=Saint Michel Bay - Serre Ponçon lake, Alpes - France. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_la_guardia_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_la_guardia.zip|name=La Guardia|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=|compat=0.9.x|description=La Guardia is a fishing village in Galicia, in the NW. of Spain. This landscape was taken on the 19/07/2008 at 12:38 p.m. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_uvalno_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_uvalno.zip|name=Uvalno, Czech Republic|author=|license=|compat=0.9.x|description=A view from a garden in the village of Uvalno, Czech Republic. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://astro.sentvid.org/stellarium/sentvid-thumbnail.png|url=http://astro.sentvid.org/stellarium/sentvid.zip|name=Šentvid, Ljubljana, Slovenia|author=|license=|compat=0.9.x|description=View from the roof of the observatory of Gymnasium Šentvid, Ljubljana, Slovenia. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://astronomia.zagan.pl/pliki/stellarium-moczyn.png|url=http://astronomia.zagan.pl/pliki/moczyn.zip|name=Poland,Zagan - sity Johannes Kepler|author=[http://astronomia.zagan.pl/articles.php?article_id=21 Jacek Patka]|license=|compat=0.9.x|description=View of the old quarter. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://perso.wanadoo.es/arias_llego/stellarium/laguardia/Thumbnail.png|url=http://perso.wanadoo.es/arias_llego/stellarium/laguardia/laguardia.zip|name=Port of La Guardia, Galicia, Spain|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=|compat=0.9.x|description=La Guardia is a fishing village in Galicia, in the NW. of Spain. This landscape was taken on the 19/07/2008.&lt;br /&gt;
&lt;br /&gt;
[http://perso.wanadoo.es/arias_llego/stellarium/laguardia/Port_of_La_Guardia.kmz Kmz file] }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/Thumbnail.png|url=http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/castrolaboreiro.zip|name=Castle of Castro Laboreiro 13th Century, Melgaço, Portugal|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=|compat=0.9.x|description=Castro Laboreiro is a village in Melgaço, in the NW. of Portugal. This landscape was taken on the 15/08/2010.&lt;br /&gt;
&lt;br /&gt;
Castle of Castro Laboreiro 13th Century, Melgaço, Portugal [http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/Castle_of_Castro_Laboreiro.kmz Kmz file] }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.cestomano.com/stellarium/thumbnail.png|url=http://www.cestomano.com/stellarium/lascanadas.zip|name=Las Cañadas del Teide, Tenerife, Spain|author=[http://www.cestomano.com José Ángel Estévez]|license=|compat=0.9.x|description=This landscape of Las Cañadas was built in April 2008. It's located in the center of Tenerife island, Canary Islands. It can be viewed the Teide volcano -the highest mountain in Spain: 3.718 mts.-, El Llano de Ucanca and Los Roques de García with the characteristic rock &amp;quot;El Cinchado&amp;quot; which, with Teide Volcano, appeared in the old 1.000 ptas. bill. &lt;br /&gt;
&lt;br /&gt;
'''Note:''' If you have problems with the landscape (landscape may not appear because low memory on VGA chip), try to download and replace the PNG landscape with [http://www.cestomano.com/stellarium/peq/lascanadas.png this 50% scaled image]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.waldvogel.com/stellarium/landscape_rodiano_tmb.png|url=http://www.waldvogel.com/stellarium/landscape_rodiano.zip|name=Frantoio Rodiano, Italy|author=Christian Waldvogel|license=|compat=0.9.x|description=The Frantoio Rodiano (Rodiano oil press) is situated on the foot of Mount Gargano in Puglia / Italy. Just a few kilometers uphill lies Monte Sant'Angelo, the famous stop for christian pilgrims on their way to Jerusalem. Stargazing has been kin to this region for milleniae: the oldest graves found in the Frantoio's vicinity date back to pre-etruscan times, and the famous Castel del Monte, an astronomical observation in itself, is not far either. The spherical landscape was created from 8 images taken on September 20th, 2010, at 1707, from the uppermost terrace of the Frantoio Rodiano. The landscape comes in three resolutions (1024 / 2048 / 4096). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/luene.jpg|url=http://www.ausgerechnet-jetzt.de/lueneburg.zip|name=Top of Water Tower of Lueneburg, Germany|author=Uwe Prolingheuer|license=|compat=0.9.x|description=This is a panoramic view from the top of old Water Tower 56m above ground, constructed 1906/07, in Lueneburg, a town with many retained medieval houses. Northern Germany. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/gas-gao.jpg|url=http://www.stellarium.org/files/landscapes/gas-gao.zip|name=GAS GAO, Russia|author=[http://www.kepler-observatorium.ru/ Andrey Kuznetsov]|license=|compat=0.10.x|description=Russia, Caucasus. The astronomical science station on the mountain Shadjatmaz. This is the view from amateur's observatory (by Andrey Kuznetsov, Sergey Kiselev). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/caucasus.jpg|url=http://www.stellarium.org/files/landscapes/caucasus.zip|name=Caucasus, Russia|author=[http://www.kepler-observatorium.ru/ Andrey Kuznetsov]|license=|compat=0.10.x|description=North Caucasus, Elbrus. }}&lt;br /&gt;
&lt;br /&gt;
===North America===&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/saltlakecity.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_salt_lake_city.zip|name=Salt Lake City Panorama|author=Hiram Bertoch|license=|compat=0.9.x|description=Hiram made this panorama for the KidsKnowIt Network's outreach program. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_sanjose_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_sanjose.zip|name=San Jose, California, USA|author=BrendaEM|license=|compat=0.9.x|description=This panorama was made using Nasa's WorldWind. Screenshots were taken at 45 degree increments. The screenshots were layered and stitched together, and then offset until the the Northern mountains were aligned. A landscape such as this could be made of any location in the world. There is a plug-in for WorldWind called &amp;quot;BigScreenshot,&amp;quot; that may make the process easier, but not automate it. A plug-in could be written to do this entire process automatically. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://trampleasure.net/science/solar-calendar/thumbnail.jpg|url=http://trampleasure.net/science/solar-calendar/landscape.ini|name=Berkeley, California, USA|author=Lee Trampleasure Amosslee|license=|compat=0.9.x|description=This panorama is centered at the [http://solarcalendar.org/ Cesar Chavez Memorial Solar Calendar] at the Berkeley Marina. The solar calendar has large stones that line up with the sunrises and sunsets at the equinoxes and solstices. [http://trampleasure.net/science/solar-calendar/chavez-solar-calendar-large.png 4096X2048 PNG photo, 8.3MB], or [http://trampleasure.net/science/solar-calendar/chavez-solar-calendar.png 2048x1024 PNG photo 2.1MB]. In the larger photo, I painted the Golden Gate bridge to make it stand out a bit more. Credits and location can be found in the [http://trampleasure.net/science/solar-calendar/landscape.ini landscapes.ini file]. Please include credits if you use/distribute this version.  }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.jrctech.net/landscapes/wiki-photos/tn_School-Image2.png|url=http://www.jrctech.net/landscapes/chesterton_school.zip|name=Chesterton Elementary School - San Diego, California, USA|author=[http://www.jrctech.net John Chester]|license=|compat=0.10.x|description=This landscape was taken to help encourage students to learn about science and astronomy using Stellarium.  The panorama was taken at the playground area of Chesterton Elementary School on October 23, 2011.  The image was constructed using the Multiple Image Method using 8 overlapping images to provide a high level of detail.  The original composite panorama image was 22442 (width) x 2418 (height) pixels .  Composite photo reduced to 5 equally sized photos of 2048 by 1024 pixels.  Many trees created complex horizon background but left details, such as tether-ball poles, in place during transparency development to keep landscape realistic.  The lines of the playground provide an interesting perspective with Stellarium. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/eltajin.jpg|url=http://soyouzworld.free.fr/landscape/eltajin.zip|name=El Tajin, Mexico|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the prehispanic city of El Tajin. Theses ruins are part of [http://whc.unesco.org/en/list/631 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/mexico.jpg|url=http://soyouzworld.free.fr/landscape/mexico.zip|name=Mexico Ciudad, Mexico|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Zocalo (Plaza de la Constitución) of Mexico Ciudad. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/uxmal.jpg|url=http://soyouzworld.free.fr/landscape/uxmal.zip|name=Uxmal, Yucatan, Mexico|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Cuadrangulo de las Monjas in Pre-Hispanic Town of Uxmal. This site is part of [http://whc.unesco.org/en/list/791 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://home.arcor.de/mdoege/pano/boulder_thumb.png|url=http://home.arcor.de/mdoege/pano/boulder.zip|name=University of Colorado at Boulder, Boulder, Colorado, USA|author=Martin C. Doege|license=|compat=0.9.x|description=View from Farrand Field at the [http://en.wikipedia.org/wiki/University_of_Colorado_at_Boulder University], with the [http://en.wikipedia.org/wiki/Flatirons Flatirons] to the southwest. (File is 2.9 Mb) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_jasperpyramidisland_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_jasperpyramidisland.zip|name=Jasper National Park, Alberta, Canada|author=[http://www.jasperdarksky.org/stellarium Rogier Gruys]|license=|compat=0.9.x|description=Pyramid Island dark sky observation site in [http://pc.gc.ca/jasper Jasper National Park], Alberta, Canada -  world's largest [http://www.jasperdarksky.org/ Dark Sky Preserve]. This site is only 15 min from the town of Jasper, yet nearly perfectly dark. The panorama was taken just before sunset in October 2011. }}&lt;br /&gt;
&lt;br /&gt;
===South America===&lt;br /&gt;
{{Package|image=http://www.essl.de/wp/wp-content/uploads/2008/03/paranalscreenshot.png|url=http://www.essl.de/wp/wp-content/uploads/2008/03/paranal.zip|name=ESO's Very Large Telescope in the Atacama Desert, Chile|author=[http://www.essl.de Dirk Essl]|license=|compat=0.9.x|description=The Very Large Telescope Project (VLT) is a system of four separate optical telescopes (the Antu telescope, the Kueyen telescope, the Melipal telescope, and the Yepun telescope) organized in an array formation. Each telescope has an 8.2 m aperture. The array is complemented by three movable Auxiliary Telescopes (ATs) of 1.8 m aperture. The project is organized by the [http://www.eso.org/ ESO]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/cachi.jpg|url=http://soyouzworld.free.fr/landscape/cachi.zip|name=Cachi, Argentina|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Parque National Los Cardones near the village of Cachi. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/lagunaverde.jpg|url=http://soyouzworld.free.fr/landscape/lagunaverde.zip|name=Laguna Verde, Bolivia|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Laguna Verde and Laguna Blanca under the Juriques (5704m) and Licancabur (5920m) Volcanos. These lakes are located in Reserva Nacional Eduardo Avaroa, Bolivia. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://documents.epfl.ch/users/m/mt/mtewes/www/permanent/euler_la_silla_thumb.png|url=http://documents.epfl.ch/users/m/mt/mtewes/www/permanent/euler_la_silla.zip|name=Swiss Euler Telescope, ESO La Silla Observatory, Chile|author=[http://obswww.unige.ch/~tewes/ Malte Tewes]|license=|compat=0.9.x|description=Euler is the nearby telescope that can be seen in the west. It is operated by the University of Geneva, and its main duty is the quest of extrasolar planets. The New Technology Telescope (NTT) shows up just behind Euler's control room, Tarot is in due south, and finally the venerable ESO 3.6 meter telescope sits on its hill in the southeast. The panorama was taken on September 3, 2010, at about 7:25 local time, a wonderful sunrise after a snowy night. [http://obswww.unige.ch/~tewes/stellarium_landscapes/ Screenshots] }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/images/landscape_braziland_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_braziland.zip|name=Divinópolis, Brazilia|author=[http://alquimiapopular.wordpress.com/psicologo/ Wanderson Nunes Ferreira]|license=|compat=0.9.x|description=[http://alquimiapopular.wordpress.com/psicologo/ Wanderson Nunes Ferreira] photographed this panorama in the Brazilian city of Divinópolis in March 2011 and stitched it together into a spherical panorama that can be used with Stellarium. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://resoundcity.com/resources/stellarium/shined_dream_tb.jpg|url=http://resoundcity.com/resources/stellarium/shined_dream.zip|name=Shined Dream, Argentina|author=Adrian Felipe Pera|license=|compat=0.9.x|description=[http://www.flickr.com/photos/afpera/7529438152 Shined Dream] by Adrian Felipe Pera, a [http://www.resoundcity.com/ ResoundCity] member. Pergamino, Buenos Aires, Argentina. A small town, but still flashed enough to see nearly the stars, or hear the song of the spheres. [http://www.flickr.com/photos/afpera/7529438152 Flickr image] [http://adn-pera.deviantart.com/#/d56ldh2 deviantart wallpaper]. }}&lt;br /&gt;
&lt;br /&gt;
===Polar regions===&lt;br /&gt;
{{Package|image=http://www.obs-sirene.com/divers/stellarium/concordia.png|url=http://www.obs-sirene.com/divers/stellarium/concordia.zip|name=French-Italian Concordia Station|author=[http://cyprien.pouzenc.free.fr Cyprien Pouzenc]|license=GPLv2+|compat=0.10.x|description=Panoramic view of the station installed at Dome C, Antarctica.}}&lt;br /&gt;
&lt;br /&gt;
===Special===&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/simple.jpg|url=http://www.stellarium.org/files/landscapes/simple.zip|name=Simple|author=[http://astro.uni-altai.ru/~aw/ Alexander Wolf]|license=Public Domain|compat=0.10.x|description=Simple semi-transparent texture for Stellarium.}}&lt;br /&gt;
&lt;br /&gt;
==Contributions==&lt;br /&gt;
Please feel free to contribute your own custom landscapes here.   Make thumbnails 200x114 pixels to fit with the rest of the page.  Please include a location section in your landscape.ini file with the longitude, latitude, altitude and planet for the location of the landscape (see one of the pre-existing landscapes for an example).&lt;br /&gt;
&lt;br /&gt;
To find out more about how to create a landscape, see the [http://www.porpoisehead.net/mysw/stellarium_user_guide_html-0.9.1-1/#SECTION00670000000000000000 Stellarium User Guide], and examine existing landscapes.  If you are having problems, posting to the forums is a good way to get some advice.&lt;br /&gt;
&lt;br /&gt;
===Important note on image dimensions===&lt;br /&gt;
'''IMPORTANT: Make sure all textures have dimensions which are integer powers of 2, i.e. 256, 512, 1024, 2048, 4096, 8192, 16384, ...   e.g. 4096 by 1024, 2048 by 2048 and so on.'''&lt;br /&gt;
&lt;br /&gt;
This is a limitation of OpenGL.  Some video hardware will work OK with images with different image dimensions, but many will not display properly, suffer vastly reduced frame rates, and even crash the computer.  &lt;br /&gt;
&lt;br /&gt;
'''Please make sure all contributed landscapes conform to these requirements, or your link may be removed.'''&lt;br /&gt;
&lt;br /&gt;
Be aware that many people's video hardware cannot handle very large textures.  This is hardware and driver dependent.  A typical maximum image size is 2048x2048 or 4096x4096.&lt;br /&gt;
&lt;br /&gt;
===Package contents===&lt;br /&gt;
Please package your landscape in a .zip file with all files inside a directory in the .zip file.  This should be unique to your landscape, and it would be nice it it was all lower-case with no spaces.  &lt;br /&gt;
&lt;br /&gt;
You should also include a readme.txt file which describes the landscape and specifies any usage restrictions or licensing terms for the images used in the landscape.  &lt;br /&gt;
&lt;br /&gt;
===Licensing===&lt;br /&gt;
Before you distribute images as part of a Stellarium landscape, please ensure you are legally entitled to - you must be the copyright holder for the images, or be able to distribute them for use with Stellarium under the terms of some agreement with the copyright holder (e.g. Creative Commons licensed images found on the web).&lt;br /&gt;
&lt;br /&gt;
It is important to explicitly state what use may be made of images for your landscape.  This should be done in the readme.txt file inside the .zip file.&lt;br /&gt;
&lt;br /&gt;
We recommend an open source license compatible with Stellarium itself (i.e. the GNU GPL), or one of the Creative Commons licenses.  &lt;br /&gt;
&lt;br /&gt;
===Example package contents===&lt;br /&gt;
&lt;br /&gt;
From the Mars Husband Hill landscape:&lt;br /&gt;
&lt;br /&gt;
 Archive:  landscape_mars_husband_hill.zip&lt;br /&gt;
   Length     Date   Time    Name&lt;br /&gt;
  --------    ----   ----    ----&lt;br /&gt;
   1815308  02-05-07 21:02   mars_husband_hill/husband_hill.png&lt;br /&gt;
       211  05-28-07 19:44   mars_husband_hill/landscape.ini&lt;br /&gt;
      1096  06-04-07 15:21   mars_husband_hill/readme.txt&lt;br /&gt;
  --------                   -------&lt;br /&gt;
   1816615                   3 files&lt;br /&gt;
&lt;br /&gt;
The readme.txt file should look something like this:&lt;br /&gt;
&lt;br /&gt;
 Mars Husband Hill Landscape for Stellarium&lt;br /&gt;
 ==========================================&lt;br /&gt;
 &lt;br /&gt;
 Description&lt;br /&gt;
 -----------&lt;br /&gt;
 &lt;br /&gt;
 This landscape was taken from the NASA Spirit Rover on Mars.&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 Files&lt;br /&gt;
 -----&lt;br /&gt;
 &lt;br /&gt;
 This file (readme.txt) should have come in a zip file with some others&lt;br /&gt;
 Here is a listing of all the files which should be in the zip file:&lt;br /&gt;
 &lt;br /&gt;
   mars/readme.txt&lt;br /&gt;
   mars/landscape.ini&lt;br /&gt;
   mars/husband_hill.png&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 Installation &amp;amp; Use&lt;br /&gt;
 ------------------&lt;br /&gt;
 &lt;br /&gt;
 Unzip the landscape package file in your personal stellarium data&lt;br /&gt;
 directory, or the &amp;lt;config_root&amp;gt;/landscapes directory.  The location&lt;br /&gt;
 varyies depending on your operating system.  See the Stellarium&lt;br /&gt;
 User Guide for per-platform details.&lt;br /&gt;
 &lt;br /&gt;
 Once you have installed the landscape, open Stellarium and go to the&lt;br /&gt;
 configuration dialog.  Select the landscapes tab, and select the landscape&lt;br /&gt;
 from the list of available landscapes.&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 Credits&lt;br /&gt;
 -------&lt;br /&gt;
 &lt;br /&gt;
 Image credit: NASA/JPL-Caltech/Cornell&lt;br /&gt;
 http://marsrovers.jpl.nasa.gov/gallery/panoramas/opportunity/index.html&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 License&lt;br /&gt;
 -------&lt;br /&gt;
 &lt;br /&gt;
 NASA Images are released into the public domain&lt;br /&gt;
&lt;br /&gt;
===File encoding===&lt;br /&gt;
The landscape.ini and readme.txt files should be UTF-8 encoded text or plain ASCII.  It's probably a good idea to adopt the Windows line ending encoding, (i.e. CR LF).  Both Windows and *nix style line ending encoding should work OK in Stellarium, but Windows users will have an ugly time reading the readme.txt if it uses *nix-style newlines.&lt;br /&gt;
&lt;br /&gt;
===Need hosting?===&lt;br /&gt;
&lt;br /&gt;
If you have a landscape you would like to share but have no web-space to put it, email [[User:matthewg42|me]] and I'll put it on [http://porpoisehead.net/ my site].&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
*[[Landscape Rotation]] - how to set landscape rotation so that a certain point is due north&lt;br /&gt;
*The user guide, section 5.7: [[Customising Landscapes]]&lt;br /&gt;
&lt;br /&gt;
==Tools==&lt;br /&gt;
The following tools may be useful to people who wish to create their own landscapes:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| width=15% | '''Program''' || width=20% | '''Platform(s)''' || width=15% | '''License''' || width=40% | '''Notes''' &lt;br /&gt;
|-&lt;br /&gt;
|[http://www.cs.ubc.ca/~mbrown/autostitch/autostitch.html Autostitch] &lt;br /&gt;
| Windows; may also run on Linux using [http://www.winehq.org/ Wine]&lt;br /&gt;
| Shareware/demo &lt;br /&gt;
| Looks like it produces good results.  Registered version includes extra types of projection.  No source code.&lt;br /&gt;
|-&lt;br /&gt;
|[http://hugin.sourceforge.net/ Hugin] &lt;br /&gt;
| Linux; FreeBSD; MacOSX; Windows&lt;br /&gt;
| Free/open source (GNU GPL)&lt;br /&gt;
| Hugin is a nice GUI for Panorama Tools&lt;br /&gt;
|-&lt;br /&gt;
||[http://webuser.fh-furtwangen.de/~dersch/ Panorama Tools]&lt;br /&gt;
| Linux; FreeBSD; MacOSX; Windows&lt;br /&gt;
| Free/open source (GNU GPL)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Microsoft's [http://research.microsoft.com/en-us/um/redmond/groups/ivm/ICE/ Image Composite Editor]&lt;br /&gt;
| Windows&lt;br /&gt;
| Free (costless) &lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
*[http://stargazerslounge.com/primers-tutorials/122628-tutorial-custom-stellarium-landscapes.html Tutorial: Custom Stellarium landscapes], thread at the Stargazers Lounge forum&lt;br /&gt;
*[http://www.cloudynights.com/ubbthreads/showflat.php/Number/3759113/ Stellarium landscape image of my back porch], thread at the Cloudy Nights forum (discusses using a home-made fish-eye lens from a peep-hole to create a &amp;quot;fisheye&amp;quot; landscape)&lt;br /&gt;
&lt;br /&gt;
[[Category:Landscapes]]&lt;br /&gt;
[[Category:Customization]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Landscapes</id>
		<title>Landscapes</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Landscapes"/>
				<updated>2012-12-08T12:28:04Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: /* Europe */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==How to install landscapes==&lt;br /&gt;
After you have downloaded the .zip file for a landscape from this page, you need to install it in Stellarium.&lt;br /&gt;
&lt;br /&gt;
===Automatic===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;http://www.stellarium.org/wikiimg/stellarium-0-11-1/add-remove-landscapes-button.png&amp;lt;/div&amp;gt;&lt;br /&gt;
If you have Stellarium 0.10.6 or later version, you can use the &amp;quot;Add/remove landscapes&amp;quot; feature to install landscapes automatically:&lt;br /&gt;
*Open the &amp;quot;Sky and viewing options&amp;quot; window by clicking on the appropriate button in the left button bar (or press the F4 key).&lt;br /&gt;
*The &amp;quot;Add/remove landscapes&amp;quot; button is at the bottom of the &amp;quot;Landscape&amp;quot; tab.&lt;br /&gt;
*When you press it, the &amp;quot;Add/remove landscapes&amp;quot; window will appear. It allows you to install &amp;lt;tt&amp;gt;.zip&amp;lt;/tt&amp;gt; files containing landscapes. It also lists the user-installed landscapes and allows you to remove them.&lt;br /&gt;
&lt;br /&gt;
Note that while this makes installing landscapes easier, it may also cause you to overlook what else is included in the ZIP archive. Landscape packages created without this feature in mind may contain other files, such as alternative textures in different sizes.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;align:center&amp;quot;&amp;gt;http://www.stellarium.org/wikiimg/stellarium-0-11-1/add-remove-landscapes-window.png&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Manual===&lt;br /&gt;
If you are using an earlier version of Stellarium, you can follow this procedure to install a landscape package:&lt;br /&gt;
#Browse to your [[User Data Directory]], which varies according to your operating system. (eg. in Windows Vista/7 enter  %appdata%\stellarium in Explorer's location bar )&lt;br /&gt;
#Create a sub-directory called ''landscapes'' in your user directory (if it doesn't exist).&lt;br /&gt;
#Unzip the landscape .zip file in the ''landscapes'' directory (if it's done right, a sub-directory should be created for each landscape).&lt;br /&gt;
&lt;br /&gt;
NOTE: Older version of Stellarium (prior to v0.9.0) used a slightly different mechanism for doing landscapes. You can find a list of the old landscapes [[Landscapes pre 0.9.0|here]].&lt;br /&gt;
&lt;br /&gt;
Since version 0.10.5 Stellarium has problems in correctly loading old style landscapes (multi panel) if they are not 8 or 16 panel panoramas. Some old 4,7,9 qnd 10 side panoramas converted into 8 ides can be found here &lt;br /&gt;
*[http://sarcasmogerdes.dyndns.org/stellarium/uploads/wiruna-field.zip] (Wiruna field Barry's site)&lt;br /&gt;
*[http://sarcasmogerdes.dyndns.org/stellarium/uploads/egarden-new.zip] (Egarden 8 panel Barry's site)&lt;br /&gt;
*[http://sarcasmogerdes.dyndns.org/stellarium/uploads/neven-new.zip] (Como area Sydney Barry's site)&lt;br /&gt;
&lt;br /&gt;
==User contributed landscapes (by continent)==&lt;br /&gt;
We have landscapes for the seven continents (in the [http://en.wikipedia.org/wiki/Continent seven continent model]) - all, including from Antarctica !&lt;br /&gt;
===Interplanetary===&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/husband-hill.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_mars_husband_hill.zip|name=Husband Hill, Mars|author=Johan|license=Public Domain|compat=0.9.x|description=Johan transformed this Mars image from NASA into a spherical panorama that can be used with Stellarium.  Mars rover Spirit made this image during August 24 to 27, 2005. Image credit: NASA/JPL-Caltech/Cornell. Read more on [http://marsrovers.nasa.gov/gallery/panoramas/spirit/2005.html this webpage].}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/landscape_marsopportunity_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_mars_opportunity_rover.zip|name=Mars Opportunity Rover|author=Mike|license=Public Domain|compat=0.9.x|description=Mike sent posted this landscape in the forums.  Another nice Mars rover landscape.}}&lt;br /&gt;
 &lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_iss_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_iss.zip|name=International Space Station|author=Makc|license=GPL|compat=0.9.x|description=Landscape made using some screen shots and data from the wonderful [http://www.shatters.net/celestia/ Celestia].  Set the projection mode to stereographic, zoom out to a wide field of view and point down towards the ground to get the nice rounded &amp;quot;planet&amp;quot; effect.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_apollo_11_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_apollo_11.zip|name=Apollo 11 landing site|author=Mathew Myrup|compat=0.9.x|description=This landscape is made using NASA photographs taken by Buzz Aldrin. Look down and you can see Buzz's footprints :)}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_apollo_17_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_apollo_17.zip|name=Apollo 17 landing site|author=Mathew Myrup|compat=0.9.x|description=This landscape is made using NASA photographs taken by Gene Cernan.}}&lt;br /&gt;
&lt;br /&gt;
===Africa===&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/idehan.jpg|url=http://soyouzworld.free.fr/landscape/idehan.zip|name=Idehan Ubari, Libya|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|compat=0.10.x|description=This is a panoramic view of the desert of Idehan Ubari in Libya.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/leptis.jpg|url=http://soyouzworld.free.fr/landscape/leptis.zip|name=Leptis Magna, Libya|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|compat=0.10.x|description=This is a panoramic view of the theatre of the Roman city of Leptis Magna. This site is part of [http://whc.unesco.org/en/list/183 UNESCO World Heritage].}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/sahara.jpg|url=http://soyouzworld.free.fr/landscape/sahara.zip|name=Sahara, Libya|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|compat=0.10.x|description=This is a panoramic view from somewhere in the middle of the Sahara in Libya.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/waw-al-namus.jpg|url=http://soyouzworld.free.fr/landscape/waw-al-namus.zip|name=Volcano Waw al-Namus, Libya|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|compat=0.10.x|description=This is a panoramic view of Volcano Waw al-Namus in the Sahara.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.domani.ch/masoala/en/capmasoala_thumb.jpg|url=http://www.domani.ch/masoala/en/cap_masoala.zip|name=Cap Masoala, Madagascar|author=Matthias D. Frei|license=GPLv2+|compat=0.9.x|description=This panorama was photographed from the abandoned French lighthouse at the southernmost point of the Masoala peninsula in Madagascar. It provides a spectacular view over the Indian Ocean and the Masoala peninsula that is still mainly covered with rainforest. More information about this particular place can be found  [http://www.domani.ch/masoala/en/index.html here]}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_mbabane_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_mbabane.zip|name=Mbabane, Swaziland|author=Quinton Reissmann|compat=0.9.x|description=Mbabane is the capital of the little kingdom of Swaziland. Waterford/Kamhlaba is an international school on a mountain side which prides itself in cultural diversity. In SiSwati &amp;quot;kamhlaba&amp;quot; means &amp;quot;a world in miniature&amp;quot;. The actual view is from the sports field where we usually set up the telescope.}}&lt;br /&gt;
&lt;br /&gt;
===Asia===&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_everest_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_everest.zip|name=Mount Everest|author=Makc|license=&amp;amp;copy;|compat=0.9.x|description=Amazing parorama of the summit of Mount Everest, 8.85 km above sea level.  [http://www.everestviews.com/ Roddy Mackenzie], who climbed the mountain in 1989, captured the image.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_jantar_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_jantar.zip|name=Jantar Mantar|author=Barry Perlus &amp;amp; Stellarium team|license=CC BY-NC-SA 3.0|compat=0.9.x|description=Professor Barry Perlus of Cornell University allowed us to use his panoramic photography of one of the Jantar Mantars in India to create this landscape.  For more information on these fascinating scientific and architectural works see [http://jantarmantar.org/ jantarmantar.org].}}&lt;br /&gt;
&lt;br /&gt;
===Australasia===&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/beaumont-hills.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_beaumont_hills.zip|name=Beaumont Hills, Sydney, Australia|author=Barry Gerdes|license=GPLv2+|compat=0.9.x|description=Barry made an interesting multiple-image landscape from the rooftop of his house. You can find a detailed account of how this was done in the [http://porpoisehead.net/mysw/stellarium_user_guide_html-0.9.0-1/#SECTION001100000000000000000 Stellarium User Guide].}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/transit-hill.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_transit_hill.zip|name=Transit Hill, Lord Howe Island, Australia|author=Graeme Ewing|compat=0.9.x|description=Graeme Ewing Contributed this panorama of the astronomically significant and visually stunning Transit Hill site Northeast of Sydney, Australia. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_penneshaw_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_penneshaw.zip|name=Penneshaw, Kangaroo Island, Australia|author=Clive Nelson|compat=0.9.x|description=Penneshaw is a small township at the Northwest end of Kangaroo Island, off the coast of South Australia. In the north is the entrance to Gulf St Vincent and the Australian mainland. In the east is the Penneshaw township, To the west, on the horizon, is Kingscote, the main town on Kangaroo Island.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_largsbay_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_largsbay.zip|name=Largs Bay in South Australia|author=Martin Lewicki|license=GPL|compat=0.9.x|description=Panoramic view of Largs Bay in South Australia 8 panel old style landscape. Largs Pier Hotel facade in SSE and Largs Bay Sailing Club due east. Jetty extends to Gulf St Vincent to the west.}}&lt;br /&gt;
&lt;br /&gt;
===Europe===&lt;br /&gt;
{{Package|image=http://www.observatoire-naef.ch/assets/files/ependes-thumbnail.png|url=http://www.observatoire-naef.ch/assets/files/ependes.zip|name=Épendes Observatory, Fribourg, Switzerland|author=[http://www.stellarium.org/wiki/index.php/User:Mina Nicolas Martignoni]|license=CC BY-NC-SA 3.0|compat=0.10.x|description=The [http://www.observatoire-naef.ch/ Épendes Observatory] (44°44′01″N 7°08′25″E) is located near the city of Fribourg, Switzerland. The images for this landscape were taken in August 2006. The landscape comes in three resolutions (1024 / 2048 / 4096). File size is about 2.3 MB.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://michael.nadev.net/pub/wurania.png|url=http://michael.nadev.net/pub/wurania.zip|name=Urania Observatory, Vienna, Austria|author=Michael Prokosch|license=CC BY-ND 3.0|compat=0.9.x|description=The [http://www.astronomie-wien.at/astronomie_urania.html Urania Observatory] (48°12′41.88″N 16°23′1.53″E) is located right in the middle of the city of Vienna, capital of Austria. Built in 1910 under emporer Franz Joseph I. it's the countries oldest non-scientifical observatory still in use for people's education. This landscape was taken in August 2011. If you are not distracted by the stars, you can even see St. Stephan's cathedral, the Viennese Giant Wheel and the Danube Canal. File size is about 11.5 MB.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://perso.wanadoo.es/arias_llego/stellarium/laguardia/Thumbnail.png|url=http://perso.wanadoo.es/arias_llego/stellarium/laguardia/laguardia.zip|name=Port of La Guardia, Galicia, Spain|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=CC BY-NC-ND 3.0|compat=0.10.x|description=La Guardia is a fishing village in Galicia, in the NW. of Spain. This landscape was taken on the 19/07/2008. '''[http://perso.wanadoo.es/arias_llego/stellarium/laguardia/Port_of_La_Guardia.kmz KMZ file]'''. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/Thumbnail.png|url=http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/castrolaboreiro.zip|name=Castle of Castro Laboreiro 13th Century, Melgaço, Portugal|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=CC BY-NC-ND 3.0|compat=0.10.x|description=Castro Laboreiro is a village in Melgaço, in the NW. of Portugal. This landscape was taken on the 15/08/2010. '''[http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/Castle_of_Castro_Laboreiro.kmz Kmz file]'''. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.cestomano.com/stellarium/thumbnail.png|url=http://www.cestomano.com/stellarium/lascanadas.zip|name=Las Cañadas del Teide, Tenerife, Spain|author=[http://www.cestomano.com José Ángel Estévez]|license=|compat=0.10.x|description=This landscape of Las Cañadas was built in April 2008. It's located in the center of Tenerife island, Canary Islands. It can be viewed the Teide volcano -the highest mountain in Spain: 3.718 mts.-, El Llano de Ucanca and Los Roques de García with the characteristic rock &amp;quot;El Cinchado&amp;quot; which, with Teide Volcano, appeared in the old 1.000 ptas. bill. &lt;br /&gt;
&lt;br /&gt;
'''Note:''' If you have problems with the landscape (landscape may not appear because low memory on VGA chip), try to download and replace the PNG landscape with [http://www.cestomano.com/stellarium/peq/lascanadas.png this 50% scaled image]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.waldvogel.com/stellarium/landscape_jungfraujoch_tmb.png|url=http://www.waldvogel.com/stellarium/landscape_jungfraujoch.zip|name=Jungfraujoch High Altitude Research Station, Switzerland|author=Christian Waldvogel|license=|compat=0.10.x|description=Lying at 3580m in the Bernese Alps, the Jungfraujoch is often dubbed &amp;quot;Top of Europe&amp;quot;. It has been home to an astronomical observation station for more than 80 years. The spherical landscape was created from 20 images taken on June 29th, 2008, at 1015, from the lower terrace of the Sphinx Obervatory. The landscape comes in three resolutions (1024 / 2048 / 4096). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/San_Pietro.jpg|url=http://www.stellarium.org/files/landscapes/San_Pietro.zip|name=St Peter's Square (Vatican)|author=Gianfranco Mazzani|license=|compat=0.10.x|description=This is a complete high resolution panoramic view of the St Peter's Square, City of Vatican. &lt;br /&gt;
&lt;br /&gt;
Gianfranco Mazzani photographed this panorama in july 2004 by using a Nikon Coolpix 8700, and stitched &lt;br /&gt;
the original 10 pictures together into a spherical panorama using Hugin program. The panorama has been &lt;br /&gt;
than cutted into 8 alfa channel pictures and re-dimensioned the width to 2048 pixel and then dimensioned &lt;br /&gt;
the height to 32 cm by using Photoschop elements 2.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.waldvogel.com/stellarium/landscape_rodiano_tmb.png|url=http://www.waldvogel.com/stellarium/landscape_rodiano.zip|name=Frantoio Rodiano, Italy|author=Christian Waldvogel|license=|compat=0.10.x|description=The Frantoio Rodiano (Rodiano oil press) is situated on the foot of Mount Gargano in Puglia / Italy. Just a few kilometers uphill lies Monte Sant'Angelo, the famous stop for christian pilgrims on their way to Jerusalem. Stargazing has been kin to this region for milleniae: the oldest graves found in the Frantoio's vicinity date back to pre-etruscan times, and the famous Castel del Monte, an astronomical observation in itself, is not far either. The spherical landscape was created from 8 images taken on September 20th, 2010, at 1707, from the uppermost terrace of the Frantoio Rodiano. The landscape comes in three resolutions (1024 / 2048 / 4096). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://pano.jubila.de/stellarium/muchachos_thumb.jpg|url=http://pano.jubila.de/stellarium/muchachos.zip|name=Roque de los Muchachos, La Palma, Spain|author=Uwe Buecher|license=|compat=0.10.x|description=This high resolution landscape was built with hugin from 20 photos taken in October 2007. It is located on top of the highest mountain on La Palma, Canary Islands. You can see the Buildings of the Observatorio del Roque de los Muchachos, one of them is the Gran Telescopio Canarias (GTC) which is the greatest telescope in the world today (10.4m diameter). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_egarden_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_egarden.zip|name=English Garden, Munich, Germany|author=Rob Spearman, Johan Meuris|license=|compat=0.9.x|description=This high resolution landscape was taken in April 2007 by Rob. Johan helped with the post production.  The result is a very high quality landscape. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_egarden_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_egarden_old_style.zip|name=English Garden, Munich, Germany|author=Rob Spearman, Johan Meuris|license=|compat=0.9.x|description=The original English Garden landscape was re-constructed by Barry Gerdes as an old_style landscape.  This means that it can be used with video hardware which cannot cope with single very large texture files, and yet preserves the resolution of the landscape (by splitting the images into multiple files). Try this is the original English Garden landscapes doesn't load on your computer. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/voksenlia.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_voksenlia.zip|name=Voksenlia, Oslo, Norway|author=Steinar Midtskogen|license=|compat=0.10.x|description=Steinar Midtskogen sent [http://porpoisehead.net/mysw/downloads/voksenlia.png this huge (17 MiB!) spherical landscape image] of Voksenlia, Oslo, Norway (59°58'14N, 10°38'57E, alt=348m). (Currently not working with version 0.9.0). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/observatory-hill-Barry.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_edinburgh.zip|name=Calton Hill, Edinburgh, Scotland|author=Friedrich Noelle, Barry Gerdes|license=|compat=0.9.x|description=Friedrich Noelle took a nice panorama of Observatory Hill, Edinburgh which Barry converted into a Stellarium landscape. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/sight_thumb.jpg|url=http://www.geomancygroup.org/stella/sighthill.zip|name=Sighthill stone circle, Glasgow, Scotland|author=[http://www.geomancygroup.org Grahame Gardner]|license=|compat=0.9.x|description=Sighthill stone circle is a modern stone ring constructed in 1979 by amateur astronomer and SF writer Duncan Lunan. Located next to the M8 motorway in Glasgow city centre, yet with surprisingly good views, the circle has alignments to the solsticial solar rises and settings and the lunar standstills. Alignments to the rising of Rigel are included for 1979 AD and 1800 BC. (2MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/beech_thumb.jpg|url=http://www.geomancygroup.org/stella/beechhill.zip|name=Beech Hill stone circle, nr. Nutley, E. Sussex, England|author=[http://www.geomancygroup.org Grahame Gardner]|license=|compat=0.9.x|description=Beech Hill is a modern stone ring constructed in 2000 by Ivan McBeth and Richard Creightmore of The Geomancy Group [http://www.geomancygroup.org/ www.geomancygroup.org]. Located in the Ashdown Forest, the circle's main alignment is to the Pole Star, denoted by the angled outlier. (2.2MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/calave_tb.jpg|url=http://www.geomancygroup.org/stella/calanaisave.zip|name=Calanais I (Callanish) Avenue, Lewis, Western Isles, Scotland|author=[http://www.geomancygroup.org Grahame Gardner]|license=|compat=0.9.x|description=Callanish is arguably the finest megalithic monument in the British Isles, and is just the largest site in a vast complex of interconnected monuments designed to observe the southern major standstills of the moon. From this position at the end of the avenue, the moon is seen to set behind the rocky outcrop of Cnoc-an-Tursa, only to 're-gleam' in the centre of the main circle a short time afterwards. (4MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/machrie_tb.jpg|url=http://www.geomancygroup.org/stella/machrie5.zip|name=Machrie Moor 5, Isle of Arran, Scotland|author=[http://www.geomancygroup.org Grahame Gardner]|license=|compat=0.9.x|description=This delightful little double-concentric stone circle is the first site you come to when visiting the Machrie Moor complex of megalithic sites on Arran. Although not the most spectactular site in the group, it is one of the most complete and has good views. (7.3MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/mitchthumbnail.jpg|url=http://www.geomancygroup.org/stella/mitchell2.zip|name=Mitchell's Fold stone circle, Shropshire, England|author=[http://www.vallecrucisgrail.co.uk/ Ian Pegler]|license=|compat=0.9.x|description=This wonderful ancient stone circle stands on a plateau amid the rolling Shropshire hills and is loved by walkers, dowsers and Wiccans alike. April 2010 - new version uploaded, featuring improved centre camera position based on Alexander Thom's geometry and improved alignments. (1.8MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/aveburyn_thumb.jpg|url=http://www.geomancygroup.org/stella/aveburynorth.zip|name=Avebury - North circle, Wiltshire, England|author=[http://www.vallecrucisgrail.co.uk/ Ian Pegler]|license=|compat=0.9.x|description=The North circle of the largest megalithic complex in Europe. In the background you can just make out the Red Lion pub. (1MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/vallecrucis_thumb.jpg|url=http://www.geomancygroup.org/stella/vallecrucis.zip|name=Valle Crucis Abbey, Llangollen, North Wales|author=[http://www.vallecrucisgrail.co.uk/ Ian Pegler]|license=|compat=0.9.x|description=This ruined Cistercian abbey dates to 1200 but may be the site of a much earlier Dark Age settlement with a very early Christian church. (2.5MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/ponta-da-piedade.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_lagos.zip|name=Ponta da Piedade, Algarve, Lagos, Portugal|author=Johan|license=|compat=0.9.x|description=Johan photographed this panorama in June 2006 and stitched it together into a spherical panorama that can be used with Stellarium.  You see sandstone cliffs on the Atlantic coast of southern Portugal, a lighthouse, and a natural bridge. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/landscape_gurnigel_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_gurnigel.zip|name=Gurnigel, Switzerland|author=Martin Mutti|license=|compat=0.9.x|description=This is the site of the Bern Astronomical Society's observing site. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/tishinka-ardashev.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_tishinka.zip|name=Tishinka, Russia|author=Dmitri Ardashev|license=|compat=0.9.x|description=This is a small village between Moscow's and Kaluga's regions, in 130 km south-west of Moscow (55°18'32.46N, 36°26'42.06E, alt=195). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_t60pic_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_t60pic.zip|name=T60 dome, Pic du Midi Observatory, France|author=Sylvain Rondi|license=|compat=0.9.x|description=Sylvain photographed this panorama in February 2007 and stitched it together into a spherical panorama that can be used with Stellarium. This is the panoramic view from the amateur 60cm telescope dome from [http://astrosurf.com/t60/ T60 Association], installed at Pic du Midi Observatory. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_t1mpic_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_t1mpic.zip|name=T1M terrasse, Pic du Midi Observatory, France|author=Sylvain Rondi|license=|compat=0.9.x|description=Sylvain photographed this panorama in February 2007 and stitched it together into a spherical panorama that can be used with Stellarium. This is the panoramic view from the terrasse of the professional 106cm telescope at Pic du Midi Observatory (France). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_sheffieldrivelin_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_sheffieldrivelin.zip|name=River Rivelin, Sheffield, UK|author=Jan Wedekind|license=CC SA-2.0|compat=0.9.x|description=This is a 270° fisheye panorama created from 40 photos using Hugin. It shows the River Rivelin in Sheffield in the middle of April 2007. The fringes (twigs and tree tops) where dimmed out using The Gimp. The overexposed parts of the horizon have been removed. Copyright (C) 2007, [[User:Wedesoft|Jan Wedekind]], [http://creativecommons.org/licenses/by-sa/2.0/ Creative Commons Attribution ShareAlike License 2.0] }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_ares_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_ares.zip|name=Ares, Galicia, Spain|author=[http://www.stellarium.org/wiki/index.php/User:rcasl Rubén Castiñeiras Lorenzo]|license=|compat=0.9.x|description=Ares is a small fishing village in Galicia, in the NW of Spain, close to the city of Ferrol. The 360 degree image was taken at the noon of August 6th, 2007, just in front of the &amp;quot;Paseo Rosalía de Castro&amp;quot;. It has been made with 17 photos, stitched with Hugin 0.7 beta 4 and retouched with the Gimp 2.2.17. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_ovindoli_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_ovindoli.zip|name=Ovindoli, Italy|author=Pierluigi Panunzi|license=|compat=0.9.x|description=Ovindoli is a famous ski resort in central Italy. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/rustrel.jpg|url=http://soyouzworld.free.fr/landscape/rustrel.zip|name=Rustrel, France|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Colorado de Rustrel in &amp;quot;Les Sentiers de l'Ocre et du Fer&amp;quot;, Provence, France. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://files.myopera.com/aid85/files/host/Stintino.jpg|url=http://files.myopera.com/aid85/files/host/stintino.zip|name=Stintino, Italy|author=[http://my.opera.com/aid85 aid85]|license=|compat=0.9.x|description=High resolution 360° landscape taken at &amp;quot;LaPelosa&amp;quot; beach in Stintino (SS) Sardinia \ Italy - Europe \ Mediterranean Sea. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/vatican.jpg|url=http://soyouzworld.free.fr/landscape/vatican.zip|name=St Peter's Square, Vatican|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the St Peter's Square. City of Vatican. Some parts of the buildings are missing, not enough pictures... This site is part of [http://whc.unesco.org/en/list/286 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://files.myopera.com/aid85/files/host/Larvotto.jpg|url=http://files.myopera.com/aid85/files/host/munegu.zip|name=Munegu, MC|author=[http://my.opera.com/aid85 aid85]|license=|compat=0.9.x|description=High resolution 360° landscape taken at Larvotto beach in [http://en.wikipedia.org/wiki/Monaco Munegu \ Monaco - MC] (MonteCarlo) - Europe \ Mediterraneum Sea - Ligurian Sea. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/Bahia_de_Cadiz.jpg|url=http://www.stellarium.org/files/landscapes/Bahia_de_Cadiz.zip|name=Bahia de Cádiz, Spain|author=José Codejón|license=|compat=0.10.x|description=A new bridge is being built across de bay. The 360° panorama image was taken at noon of September 10th, 2012, from the pier of the small marina just closed to the Cadiz head of the bridge. &lt;br /&gt;
&lt;br /&gt;
The final picture is the result of stitching 11 frames, taken out of a 63 seconds full HD video, using PhotoStitch and Gimp 2.6.8. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.ticfisquim.org/astro/stellarium/thumbnails.jpg|url=http://www.ticfisquim.org/astro/stellarium/cocentaina.zip|name=Cocentaina, Spain|author=[http://www.ticfisquim.org Angel Juan Martínez]|license=|compat=0.9.x|description=This is a panoramic view from the roof of the Secondary School of Cocentaina, a little town of the Pais Valencià (Spain), in the mountains that are between Valencia and Alicante, where I teach Astronomy with the help of Stellarium. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.xs4all.nl/~adonet/stellarium/tulipfield.jpg|url=http://www.xs4all.nl/~adonet/stellarium/tulipfield.zip|name=Amstelveen, The Netherlands|author=[http://www.xs4all.nl/~adonet/stellarium/stellarium.html Jeroen Adolfse]|license=|compat=0.9.x|description=This landscape shows the tulipfields in spring (may 2008) in Schagerbrug, North Holland. It's an old_style landscape. (file is 4.5 Mb) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.didgeweb.com/stellarium/oudmeer_sample.png|url=http://www.didgeweb.com/stellarium/son_oudmeer.zip|name=Son &amp;amp;amp; Breugel, The Netherlands|author=[http://www.didgeweb.com/ Roland Mathijssen]|license=|compat=0.9.x|description=This landscape shows the Oude Meer (Old Lake) in the Sonse Heide in Son (close to Eindhoven). (file is 5.4 MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.obs-sirene.com/divers/stellarium/sirene.png|url=http://www.obs-sirene.com/divers/stellarium/sirene.zip|name=Sirene Observatory, Lagarde d'Apt (84), France|author=[http://cyprien.pouzenc.free.fr Cyprien Pouzenc]|license=|compat=0.9.x|description=Panoramic view of installations. Previously the site was used as a nuclear lauching pad. Now days, [http://www.obs-sirene.com Sirene] accepts everybody for astronomical observations. (File is 11 Mb) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.nett.is/~sveinki/stellarium/vonarskard-tn.png|url=http://www.nett.is/~sveinki/stellarium/vonarskard.zip|name=Vonarskar&amp;amp;eth;, Passage of Hope, Iceland|author=[http://www.nett.is/~sveinki/stellarium/ Sveinn &amp;amp;iacute; Felli]|license=|compat=0.9.x|description=This is the geographical center of Iceland, a barren pass between glaciers. Being sheltered from southern vinds by the huge Vatnajökull glacier, a great cold mass which then eliminates most humididy from the air, makes the place unusually good for stargazing. Old-style landscape, resolution is a bit low. (File is 1.1 Mb) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.brontovox.co.uk/Downloads/woodhenge_winter_solstice_sunset_ts.png|url=http://www.brontovox.co.uk/Downloads/woodhenge.zip|name=Woodhenge near Stonehenge|author=[http://www.brontovox.co.uk Hugo Jenks]|license=|compat=0.9.x|description=Woodhenge near Stonehenge was constructed around 2200 BC. It comprised numerous wooden posts set into the chalky ground. These posts of course decayed, and their positions today are marked with concrete cylinders. &lt;br /&gt;
&lt;br /&gt;
The posts are arranged, in plan view, as a series of concentric egg shapes. The axis of the egg shapes aligns approximately with summer solstice sunrise. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.brontovox.co.uk/Downloads/stonehenge_screenshot_st.jpg|url=http://www.brontovox.co.uk/Downloads/stonehenge.zip|name=Stonehenge|author=[http://www.brontovox.co.uk Hugo Jenks]|license=|compat=0.9.x|description=Was it an observatory? Yes indeed it was!  The alignment of the monument with the summer solstice sunrise has been well known for many years. The alignment with the winter solstice sunset may have been more significant. For the first time, many additional alignments are published, and are detailed here:  [http://www.brontovox.co.uk/ www.brontovox.co.uk] These alignments demonstrate that Stonehenge was primarily a functional scientific instrument, used for measuring angles. The angles of interest were the rising and setting bearings of the sun, moon, and stars. It was therefore possible to map the entire visible sky. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/rila.jpg|url=http://soyouzworld.free.fr/landscape/rila.zip|name=Rila Monastery, Bulgaria|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Rila Monastery in Bulgaria. This building is quite high so the sky area is not really large. This site is part of [http://whc.unesco.org/en/list/216 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://bg360.net/stellarium/silistar.jpg|url=http://bg360.net/stellarium/silistar.zip|name=Silistar, Bulgaria|author=[http://bg360.net BG360]|license=|compat=0.9.x|description=Panoramic view of the Silistar Beach in Bulgaria. See this panorama here [http://pano.bg360.net/silistar/index_en.php Flash pano]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://bg360.net/stellarium/alexandernevsky.jpg|url=http://bg360.net/stellarium/alexandernevsky.zip|name=St. Alexander Nevsky Cathedral, Sofia, Bulgaria|author=[http://bg360.net BG360]|license=|compat=0.9.x|description=Panoramic view of the Saint Alexander Nevsky Cathedral in Bulgaria. See this panorama here [http://pano.bg360.net/sofia/alexander-nevsky_en.php Flash pano]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://bg360.net/stellarium/rousse.jpg|url=http://bg360.net/stellarium/rousse.zip|name=Statue of Freedom, Rousse, Bulgaria|author=[http://bg360.net BG360]|license=|compat=0.9.x|description=Panoramic view from the center of Rousse in Bulgaria. See this panorama here [http://pano.bg360.net/ruse/pametnik-svobodata_en.php Flash pano]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/thumbnail-dm.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/dm.zip|name=Central Munich|author=Markus Dähne|license=|compat=0.9.x|description=This landscape shows the view from the Eastern observatory of the [http://www.beobachtergruppe.com Deutsches Museum] in Munich, Germany.  During public observing sessions, Stellarium is used to help explain the sky :-) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_leist_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_leist.zip|name=Leist, Switzerland|author=Bernd Lang|license=|compat=0.9.x|description=This landscape was developed from a panoramic picture of the Leist in Switzerland (2222m).  The picture was taken during a [http://www.panoramio.com/user/1437658 hiking tour] from Tanenboden to the top of the Leist. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_stonehenge_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_stonehenge.zip|name=Stonehenge, England|author=[http://www.freetadel.blogspot.com/ Fernando]|license=|compat=0.9.x|description=This landscape depicts Stonehenge - the famous prehistoric monument in Wiltshire, Southern England. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/avignon.jpg|url=http://soyouzworld.free.fr/landscape/avignon.zip|name=Place du Palais des Papes, Avignon|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Place du Palais des Papes in Avignon.  France. This site is part of [http://whc.unesco.org/en/list/228 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/avignonb.jpg|url=http://soyouzworld.free.fr/landscape/avignonb.zip|name=Le Pont d'Avignon, Avignon|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Pont d'Avignon (aka Bridge Saint-Bénezet) in Avignon.  France. This site is part of [http://whc.unesco.org/en/list/228 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/orange.jpg|url=http://soyouzworld.free.fr/landscape/orange.zip|name=Roman Theatre of Orange|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Roman Theatre of Orange- France. This site is part of [http://whc.unesco.org/en/list/163 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_cambridge_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_cambridge.zip|name=Centre for Mathematical Sciences, Cambridge, UK|author=[http://www.srcf.ucam.org/~mh519/ Matt Hickford]|license=|compat=0.9.x|description=Panorama from the grassy roof of the Centre for Mathematical Sciences, Cambridge University, UK in March. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_grantchester_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/grantchester.zip|name=Grantchester Meadows, Cambridgeshire, UK|author=[http://www.srcf.ucam.org/~mh519/ Matt Hickford]|license=|compat=0.9.x|description=Panorama from Grantchester Meadows, Cambridgeshire, UK in March. Flat horizon. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_areeiro_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_areeiro.zip|name=Pico do Areeiro|author=Filipe Gomes|license=|compat=0.9.x|description=This is a panoramic view of the [http://pt.wikipedia.org/wiki/Pico_do_Arieiro Pico do Areeiro], the second highest point of the island.  Madeira Island - Portugal. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_caniga_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_caniga.zip|name=Caniga Country|author=[http://www.flickr.com/photos/25710744@N03/2672852380/ Andrea Pittalis]|license=|compat=0.9.x|description=This landscape was taken from the Caniga Country, near Sassari in Sardinia, Italy. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.under-a-dark-sky.com/stellarium/cdn-landscape.jpg|url=http://www.under-a-dark-sky.com/stellarium/cdn.zip|name=Cuevas del Negro, Andalucia|author=Peter Lynch|license=|compat=0.9.x|description=A nearly flat rural landscape in southern Spain. The site has very dark skies and a view down to about 3&amp;amp;deg; to the south. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.astrosurf.com/aaaov/landscape/landscape_aaaov_thumb.jpg|url=http://www.astrosurf.com/aaaov/landscape/aaaov.zip|name=Astronomes Amateurs Aixois Observatoire Vauvenargues (AAAOV) - France|author=[http://www.astrosurf.com/aaaov AAAOV]|license=|compat=0.9.x|description=Vauvenargues Observatory located near Aix-en-Provence, France. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.astrosurf.com/aaaov/landscape/landscape_baie_saint_michel_thumb.jpg|url=http://www.astrosurf.com/aaaov/landscape/baie_saint_michel.zip|name=Astronomes Amateurs Aixois Observatoire Vauvenargues (AAAOV) - France|author=[http://www.astrosurf.com/aaaov AAAOV]|license=|compat=0.9.x|description=Saint Michel Bay - Serre Ponçon lake, Alpes - France. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_la_guardia_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_la_guardia.zip|name=La Guardia|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=|compat=0.9.x|description=La Guardia is a fishing village in Galicia, in the NW. of Spain. This landscape was taken on the 19/07/2008 at 12:38 p.m. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_uvalno_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_uvalno.zip|name=Uvalno, Czech Republic|author=|license=|compat=0.9.x|description=A view from a garden in the village of Uvalno, Czech Republic. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://astro.sentvid.org/stellarium/sentvid-thumbnail.png|url=http://astro.sentvid.org/stellarium/sentvid.zip|name=Šentvid, Ljubljana, Slovenia|author=|license=|compat=0.9.x|description=View from the roof of the observatory of Gymnasium Šentvid, Ljubljana, Slovenia. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://astronomia.zagan.pl/pliki/stellarium-moczyn.png|url=http://astronomia.zagan.pl/pliki/moczyn.zip|name=Poland,Zagan - sity Johannes Kepler|author=[http://astronomia.zagan.pl/articles.php?article_id=21 Jacek Patka]|license=|compat=0.9.x|description=View of the old quarter. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://perso.wanadoo.es/arias_llego/stellarium/laguardia/Thumbnail.png|url=http://perso.wanadoo.es/arias_llego/stellarium/laguardia/laguardia.zip|name=Port of La Guardia, Galicia, Spain|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=|compat=0.9.x|description=La Guardia is a fishing village in Galicia, in the NW. of Spain. This landscape was taken on the 19/07/2008.&lt;br /&gt;
&lt;br /&gt;
[http://perso.wanadoo.es/arias_llego/stellarium/laguardia/Port_of_La_Guardia.kmz Kmz file] }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/Thumbnail.png|url=http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/castrolaboreiro.zip|name=Castle of Castro Laboreiro 13th Century, Melgaço, Portugal|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=|compat=0.9.x|description=Castro Laboreiro is a village in Melgaço, in the NW. of Portugal. This landscape was taken on the 15/08/2010.&lt;br /&gt;
&lt;br /&gt;
Castle of Castro Laboreiro 13th Century, Melgaço, Portugal [http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/Castle_of_Castro_Laboreiro.kmz Kmz file] }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.cestomano.com/stellarium/thumbnail.png|url=http://www.cestomano.com/stellarium/lascanadas.zip|name=Las Cañadas del Teide, Tenerife, Spain|author=[http://www.cestomano.com José Ángel Estévez]|license=|compat=0.9.x|description=This landscape of Las Cañadas was built in April 2008. It's located in the center of Tenerife island, Canary Islands. It can be viewed the Teide volcano -the highest mountain in Spain: 3.718 mts.-, El Llano de Ucanca and Los Roques de García with the characteristic rock &amp;quot;El Cinchado&amp;quot; which, with Teide Volcano, appeared in the old 1.000 ptas. bill. &lt;br /&gt;
&lt;br /&gt;
'''Note:''' If you have problems with the landscape (landscape may not appear because low memory on VGA chip), try to download and replace the PNG landscape with [http://www.cestomano.com/stellarium/peq/lascanadas.png this 50% scaled image]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.waldvogel.com/stellarium/landscape_rodiano_tmb.png|url=http://www.waldvogel.com/stellarium/landscape_rodiano.zip|name=Frantoio Rodiano, Italy|author=Christian Waldvogel|license=|compat=0.9.x|description=The Frantoio Rodiano (Rodiano oil press) is situated on the foot of Mount Gargano in Puglia / Italy. Just a few kilometers uphill lies Monte Sant'Angelo, the famous stop for christian pilgrims on their way to Jerusalem. Stargazing has been kin to this region for milleniae: the oldest graves found in the Frantoio's vicinity date back to pre-etruscan times, and the famous Castel del Monte, an astronomical observation in itself, is not far either. The spherical landscape was created from 8 images taken on September 20th, 2010, at 1707, from the uppermost terrace of the Frantoio Rodiano. The landscape comes in three resolutions (1024 / 2048 / 4096). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/luene.jpg|url=http://www.ausgerechnet-jetzt.de/lueneburg.zip|name=Top of Water Tower of Lueneburg, Germany|author=Uwe Prolingheuer|license=|compat=0.9.x|description=This is a panoramic view from the top of old Water Tower 56m above ground, constructed 1906/07, in Lueneburg, a town with many retained medieval houses. Northern Germany. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/gas-gao.jpg|url=http://www.stellarium.org/files/landscapes/gas-gao.zip|name=GAS GAO, Russia|author=[http://www.kepler-observatorium.ru/ Andrey Kuznetsov]|license=|compat=0.10.x|description=Russia, Caucasus. The astronomical science station on the mountain Shadjatmaz. This is the view from amateur's observatory (by Andrey Kuznetsov, Sergey Kiselev). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/caucasus.jpg|url=http://www.stellarium.org/files/landscapes/caucasus.zip|name=Caucasus, Russia|author=[http://www.kepler-observatorium.ru/ Andrey Kuznetsov]|license=|compat=0.10.x|description=North Caucasus, Elbrus. }}&lt;br /&gt;
&lt;br /&gt;
===North America===&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/saltlakecity.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_salt_lake_city.zip|name=Salt Lake City Panorama|author=Hiram Bertoch|license=|compat=0.9.x|description=Hiram made this panorama for the KidsKnowIt Network's outreach program. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_sanjose_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_sanjose.zip|name=San Jose, California, USA|author=BrendaEM|license=|compat=0.9.x|description=This panorama was made using Nasa's WorldWind. Screenshots were taken at 45 degree increments. The screenshots were layered and stitched together, and then offset until the the Northern mountains were aligned. A landscape such as this could be made of any location in the world. There is a plug-in for WorldWind called &amp;quot;BigScreenshot,&amp;quot; that may make the process easier, but not automate it. A plug-in could be written to do this entire process automatically. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://trampleasure.net/science/solar-calendar/thumbnail.jpg|url=http://trampleasure.net/science/solar-calendar/landscape.ini|name=Berkeley, California, USA|author=Lee Trampleasure Amosslee|license=|compat=0.9.x|description=This panorama is centered at the [http://solarcalendar.org/ Cesar Chavez Memorial Solar Calendar] at the Berkeley Marina. The solar calendar has large stones that line up with the sunrises and sunsets at the equinoxes and solstices. [http://trampleasure.net/science/solar-calendar/chavez-solar-calendar-large.png 4096X2048 PNG photo, 8.3MB], or [http://trampleasure.net/science/solar-calendar/chavez-solar-calendar.png 2048x1024 PNG photo 2.1MB]. In the larger photo, I painted the Golden Gate bridge to make it stand out a bit more. Credits and location can be found in the [http://trampleasure.net/science/solar-calendar/landscape.ini landscapes.ini file]. Please include credits if you use/distribute this version.  }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.jrctech.net/landscapes/wiki-photos/tn_School-Image2.png|url=http://www.jrctech.net/landscapes/chesterton_school.zip|name=Chesterton Elementary School - San Diego, California, USA|author=[http://www.jrctech.net John Chester]|license=|compat=0.10.x|description=This landscape was taken to help encourage students to learn about science and astronomy using Stellarium.  The panorama was taken at the playground area of Chesterton Elementary School on October 23, 2011.  The image was constructed using the Multiple Image Method using 8 overlapping images to provide a high level of detail.  The original composite panorama image was 22442 (width) x 2418 (height) pixels .  Composite photo reduced to 5 equally sized photos of 2048 by 1024 pixels.  Many trees created complex horizon background but left details, such as tether-ball poles, in place during transparency development to keep landscape realistic.  The lines of the playground provide an interesting perspective with Stellarium. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/eltajin.jpg|url=http://soyouzworld.free.fr/landscape/eltajin.zip|name=El Tajin, Mexico|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the prehispanic city of El Tajin. Theses ruins are part of [http://whc.unesco.org/en/list/631 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/mexico.jpg|url=http://soyouzworld.free.fr/landscape/mexico.zip|name=Mexico Ciudad, Mexico|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Zocalo (Plaza de la Constitución) of Mexico Ciudad. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/uxmal.jpg|url=http://soyouzworld.free.fr/landscape/uxmal.zip|name=Uxmal, Yucatan, Mexico|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Cuadrangulo de las Monjas in Pre-Hispanic Town of Uxmal. This site is part of [http://whc.unesco.org/en/list/791 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://home.arcor.de/mdoege/pano/boulder_thumb.png|url=http://home.arcor.de/mdoege/pano/boulder.zip|name=University of Colorado at Boulder, Boulder, Colorado, USA|author=Martin C. Doege|license=|compat=0.9.x|description=View from Farrand Field at the [http://en.wikipedia.org/wiki/University_of_Colorado_at_Boulder University], with the [http://en.wikipedia.org/wiki/Flatirons Flatirons] to the southwest. (File is 2.9 Mb) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_jasperpyramidisland_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_jasperpyramidisland.zip|name=Jasper National Park, Alberta, Canada|author=[http://www.jasperdarksky.org/stellarium Rogier Gruys]|license=|compat=0.9.x|description=Pyramid Island dark sky observation site in [http://pc.gc.ca/jasper Jasper National Park], Alberta, Canada -  world's largest [http://www.jasperdarksky.org/ Dark Sky Preserve]. This site is only 15 min from the town of Jasper, yet nearly perfectly dark. The panorama was taken just before sunset in October 2011. }}&lt;br /&gt;
&lt;br /&gt;
===South America===&lt;br /&gt;
{{Package|image=http://www.essl.de/wp/wp-content/uploads/2008/03/paranalscreenshot.png|url=http://www.essl.de/wp/wp-content/uploads/2008/03/paranal.zip|name=ESO's Very Large Telescope in the Atacama Desert, Chile|author=[http://www.essl.de Dirk Essl]|license=|compat=0.9.x|description=The Very Large Telescope Project (VLT) is a system of four separate optical telescopes (the Antu telescope, the Kueyen telescope, the Melipal telescope, and the Yepun telescope) organized in an array formation. Each telescope has an 8.2 m aperture. The array is complemented by three movable Auxiliary Telescopes (ATs) of 1.8 m aperture. The project is organized by the [http://www.eso.org/ ESO]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/cachi.jpg|url=http://soyouzworld.free.fr/landscape/cachi.zip|name=Cachi, Argentina|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Parque National Los Cardones near the village of Cachi. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/lagunaverde.jpg|url=http://soyouzworld.free.fr/landscape/lagunaverde.zip|name=Laguna Verde, Bolivia|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Laguna Verde and Laguna Blanca under the Juriques (5704m) and Licancabur (5920m) Volcanos. These lakes are located in Reserva Nacional Eduardo Avaroa, Bolivia. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://documents.epfl.ch/users/m/mt/mtewes/www/permanent/euler_la_silla_thumb.png|url=http://documents.epfl.ch/users/m/mt/mtewes/www/permanent/euler_la_silla.zip|name=Swiss Euler Telescope, ESO La Silla Observatory, Chile|author=[http://obswww.unige.ch/~tewes/ Malte Tewes]|license=|compat=0.9.x|description=Euler is the nearby telescope that can be seen in the west. It is operated by the University of Geneva, and its main duty is the quest of extrasolar planets. The New Technology Telescope (NTT) shows up just behind Euler's control room, Tarot is in due south, and finally the venerable ESO 3.6 meter telescope sits on its hill in the southeast. The panorama was taken on September 3, 2010, at about 7:25 local time, a wonderful sunrise after a snowy night. [http://obswww.unige.ch/~tewes/stellarium_landscapes/ Screenshots] }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/images/landscape_braziland_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_braziland.zip|name=Divinópolis, Brazilia|author=[http://alquimiapopular.wordpress.com/psicologo/ Wanderson Nunes Ferreira]|license=|compat=0.9.x|description=[http://alquimiapopular.wordpress.com/psicologo/ Wanderson Nunes Ferreira] photographed this panorama in the Brazilian city of Divinópolis in March 2011 and stitched it together into a spherical panorama that can be used with Stellarium. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://resoundcity.com/resources/stellarium/shined_dream_tb.jpg|url=http://resoundcity.com/resources/stellarium/shined_dream.zip|name=Shined Dream, Argentina|author=Adrian Felipe Pera|license=|compat=0.9.x|description=[http://www.flickr.com/photos/afpera/7529438152 Shined Dream] by Adrian Felipe Pera, a [http://www.resoundcity.com/ ResoundCity] member. Pergamino, Buenos Aires, Argentina. A small town, but still flashed enough to see nearly the stars, or hear the song of the spheres. [http://www.flickr.com/photos/afpera/7529438152 Flickr image] [http://adn-pera.deviantart.com/#/d56ldh2 deviantart wallpaper]. }}&lt;br /&gt;
&lt;br /&gt;
===Polar regions===&lt;br /&gt;
{{Package|image=http://www.obs-sirene.com/divers/stellarium/concordia.png|url=http://www.obs-sirene.com/divers/stellarium/concordia.zip|name=French-Italian Concordia Station|author=[http://cyprien.pouzenc.free.fr Cyprien Pouzenc]|license=GPLv2+|compat=0.10.x|description=Panoramic view of the station installed at Dome C, Antarctica.}}&lt;br /&gt;
&lt;br /&gt;
===Special===&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/simple.jpg|url=http://www.stellarium.org/files/landscapes/simple.zip|name=Simple|author=[http://astro.uni-altai.ru/~aw/ Alexander Wolf]|license=Public Domain|compat=0.10.x|description=Simple semi-transparent texture for Stellarium.}}&lt;br /&gt;
&lt;br /&gt;
==Contributions==&lt;br /&gt;
Please feel free to contribute your own custom landscapes here.   Make thumbnails 200x114 pixels to fit with the rest of the page.  Please include a location section in your landscape.ini file with the longitude, latitude, altitude and planet for the location of the landscape (see one of the pre-existing landscapes for an example).&lt;br /&gt;
&lt;br /&gt;
To find out more about how to create a landscape, see the [http://www.porpoisehead.net/mysw/stellarium_user_guide_html-0.9.1-1/#SECTION00670000000000000000 Stellarium User Guide], and examine existing landscapes.  If you are having problems, posting to the forums is a good way to get some advice.&lt;br /&gt;
&lt;br /&gt;
===Important note on image dimensions===&lt;br /&gt;
'''IMPORTANT: Make sure all textures have dimensions which are integer powers of 2, i.e. 256, 512, 1024, 2048, 4096, 8192, 16384, ...   e.g. 4096 by 1024, 2048 by 2048 and so on.'''&lt;br /&gt;
&lt;br /&gt;
This is a limitation of OpenGL.  Some video hardware will work OK with images with different image dimensions, but many will not display properly, suffer vastly reduced frame rates, and even crash the computer.  &lt;br /&gt;
&lt;br /&gt;
'''Please make sure all contributed landscapes conform to these requirements, or your link may be removed.'''&lt;br /&gt;
&lt;br /&gt;
Be aware that many people's video hardware cannot handle very large textures.  This is hardware and driver dependent.  A typical maximum image size is 2048x2048 or 4096x4096.&lt;br /&gt;
&lt;br /&gt;
===Package contents===&lt;br /&gt;
Please package your landscape in a .zip file with all files inside a directory in the .zip file.  This should be unique to your landscape, and it would be nice it it was all lower-case with no spaces.  &lt;br /&gt;
&lt;br /&gt;
You should also include a readme.txt file which describes the landscape and specifies any usage restrictions or licensing terms for the images used in the landscape.  &lt;br /&gt;
&lt;br /&gt;
===Licensing===&lt;br /&gt;
Before you distribute images as part of a Stellarium landscape, please ensure you are legally entitled to - you must be the copyright holder for the images, or be able to distribute them for use with Stellarium under the terms of some agreement with the copyright holder (e.g. Creative Commons licensed images found on the web).&lt;br /&gt;
&lt;br /&gt;
It is important to explicitly state what use may be made of images for your landscape.  This should be done in the readme.txt file inside the .zip file.&lt;br /&gt;
&lt;br /&gt;
We recommend an open source license compatible with Stellarium itself (i.e. the GNU GPL), or one of the Creative Commons licenses.  &lt;br /&gt;
&lt;br /&gt;
===Example package contents===&lt;br /&gt;
&lt;br /&gt;
From the Mars Husband Hill landscape:&lt;br /&gt;
&lt;br /&gt;
 Archive:  landscape_mars_husband_hill.zip&lt;br /&gt;
   Length     Date   Time    Name&lt;br /&gt;
  --------    ----   ----    ----&lt;br /&gt;
   1815308  02-05-07 21:02   mars_husband_hill/husband_hill.png&lt;br /&gt;
       211  05-28-07 19:44   mars_husband_hill/landscape.ini&lt;br /&gt;
      1096  06-04-07 15:21   mars_husband_hill/readme.txt&lt;br /&gt;
  --------                   -------&lt;br /&gt;
   1816615                   3 files&lt;br /&gt;
&lt;br /&gt;
The readme.txt file should look something like this:&lt;br /&gt;
&lt;br /&gt;
 Mars Husband Hill Landscape for Stellarium&lt;br /&gt;
 ==========================================&lt;br /&gt;
 &lt;br /&gt;
 Description&lt;br /&gt;
 -----------&lt;br /&gt;
 &lt;br /&gt;
 This landscape was taken from the NASA Spirit Rover on Mars.&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 Files&lt;br /&gt;
 -----&lt;br /&gt;
 &lt;br /&gt;
 This file (readme.txt) should have come in a zip file with some others&lt;br /&gt;
 Here is a listing of all the files which should be in the zip file:&lt;br /&gt;
 &lt;br /&gt;
   mars/readme.txt&lt;br /&gt;
   mars/landscape.ini&lt;br /&gt;
   mars/husband_hill.png&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 Installation &amp;amp; Use&lt;br /&gt;
 ------------------&lt;br /&gt;
 &lt;br /&gt;
 Unzip the landscape package file in your personal stellarium data&lt;br /&gt;
 directory, or the &amp;lt;config_root&amp;gt;/landscapes directory.  The location&lt;br /&gt;
 varyies depending on your operating system.  See the Stellarium&lt;br /&gt;
 User Guide for per-platform details.&lt;br /&gt;
 &lt;br /&gt;
 Once you have installed the landscape, open Stellarium and go to the&lt;br /&gt;
 configuration dialog.  Select the landscapes tab, and select the landscape&lt;br /&gt;
 from the list of available landscapes.&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 Credits&lt;br /&gt;
 -------&lt;br /&gt;
 &lt;br /&gt;
 Image credit: NASA/JPL-Caltech/Cornell&lt;br /&gt;
 http://marsrovers.jpl.nasa.gov/gallery/panoramas/opportunity/index.html&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 License&lt;br /&gt;
 -------&lt;br /&gt;
 &lt;br /&gt;
 NASA Images are released into the public domain&lt;br /&gt;
&lt;br /&gt;
===File encoding===&lt;br /&gt;
The landscape.ini and readme.txt files should be UTF-8 encoded text or plain ASCII.  It's probably a good idea to adopt the Windows line ending encoding, (i.e. CR LF).  Both Windows and *nix style line ending encoding should work OK in Stellarium, but Windows users will have an ugly time reading the readme.txt if it uses *nix-style newlines.&lt;br /&gt;
&lt;br /&gt;
===Need hosting?===&lt;br /&gt;
&lt;br /&gt;
If you have a landscape you would like to share but have no web-space to put it, email [[User:matthewg42|me]] and I'll put it on [http://porpoisehead.net/ my site].&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
*[[Landscape Rotation]] - how to set landscape rotation so that a certain point is due north&lt;br /&gt;
*The user guide, section 5.7: [[Customising Landscapes]]&lt;br /&gt;
&lt;br /&gt;
==Tools==&lt;br /&gt;
The following tools may be useful to people who wish to create their own landscapes:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| width=15% | '''Program''' || width=20% | '''Platform(s)''' || width=15% | '''License''' || width=40% | '''Notes''' &lt;br /&gt;
|-&lt;br /&gt;
|[http://www.cs.ubc.ca/~mbrown/autostitch/autostitch.html Autostitch] &lt;br /&gt;
| Windows; may also run on Linux using [http://www.winehq.org/ Wine]&lt;br /&gt;
| Shareware/demo &lt;br /&gt;
| Looks like it produces good results.  Registered version includes extra types of projection.  No source code.&lt;br /&gt;
|-&lt;br /&gt;
|[http://hugin.sourceforge.net/ Hugin] &lt;br /&gt;
| Linux; FreeBSD; MacOSX; Windows&lt;br /&gt;
| Free/open source (GNU GPL)&lt;br /&gt;
| Hugin is a nice GUI for Panorama Tools&lt;br /&gt;
|-&lt;br /&gt;
||[http://webuser.fh-furtwangen.de/~dersch/ Panorama Tools]&lt;br /&gt;
| Linux; FreeBSD; MacOSX; Windows&lt;br /&gt;
| Free/open source (GNU GPL)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Microsoft's [http://research.microsoft.com/en-us/um/redmond/groups/ivm/ICE/ Image Composite Editor]&lt;br /&gt;
| Windows&lt;br /&gt;
| Free (costless) &lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
*[http://stargazerslounge.com/primers-tutorials/122628-tutorial-custom-stellarium-landscapes.html Tutorial: Custom Stellarium landscapes], thread at the Stargazers Lounge forum&lt;br /&gt;
*[http://www.cloudynights.com/ubbthreads/showflat.php/Number/3759113/ Stellarium landscape image of my back porch], thread at the Cloudy Nights forum (discusses using a home-made fish-eye lens from a peep-hole to create a &amp;quot;fisheye&amp;quot; landscape)&lt;br /&gt;
&lt;br /&gt;
[[Category:Landscapes]]&lt;br /&gt;
[[Category:Customization]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Landscapes</id>
		<title>Landscapes</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Landscapes"/>
				<updated>2012-12-08T11:56:02Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: /* Europe */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==How to install landscapes==&lt;br /&gt;
After you have downloaded the .zip file for a landscape from this page, you need to install it in Stellarium.&lt;br /&gt;
&lt;br /&gt;
===Automatic===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;http://www.stellarium.org/wikiimg/stellarium-0-11-1/add-remove-landscapes-button.png&amp;lt;/div&amp;gt;&lt;br /&gt;
If you have Stellarium 0.10.6 or later version, you can use the &amp;quot;Add/remove landscapes&amp;quot; feature to install landscapes automatically:&lt;br /&gt;
*Open the &amp;quot;Sky and viewing options&amp;quot; window by clicking on the appropriate button in the left button bar (or press the F4 key).&lt;br /&gt;
*The &amp;quot;Add/remove landscapes&amp;quot; button is at the bottom of the &amp;quot;Landscape&amp;quot; tab.&lt;br /&gt;
*When you press it, the &amp;quot;Add/remove landscapes&amp;quot; window will appear. It allows you to install &amp;lt;tt&amp;gt;.zip&amp;lt;/tt&amp;gt; files containing landscapes. It also lists the user-installed landscapes and allows you to remove them.&lt;br /&gt;
&lt;br /&gt;
Note that while this makes installing landscapes easier, it may also cause you to overlook what else is included in the ZIP archive. Landscape packages created without this feature in mind may contain other files, such as alternative textures in different sizes.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;align:center&amp;quot;&amp;gt;http://www.stellarium.org/wikiimg/stellarium-0-11-1/add-remove-landscapes-window.png&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Manual===&lt;br /&gt;
If you are using an earlier version of Stellarium, you can follow this procedure to install a landscape package:&lt;br /&gt;
#Browse to your [[User Data Directory]], which varies according to your operating system. (eg. in Windows Vista/7 enter  %appdata%\stellarium in Explorer's location bar )&lt;br /&gt;
#Create a sub-directory called ''landscapes'' in your user directory (if it doesn't exist).&lt;br /&gt;
#Unzip the landscape .zip file in the ''landscapes'' directory (if it's done right, a sub-directory should be created for each landscape).&lt;br /&gt;
&lt;br /&gt;
NOTE: Older version of Stellarium (prior to v0.9.0) used a slightly different mechanism for doing landscapes. You can find a list of the old landscapes [[Landscapes pre 0.9.0|here]].&lt;br /&gt;
&lt;br /&gt;
Since version 0.10.5 Stellarium has problems in correctly loading old style landscapes (multi panel) if they are not 8 or 16 panel panoramas. Some old 4,7,9 qnd 10 side panoramas converted into 8 ides can be found here &lt;br /&gt;
*[http://sarcasmogerdes.dyndns.org/stellarium/uploads/wiruna-field.zip] (Wiruna field Barry's site)&lt;br /&gt;
*[http://sarcasmogerdes.dyndns.org/stellarium/uploads/egarden-new.zip] (Egarden 8 panel Barry's site)&lt;br /&gt;
*[http://sarcasmogerdes.dyndns.org/stellarium/uploads/neven-new.zip] (Como area Sydney Barry's site)&lt;br /&gt;
&lt;br /&gt;
==User contributed landscapes (by continent)==&lt;br /&gt;
We have landscapes for the seven continents (in the [http://en.wikipedia.org/wiki/Continent seven continent model]) - all, including from Antarctica !&lt;br /&gt;
===Interplanetary===&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/husband-hill.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_mars_husband_hill.zip|name=Husband Hill, Mars|author=Johan|license=Public Domain|compat=0.9.x|description=Johan transformed this Mars image from NASA into a spherical panorama that can be used with Stellarium.  Mars rover Spirit made this image during August 24 to 27, 2005. Image credit: NASA/JPL-Caltech/Cornell. Read more on [http://marsrovers.nasa.gov/gallery/panoramas/spirit/2005.html this webpage].}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/landscape_marsopportunity_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_mars_opportunity_rover.zip|name=Mars Opportunity Rover|author=Mike|license=Public Domain|compat=0.9.x|description=Mike sent posted this landscape in the forums.  Another nice Mars rover landscape.}}&lt;br /&gt;
 &lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_iss_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_iss.zip|name=International Space Station|author=Makc|license=GPL|compat=0.9.x|description=Landscape made using some screen shots and data from the wonderful [http://www.shatters.net/celestia/ Celestia].  Set the projection mode to stereographic, zoom out to a wide field of view and point down towards the ground to get the nice rounded &amp;quot;planet&amp;quot; effect.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_apollo_11_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_apollo_11.zip|name=Apollo 11 landing site|author=Mathew Myrup|compat=0.9.x|description=This landscape is made using NASA photographs taken by Buzz Aldrin. Look down and you can see Buzz's footprints :)}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_apollo_17_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_apollo_17.zip|name=Apollo 17 landing site|author=Mathew Myrup|compat=0.9.x|description=This landscape is made using NASA photographs taken by Gene Cernan.}}&lt;br /&gt;
&lt;br /&gt;
===Africa===&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/idehan.jpg|url=http://soyouzworld.free.fr/landscape/idehan.zip|name=Idehan Ubari, Libya|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|compat=0.10.x|description=This is a panoramic view of the desert of Idehan Ubari in Libya.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/leptis.jpg|url=http://soyouzworld.free.fr/landscape/leptis.zip|name=Leptis Magna, Libya|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|compat=0.10.x|description=This is a panoramic view of the theatre of the Roman city of Leptis Magna. This site is part of [http://whc.unesco.org/en/list/183 UNESCO World Heritage].}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/sahara.jpg|url=http://soyouzworld.free.fr/landscape/sahara.zip|name=Sahara, Libya|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|compat=0.10.x|description=This is a panoramic view from somewhere in the middle of the Sahara in Libya.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/waw-al-namus.jpg|url=http://soyouzworld.free.fr/landscape/waw-al-namus.zip|name=Volcano Waw al-Namus, Libya|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|compat=0.10.x|description=This is a panoramic view of Volcano Waw al-Namus in the Sahara.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.domani.ch/masoala/en/capmasoala_thumb.jpg|url=http://www.domani.ch/masoala/en/cap_masoala.zip|name=Cap Masoala, Madagascar|author=Matthias D. Frei|license=GPLv2+|compat=0.9.x|description=This panorama was photographed from the abandoned French lighthouse at the southernmost point of the Masoala peninsula in Madagascar. It provides a spectacular view over the Indian Ocean and the Masoala peninsula that is still mainly covered with rainforest. More information about this particular place can be found  [http://www.domani.ch/masoala/en/index.html here]}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_mbabane_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_mbabane.zip|name=Mbabane, Swaziland|author=Quinton Reissmann|compat=0.9.x|description=Mbabane is the capital of the little kingdom of Swaziland. Waterford/Kamhlaba is an international school on a mountain side which prides itself in cultural diversity. In SiSwati &amp;quot;kamhlaba&amp;quot; means &amp;quot;a world in miniature&amp;quot;. The actual view is from the sports field where we usually set up the telescope.}}&lt;br /&gt;
&lt;br /&gt;
===Asia===&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_everest_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_everest.zip|name=Mount Everest|author=Makc|license=&amp;amp;copy;|compat=0.9.x|description=Amazing parorama of the summit of Mount Everest, 8.85 km above sea level.  [http://www.everestviews.com/ Roddy Mackenzie], who climbed the mountain in 1989, captured the image.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_jantar_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_jantar.zip|name=Jantar Mantar|author=Barry Perlus &amp;amp; Stellarium team|license=CC BY-NC-SA 3.0|compat=0.9.x|description=Professor Barry Perlus of Cornell University allowed us to use his panoramic photography of one of the Jantar Mantars in India to create this landscape.  For more information on these fascinating scientific and architectural works see [http://jantarmantar.org/ jantarmantar.org].}}&lt;br /&gt;
&lt;br /&gt;
===Australasia===&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/beaumont-hills.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_beaumont_hills.zip|name=Beaumont Hills, Sydney, Australia|author=Barry Gerdes|license=GPLv2+|compat=0.9.x|description=Barry made an interesting multiple-image landscape from the rooftop of his house. You can find a detailed account of how this was done in the [http://porpoisehead.net/mysw/stellarium_user_guide_html-0.9.0-1/#SECTION001100000000000000000 Stellarium User Guide].}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/transit-hill.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_transit_hill.zip|name=Transit Hill, Lord Howe Island, Australia|author=Graeme Ewing|compat=0.9.x|description=Graeme Ewing Contributed this panorama of the astronomically significant and visually stunning Transit Hill site Northeast of Sydney, Australia. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_penneshaw_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_penneshaw.zip|name=Penneshaw, Kangaroo Island, Australia|author=Clive Nelson|compat=0.9.x|description=Penneshaw is a small township at the Northwest end of Kangaroo Island, off the coast of South Australia. In the north is the entrance to Gulf St Vincent and the Australian mainland. In the east is the Penneshaw township, To the west, on the horizon, is Kingscote, the main town on Kangaroo Island.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_largsbay_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_largsbay.zip|name=Largs Bay in South Australia|author=Martin Lewicki|license=GPL|compat=0.9.x|description=Panoramic view of Largs Bay in South Australia 8 panel old style landscape. Largs Pier Hotel facade in SSE and Largs Bay Sailing Club due east. Jetty extends to Gulf St Vincent to the west.}}&lt;br /&gt;
&lt;br /&gt;
===Europe===&lt;br /&gt;
{{Package|image=http://www.observatoire-naef.ch/assets/files/ependes-thumbnail.png|url=http://www.observatoire-naef.ch/assets/files/ependes.zip|name=Épendes Observatory, Fribourg, Switzerland|author=[http://www.stellarium.org/wiki/index.php/User:Mina Nicolas Martignoni]|license=CC BY-NC-SA 3.0.|compat=0.10.x|description=The [http://www.observatoire-naef.ch/ Épendes Observatory] (44°44′01″N 7°08′25″E) is located near the city of Fribourg, Switzerland. The images for this landscape were taken in August 2006. File size is about 1.7 MB.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://michael.nadev.net/pub/wurania.png|url=http://michael.nadev.net/pub/wurania.zip|name=Urania Observatory, Vienna, Austria|author=Michael Prokosch|license=CC BY-ND 3.0|compat=0.9.x|description=The [http://www.astronomie-wien.at/astronomie_urania.html Urania Observatory] (48°12′41.88″N 16°23′1.53″E) is located right in the middle of the city of Vienna, capital of Austria. Built in 1910 under emporer Franz Joseph I. it's the countries oldest non-scientifical observatory still in use for people's education. This landscape was taken in August 2011. If you are not distracted by the stars, you can even see St. Stephan's cathedral, the Viennese Giant Wheel and the Danube Canal. File size is about 11.5 MB.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://perso.wanadoo.es/arias_llego/stellarium/laguardia/Thumbnail.png|url=http://perso.wanadoo.es/arias_llego/stellarium/laguardia/laguardia.zip|name=Port of La Guardia, Galicia, Spain|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=CC BY-NC-ND 3.0|compat=0.10.x|description=La Guardia is a fishing village in Galicia, in the NW. of Spain. This landscape was taken on the 19/07/2008. '''[http://perso.wanadoo.es/arias_llego/stellarium/laguardia/Port_of_La_Guardia.kmz KMZ file]'''. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/Thumbnail.png|url=http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/castrolaboreiro.zip|name=Castle of Castro Laboreiro 13th Century, Melgaço, Portugal|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=CC BY-NC-ND 3.0|compat=0.10.x|description=Castro Laboreiro is a village in Melgaço, in the NW. of Portugal. This landscape was taken on the 15/08/2010. '''[http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/Castle_of_Castro_Laboreiro.kmz Kmz file]'''. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.cestomano.com/stellarium/thumbnail.png|url=http://www.cestomano.com/stellarium/lascanadas.zip|name=Las Cañadas del Teide, Tenerife, Spain|author=[http://www.cestomano.com José Ángel Estévez]|license=|compat=0.10.x|description=This landscape of Las Cañadas was built in April 2008. It's located in the center of Tenerife island, Canary Islands. It can be viewed the Teide volcano -the highest mountain in Spain: 3.718 mts.-, El Llano de Ucanca and Los Roques de García with the characteristic rock &amp;quot;El Cinchado&amp;quot; which, with Teide Volcano, appeared in the old 1.000 ptas. bill. &lt;br /&gt;
&lt;br /&gt;
'''Note:''' If you have problems with the landscape (landscape may not appear because low memory on VGA chip), try to download and replace the PNG landscape with [http://www.cestomano.com/stellarium/peq/lascanadas.png this 50% scaled image]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.waldvogel.com/stellarium/landscape_jungfraujoch_tmb.png|url=http://www.waldvogel.com/stellarium/landscape_jungfraujoch.zip|name=Jungfraujoch High Altitude Research Station, Switzerland|author=Christian Waldvogel|license=|compat=0.10.x|description=Lying at 3580m in the Bernese Alps, the Jungfraujoch is often dubbed &amp;quot;Top of Europe&amp;quot;. It has been home to an astronomical observation station for more than 80 years. The spherical landscape was created from 20 images taken on June 29th, 2008, at 1015, from the lower terrace of the Sphinx Obervatory. The landscape comes in three resolutions (1024 / 2048 / 4096). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/San_Pietro.jpg|url=http://www.stellarium.org/files/landscapes/San_Pietro.zip|name=St Peter's Square (Vatican)|author=Gianfranco Mazzani|license=|compat=0.10.x|description=This is a complete high resolution panoramic view of the St Peter's Square, City of Vatican. &lt;br /&gt;
&lt;br /&gt;
Gianfranco Mazzani photographed this panorama in july 2004 by using a Nikon Coolpix 8700, and stitched &lt;br /&gt;
the original 10 pictures together into a spherical panorama using Hugin program. The panorama has been &lt;br /&gt;
than cutted into 8 alfa channel pictures and re-dimensioned the width to 2048 pixel and then dimensioned &lt;br /&gt;
the height to 32 cm by using Photoschop elements 2.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.waldvogel.com/stellarium/landscape_rodiano_tmb.png|url=http://www.waldvogel.com/stellarium/landscape_rodiano.zip|name=Frantoio Rodiano, Italy|author=Christian Waldvogel|license=|compat=0.10.x|description=The Frantoio Rodiano (Rodiano oil press) is situated on the foot of Mount Gargano in Puglia / Italy. Just a few kilometers uphill lies Monte Sant'Angelo, the famous stop for christian pilgrims on their way to Jerusalem. Stargazing has been kin to this region for milleniae: the oldest graves found in the Frantoio's vicinity date back to pre-etruscan times, and the famous Castel del Monte, an astronomical observation in itself, is not far either. The spherical landscape was created from 8 images taken on September 20th, 2010, at 1707, from the uppermost terrace of the Frantoio Rodiano. The landscape comes in three resolutions (1024 / 2048 / 4096). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://pano.jubila.de/stellarium/muchachos_thumb.jpg|url=http://pano.jubila.de/stellarium/muchachos.zip|name=Roque de los Muchachos, La Palma, Spain|author=Uwe Buecher|license=|compat=0.10.x|description=This high resolution landscape was built with hugin from 20 photos taken in October 2007. It is located on top of the highest mountain on La Palma, Canary Islands. You can see the Buildings of the Observatorio del Roque de los Muchachos, one of them is the Gran Telescopio Canarias (GTC) which is the greatest telescope in the world today (10.4m diameter). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_egarden_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_egarden.zip|name=English Garden, Munich, Germany|author=Rob Spearman, Johan Meuris|license=|compat=0.9.x|description=This high resolution landscape was taken in April 2007 by Rob. Johan helped with the post production.  The result is a very high quality landscape. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_egarden_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_egarden_old_style.zip|name=English Garden, Munich, Germany|author=Rob Spearman, Johan Meuris|license=|compat=0.9.x|description=The original English Garden landscape was re-constructed by Barry Gerdes as an old_style landscape.  This means that it can be used with video hardware which cannot cope with single very large texture files, and yet preserves the resolution of the landscape (by splitting the images into multiple files). Try this is the original English Garden landscapes doesn't load on your computer. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/voksenlia.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_voksenlia.zip|name=Voksenlia, Oslo, Norway|author=Steinar Midtskogen|license=|compat=0.10.x|description=Steinar Midtskogen sent [http://porpoisehead.net/mysw/downloads/voksenlia.png this huge (17 MiB!) spherical landscape image] of Voksenlia, Oslo, Norway (59°58'14N, 10°38'57E, alt=348m). (Currently not working with version 0.9.0). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/observatory-hill-Barry.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_edinburgh.zip|name=Calton Hill, Edinburgh, Scotland|author=Friedrich Noelle, Barry Gerdes|license=|compat=0.9.x|description=Friedrich Noelle took a nice panorama of Observatory Hill, Edinburgh which Barry converted into a Stellarium landscape. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/sight_thumb.jpg|url=http://www.geomancygroup.org/stella/sighthill.zip|name=Sighthill stone circle, Glasgow, Scotland|author=[http://www.geomancygroup.org Grahame Gardner]|license=|compat=0.9.x|description=Sighthill stone circle is a modern stone ring constructed in 1979 by amateur astronomer and SF writer Duncan Lunan. Located next to the M8 motorway in Glasgow city centre, yet with surprisingly good views, the circle has alignments to the solsticial solar rises and settings and the lunar standstills. Alignments to the rising of Rigel are included for 1979 AD and 1800 BC. (2MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/beech_thumb.jpg|url=http://www.geomancygroup.org/stella/beechhill.zip|name=Beech Hill stone circle, nr. Nutley, E. Sussex, England|author=[http://www.geomancygroup.org Grahame Gardner]|license=|compat=0.9.x|description=Beech Hill is a modern stone ring constructed in 2000 by Ivan McBeth and Richard Creightmore of The Geomancy Group [http://www.geomancygroup.org/ www.geomancygroup.org]. Located in the Ashdown Forest, the circle's main alignment is to the Pole Star, denoted by the angled outlier. (2.2MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/calave_tb.jpg|url=http://www.geomancygroup.org/stella/calanaisave.zip|name=Calanais I (Callanish) Avenue, Lewis, Western Isles, Scotland|author=[http://www.geomancygroup.org Grahame Gardner]|license=|compat=0.9.x|description=Callanish is arguably the finest megalithic monument in the British Isles, and is just the largest site in a vast complex of interconnected monuments designed to observe the southern major standstills of the moon. From this position at the end of the avenue, the moon is seen to set behind the rocky outcrop of Cnoc-an-Tursa, only to 're-gleam' in the centre of the main circle a short time afterwards. (4MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/machrie_tb.jpg|url=http://www.geomancygroup.org/stella/machrie5.zip|name=Machrie Moor 5, Isle of Arran, Scotland|author=[http://www.geomancygroup.org Grahame Gardner]|license=|compat=0.9.x|description=This delightful little double-concentric stone circle is the first site you come to when visiting the Machrie Moor complex of megalithic sites on Arran. Although not the most spectactular site in the group, it is one of the most complete and has good views. (7.3MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/mitchthumbnail.jpg|url=http://www.geomancygroup.org/stella/mitchell2.zip|name=Mitchell's Fold stone circle, Shropshire, England|author=[http://www.vallecrucisgrail.co.uk/ Ian Pegler]|license=|compat=0.9.x|description=This wonderful ancient stone circle stands on a plateau amid the rolling Shropshire hills and is loved by walkers, dowsers and Wiccans alike. April 2010 - new version uploaded, featuring improved centre camera position based on Alexander Thom's geometry and improved alignments. (1.8MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/aveburyn_thumb.jpg|url=http://www.geomancygroup.org/stella/aveburynorth.zip|name=Avebury - North circle, Wiltshire, England|author=[http://www.vallecrucisgrail.co.uk/ Ian Pegler]|license=|compat=0.9.x|description=The North circle of the largest megalithic complex in Europe. In the background you can just make out the Red Lion pub. (1MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/vallecrucis_thumb.jpg|url=http://www.geomancygroup.org/stella/vallecrucis.zip|name=Valle Crucis Abbey, Llangollen, North Wales|author=[http://www.vallecrucisgrail.co.uk/ Ian Pegler]|license=|compat=0.9.x|description=This ruined Cistercian abbey dates to 1200 but may be the site of a much earlier Dark Age settlement with a very early Christian church. (2.5MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/ponta-da-piedade.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_lagos.zip|name=Ponta da Piedade, Algarve, Lagos, Portugal|author=Johan|license=|compat=0.9.x|description=Johan photographed this panorama in June 2006 and stitched it together into a spherical panorama that can be used with Stellarium.  You see sandstone cliffs on the Atlantic coast of southern Portugal, a lighthouse, and a natural bridge. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/landscape_gurnigel_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_gurnigel.zip|name=Gurnigel, Switzerland|author=Martin Mutti|license=|compat=0.9.x|description=This is the site of the Bern Astronomical Society's observing site. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/tishinka-ardashev.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_tishinka.zip|name=Tishinka, Russia|author=Dmitri Ardashev|license=|compat=0.9.x|description=This is a small village between Moscow's and Kaluga's regions, in 130 km south-west of Moscow (55°18'32.46N, 36°26'42.06E, alt=195). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_t60pic_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_t60pic.zip|name=T60 dome, Pic du Midi Observatory, France|author=Sylvain Rondi|license=|compat=0.9.x|description=Sylvain photographed this panorama in February 2007 and stitched it together into a spherical panorama that can be used with Stellarium. This is the panoramic view from the amateur 60cm telescope dome from [http://astrosurf.com/t60/ T60 Association], installed at Pic du Midi Observatory. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_t1mpic_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_t1mpic.zip|name=T1M terrasse, Pic du Midi Observatory, France|author=Sylvain Rondi|license=|compat=0.9.x|description=Sylvain photographed this panorama in February 2007 and stitched it together into a spherical panorama that can be used with Stellarium. This is the panoramic view from the terrasse of the professional 106cm telescope at Pic du Midi Observatory (France). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_sheffieldrivelin_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_sheffieldrivelin.zip|name=River Rivelin, Sheffield, UK|author=Jan Wedekind|license=CC SA-2.0|compat=0.9.x|description=This is a 270° fisheye panorama created from 40 photos using Hugin. It shows the River Rivelin in Sheffield in the middle of April 2007. The fringes (twigs and tree tops) where dimmed out using The Gimp. The overexposed parts of the horizon have been removed. Copyright (C) 2007, [[User:Wedesoft|Jan Wedekind]], [http://creativecommons.org/licenses/by-sa/2.0/ Creative Commons Attribution ShareAlike License 2.0] }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_ares_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_ares.zip|name=Ares, Galicia, Spain|author=[http://www.stellarium.org/wiki/index.php/User:rcasl Rubén Castiñeiras Lorenzo]|license=|compat=0.9.x|description=Ares is a small fishing village in Galicia, in the NW of Spain, close to the city of Ferrol. The 360 degree image was taken at the noon of August 6th, 2007, just in front of the &amp;quot;Paseo Rosalía de Castro&amp;quot;. It has been made with 17 photos, stitched with Hugin 0.7 beta 4 and retouched with the Gimp 2.2.17. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_ovindoli_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_ovindoli.zip|name=Ovindoli, Italy|author=Pierluigi Panunzi|license=|compat=0.9.x|description=Ovindoli is a famous ski resort in central Italy. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/rustrel.jpg|url=http://soyouzworld.free.fr/landscape/rustrel.zip|name=Rustrel, France|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Colorado de Rustrel in &amp;quot;Les Sentiers de l'Ocre et du Fer&amp;quot;, Provence, France. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://files.myopera.com/aid85/files/host/Stintino.jpg|url=http://files.myopera.com/aid85/files/host/stintino.zip|name=Stintino, Italy|author=[http://my.opera.com/aid85 aid85]|license=|compat=0.9.x|description=High resolution 360° landscape taken at &amp;quot;LaPelosa&amp;quot; beach in Stintino (SS) Sardinia \ Italy - Europe \ Mediterranean Sea. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/vatican.jpg|url=http://soyouzworld.free.fr/landscape/vatican.zip|name=St Peter's Square, Vatican|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the St Peter's Square. City of Vatican. Some parts of the buildings are missing, not enough pictures... This site is part of [http://whc.unesco.org/en/list/286 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://files.myopera.com/aid85/files/host/Larvotto.jpg|url=http://files.myopera.com/aid85/files/host/munegu.zip|name=Munegu, MC|author=[http://my.opera.com/aid85 aid85]|license=|compat=0.9.x|description=High resolution 360° landscape taken at Larvotto beach in [http://en.wikipedia.org/wiki/Monaco Munegu \ Monaco - MC] (MonteCarlo) - Europe \ Mediterraneum Sea - Ligurian Sea. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/Bahia_de_Cadiz.jpg|url=http://www.stellarium.org/files/landscapes/Bahia_de_Cadiz.zip|name=Bahia de Cádiz, Spain|author=José Codejón|license=|compat=0.10.x|description=A new bridge is being built across de bay. The 360° panorama image was taken at noon of September 10th, 2012, from the pier of the small marina just closed to the Cadiz head of the bridge. &lt;br /&gt;
&lt;br /&gt;
The final picture is the result of stitching 11 frames, taken out of a 63 seconds full HD video, using PhotoStitch and Gimp 2.6.8. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.ticfisquim.org/astro/stellarium/thumbnails.jpg|url=http://www.ticfisquim.org/astro/stellarium/cocentaina.zip|name=Cocentaina, Spain|author=[http://www.ticfisquim.org Angel Juan Martínez]|license=|compat=0.9.x|description=This is a panoramic view from the roof of the Secondary School of Cocentaina, a little town of the Pais Valencià (Spain), in the mountains that are between Valencia and Alicante, where I teach Astronomy with the help of Stellarium. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.xs4all.nl/~adonet/stellarium/tulipfield.jpg|url=http://www.xs4all.nl/~adonet/stellarium/tulipfield.zip|name=Amstelveen, The Netherlands|author=[http://www.xs4all.nl/~adonet/stellarium/stellarium.html Jeroen Adolfse]|license=|compat=0.9.x|description=This landscape shows the tulipfields in spring (may 2008) in Schagerbrug, North Holland. It's an old_style landscape. (file is 4.5 Mb) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.didgeweb.com/stellarium/oudmeer_sample.png|url=http://www.didgeweb.com/stellarium/son_oudmeer.zip|name=Son &amp;amp;amp; Breugel, The Netherlands|author=[http://www.didgeweb.com/ Roland Mathijssen]|license=|compat=0.9.x|description=This landscape shows the Oude Meer (Old Lake) in the Sonse Heide in Son (close to Eindhoven). (file is 5.4 MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.obs-sirene.com/divers/stellarium/sirene.png|url=http://www.obs-sirene.com/divers/stellarium/sirene.zip|name=Sirene Observatory, Lagarde d'Apt (84), France|author=[http://cyprien.pouzenc.free.fr Cyprien Pouzenc]|license=|compat=0.9.x|description=Panoramic view of installations. Previously the site was used as a nuclear lauching pad. Now days, [http://www.obs-sirene.com Sirene] accepts everybody for astronomical observations. (File is 11 Mb) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.nett.is/~sveinki/stellarium/vonarskard-tn.png|url=http://www.nett.is/~sveinki/stellarium/vonarskard.zip|name=Vonarskar&amp;amp;eth;, Passage of Hope, Iceland|author=[http://www.nett.is/~sveinki/stellarium/ Sveinn &amp;amp;iacute; Felli]|license=|compat=0.9.x|description=This is the geographical center of Iceland, a barren pass between glaciers. Being sheltered from southern vinds by the huge Vatnajökull glacier, a great cold mass which then eliminates most humididy from the air, makes the place unusually good for stargazing. Old-style landscape, resolution is a bit low. (File is 1.1 Mb) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.brontovox.co.uk/Downloads/woodhenge_winter_solstice_sunset_ts.png|url=http://www.brontovox.co.uk/Downloads/woodhenge.zip|name=Woodhenge near Stonehenge|author=[http://www.brontovox.co.uk Hugo Jenks]|license=|compat=0.9.x|description=Woodhenge near Stonehenge was constructed around 2200 BC. It comprised numerous wooden posts set into the chalky ground. These posts of course decayed, and their positions today are marked with concrete cylinders. &lt;br /&gt;
&lt;br /&gt;
The posts are arranged, in plan view, as a series of concentric egg shapes. The axis of the egg shapes aligns approximately with summer solstice sunrise. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.brontovox.co.uk/Downloads/stonehenge_screenshot_st.jpg|url=http://www.brontovox.co.uk/Downloads/stonehenge.zip|name=Stonehenge|author=[http://www.brontovox.co.uk Hugo Jenks]|license=|compat=0.9.x|description=Was it an observatory? Yes indeed it was!  The alignment of the monument with the summer solstice sunrise has been well known for many years. The alignment with the winter solstice sunset may have been more significant. For the first time, many additional alignments are published, and are detailed here:  [http://www.brontovox.co.uk/ www.brontovox.co.uk] These alignments demonstrate that Stonehenge was primarily a functional scientific instrument, used for measuring angles. The angles of interest were the rising and setting bearings of the sun, moon, and stars. It was therefore possible to map the entire visible sky. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/rila.jpg|url=http://soyouzworld.free.fr/landscape/rila.zip|name=Rila Monastery, Bulgaria|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Rila Monastery in Bulgaria. This building is quite high so the sky area is not really large. This site is part of [http://whc.unesco.org/en/list/216 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://bg360.net/stellarium/silistar.jpg|url=http://bg360.net/stellarium/silistar.zip|name=Silistar, Bulgaria|author=[http://bg360.net BG360]|license=|compat=0.9.x|description=Panoramic view of the Silistar Beach in Bulgaria. See this panorama here [http://pano.bg360.net/silistar/index_en.php Flash pano]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://bg360.net/stellarium/alexandernevsky.jpg|url=http://bg360.net/stellarium/alexandernevsky.zip|name=St. Alexander Nevsky Cathedral, Sofia, Bulgaria|author=[http://bg360.net BG360]|license=|compat=0.9.x|description=Panoramic view of the Saint Alexander Nevsky Cathedral in Bulgaria. See this panorama here [http://pano.bg360.net/sofia/alexander-nevsky_en.php Flash pano]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://bg360.net/stellarium/rousse.jpg|url=http://bg360.net/stellarium/rousse.zip|name=Statue of Freedom, Rousse, Bulgaria|author=[http://bg360.net BG360]|license=|compat=0.9.x|description=Panoramic view from the center of Rousse in Bulgaria. See this panorama here [http://pano.bg360.net/ruse/pametnik-svobodata_en.php Flash pano]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/thumbnail-dm.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/dm.zip|name=Central Munich|author=Markus Dähne|license=|compat=0.9.x|description=This landscape shows the view from the Eastern observatory of the [http://www.beobachtergruppe.com Deutsches Museum] in Munich, Germany.  During public observing sessions, Stellarium is used to help explain the sky :-) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_leist_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_leist.zip|name=Leist, Switzerland|author=Bernd Lang|license=|compat=0.9.x|description=This landscape was developed from a panoramic picture of the Leist in Switzerland (2222m).  The picture was taken during a [http://www.panoramio.com/user/1437658 hiking tour] from Tanenboden to the top of the Leist. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_stonehenge_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_stonehenge.zip|name=Stonehenge, England|author=[http://www.freetadel.blogspot.com/ Fernando]|license=|compat=0.9.x|description=This landscape depicts Stonehenge - the famous prehistoric monument in Wiltshire, Southern England. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/avignon.jpg|url=http://soyouzworld.free.fr/landscape/avignon.zip|name=Place du Palais des Papes, Avignon|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Place du Palais des Papes in Avignon.  France. This site is part of [http://whc.unesco.org/en/list/228 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/avignonb.jpg|url=http://soyouzworld.free.fr/landscape/avignonb.zip|name=Le Pont d'Avignon, Avignon|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Pont d'Avignon (aka Bridge Saint-Bénezet) in Avignon.  France. This site is part of [http://whc.unesco.org/en/list/228 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/orange.jpg|url=http://soyouzworld.free.fr/landscape/orange.zip|name=Roman Theatre of Orange|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Roman Theatre of Orange- France. This site is part of [http://whc.unesco.org/en/list/163 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_cambridge_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_cambridge.zip|name=Centre for Mathematical Sciences, Cambridge, UK|author=[http://www.srcf.ucam.org/~mh519/ Matt Hickford]|license=|compat=0.9.x|description=Panorama from the grassy roof of the Centre for Mathematical Sciences, Cambridge University, UK in March. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_grantchester_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/grantchester.zip|name=Grantchester Meadows, Cambridgeshire, UK|author=[http://www.srcf.ucam.org/~mh519/ Matt Hickford]|license=|compat=0.9.x|description=Panorama from Grantchester Meadows, Cambridgeshire, UK in March. Flat horizon. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_areeiro_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_areeiro.zip|name=Pico do Areeiro|author=Filipe Gomes|license=|compat=0.9.x|description=This is a panoramic view of the [http://pt.wikipedia.org/wiki/Pico_do_Arieiro Pico do Areeiro], the second highest point of the island.  Madeira Island - Portugal. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_caniga_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_caniga.zip|name=Caniga Country|author=[http://www.flickr.com/photos/25710744@N03/2672852380/ Andrea Pittalis]|license=|compat=0.9.x|description=This landscape was taken from the Caniga Country, near Sassari in Sardinia, Italy. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.under-a-dark-sky.com/stellarium/cdn-landscape.jpg|url=http://www.under-a-dark-sky.com/stellarium/cdn.zip|name=Cuevas del Negro, Andalucia|author=Peter Lynch|license=|compat=0.9.x|description=A nearly flat rural landscape in southern Spain. The site has very dark skies and a view down to about 3&amp;amp;deg; to the south. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.astrosurf.com/aaaov/landscape/landscape_aaaov_thumb.jpg|url=http://www.astrosurf.com/aaaov/landscape/aaaov.zip|name=Astronomes Amateurs Aixois Observatoire Vauvenargues (AAAOV) - France|author=[http://www.astrosurf.com/aaaov AAAOV]|license=|compat=0.9.x|description=Vauvenargues Observatory located near Aix-en-Provence, France. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.astrosurf.com/aaaov/landscape/landscape_baie_saint_michel_thumb.jpg|url=http://www.astrosurf.com/aaaov/landscape/baie_saint_michel.zip|name=Astronomes Amateurs Aixois Observatoire Vauvenargues (AAAOV) - France|author=[http://www.astrosurf.com/aaaov AAAOV]|license=|compat=0.9.x|description=Saint Michel Bay - Serre Ponçon lake, Alpes - France. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_la_guardia_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_la_guardia.zip|name=La Guardia|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=|compat=0.9.x|description=La Guardia is a fishing village in Galicia, in the NW. of Spain. This landscape was taken on the 19/07/2008 at 12:38 p.m. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_uvalno_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_uvalno.zip|name=Uvalno, Czech Republic|author=|license=|compat=0.9.x|description=A view from a garden in the village of Uvalno, Czech Republic. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://astro.sentvid.org/stellarium/sentvid-thumbnail.png|url=http://astro.sentvid.org/stellarium/sentvid.zip|name=Šentvid, Ljubljana, Slovenia|author=|license=|compat=0.9.x|description=View from the roof of the observatory of Gymnasium Šentvid, Ljubljana, Slovenia. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://astronomia.zagan.pl/pliki/stellarium-moczyn.png|url=http://astronomia.zagan.pl/pliki/moczyn.zip|name=Poland,Zagan - sity Johannes Kepler|author=[http://astronomia.zagan.pl/articles.php?article_id=21 Jacek Patka]|license=|compat=0.9.x|description=View of the old quarter. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://perso.wanadoo.es/arias_llego/stellarium/laguardia/Thumbnail.png|url=http://perso.wanadoo.es/arias_llego/stellarium/laguardia/laguardia.zip|name=Port of La Guardia, Galicia, Spain|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=|compat=0.9.x|description=La Guardia is a fishing village in Galicia, in the NW. of Spain. This landscape was taken on the 19/07/2008.&lt;br /&gt;
&lt;br /&gt;
[http://perso.wanadoo.es/arias_llego/stellarium/laguardia/Port_of_La_Guardia.kmz Kmz file] }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/Thumbnail.png|url=http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/castrolaboreiro.zip|name=Castle of Castro Laboreiro 13th Century, Melgaço, Portugal|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=|compat=0.9.x|description=Castro Laboreiro is a village in Melgaço, in the NW. of Portugal. This landscape was taken on the 15/08/2010.&lt;br /&gt;
&lt;br /&gt;
Castle of Castro Laboreiro 13th Century, Melgaço, Portugal [http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/Castle_of_Castro_Laboreiro.kmz Kmz file] }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.cestomano.com/stellarium/thumbnail.png|url=http://www.cestomano.com/stellarium/lascanadas.zip|name=Las Cañadas del Teide, Tenerife, Spain|author=[http://www.cestomano.com José Ángel Estévez]|license=|compat=0.9.x|description=This landscape of Las Cañadas was built in April 2008. It's located in the center of Tenerife island, Canary Islands. It can be viewed the Teide volcano -the highest mountain in Spain: 3.718 mts.-, El Llano de Ucanca and Los Roques de García with the characteristic rock &amp;quot;El Cinchado&amp;quot; which, with Teide Volcano, appeared in the old 1.000 ptas. bill. &lt;br /&gt;
&lt;br /&gt;
'''Note:''' If you have problems with the landscape (landscape may not appear because low memory on VGA chip), try to download and replace the PNG landscape with [http://www.cestomano.com/stellarium/peq/lascanadas.png this 50% scaled image]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.waldvogel.com/stellarium/landscape_rodiano_tmb.png|url=http://www.waldvogel.com/stellarium/landscape_rodiano.zip|name=Frantoio Rodiano, Italy|author=Christian Waldvogel|license=|compat=0.9.x|description=The Frantoio Rodiano (Rodiano oil press) is situated on the foot of Mount Gargano in Puglia / Italy. Just a few kilometers uphill lies Monte Sant'Angelo, the famous stop for christian pilgrims on their way to Jerusalem. Stargazing has been kin to this region for milleniae: the oldest graves found in the Frantoio's vicinity date back to pre-etruscan times, and the famous Castel del Monte, an astronomical observation in itself, is not far either. The spherical landscape was created from 8 images taken on September 20th, 2010, at 1707, from the uppermost terrace of the Frantoio Rodiano. The landscape comes in three resolutions (1024 / 2048 / 4096). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/luene.jpg|url=http://www.ausgerechnet-jetzt.de/lueneburg.zip|name=Top of Water Tower of Lueneburg, Germany|author=Uwe Prolingheuer|license=|compat=0.9.x|description=This is a panoramic view from the top of old Water Tower 56m above ground, constructed 1906/07, in Lueneburg, a town with many retained medieval houses. Northern Germany. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/gas-gao.jpg|url=http://www.stellarium.org/files/landscapes/gas-gao.zip|name=GAS GAO, Russia|author=[http://www.kepler-observatorium.ru/ Andrey Kuznetsov]|license=|compat=0.10.x|description=Russia, Caucasus. The astronomical science station on the mountain Shadjatmaz. This is the view from amateur's observatory (by Andrey Kuznetsov, Sergey Kiselev). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/caucasus.jpg|url=http://www.stellarium.org/files/landscapes/caucasus.zip|name=Caucasus, Russia|author=[http://www.kepler-observatorium.ru/ Andrey Kuznetsov]|license=|compat=0.10.x|description=North Caucasus, Elbrus. }}&lt;br /&gt;
&lt;br /&gt;
===North America===&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/saltlakecity.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_salt_lake_city.zip|name=Salt Lake City Panorama|author=Hiram Bertoch|license=|compat=0.9.x|description=Hiram made this panorama for the KidsKnowIt Network's outreach program. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_sanjose_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_sanjose.zip|name=San Jose, California, USA|author=BrendaEM|license=|compat=0.9.x|description=This panorama was made using Nasa's WorldWind. Screenshots were taken at 45 degree increments. The screenshots were layered and stitched together, and then offset until the the Northern mountains were aligned. A landscape such as this could be made of any location in the world. There is a plug-in for WorldWind called &amp;quot;BigScreenshot,&amp;quot; that may make the process easier, but not automate it. A plug-in could be written to do this entire process automatically. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://trampleasure.net/science/solar-calendar/thumbnail.jpg|url=http://trampleasure.net/science/solar-calendar/landscape.ini|name=Berkeley, California, USA|author=Lee Trampleasure Amosslee|license=|compat=0.9.x|description=This panorama is centered at the [http://solarcalendar.org/ Cesar Chavez Memorial Solar Calendar] at the Berkeley Marina. The solar calendar has large stones that line up with the sunrises and sunsets at the equinoxes and solstices. [http://trampleasure.net/science/solar-calendar/chavez-solar-calendar-large.png 4096X2048 PNG photo, 8.3MB], or [http://trampleasure.net/science/solar-calendar/chavez-solar-calendar.png 2048x1024 PNG photo 2.1MB]. In the larger photo, I painted the Golden Gate bridge to make it stand out a bit more. Credits and location can be found in the [http://trampleasure.net/science/solar-calendar/landscape.ini landscapes.ini file]. Please include credits if you use/distribute this version.  }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.jrctech.net/landscapes/wiki-photos/tn_School-Image2.png|url=http://www.jrctech.net/landscapes/chesterton_school.zip|name=Chesterton Elementary School - San Diego, California, USA|author=[http://www.jrctech.net John Chester]|license=|compat=0.10.x|description=This landscape was taken to help encourage students to learn about science and astronomy using Stellarium.  The panorama was taken at the playground area of Chesterton Elementary School on October 23, 2011.  The image was constructed using the Multiple Image Method using 8 overlapping images to provide a high level of detail.  The original composite panorama image was 22442 (width) x 2418 (height) pixels .  Composite photo reduced to 5 equally sized photos of 2048 by 1024 pixels.  Many trees created complex horizon background but left details, such as tether-ball poles, in place during transparency development to keep landscape realistic.  The lines of the playground provide an interesting perspective with Stellarium. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/eltajin.jpg|url=http://soyouzworld.free.fr/landscape/eltajin.zip|name=El Tajin, Mexico|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the prehispanic city of El Tajin. Theses ruins are part of [http://whc.unesco.org/en/list/631 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/mexico.jpg|url=http://soyouzworld.free.fr/landscape/mexico.zip|name=Mexico Ciudad, Mexico|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Zocalo (Plaza de la Constitución) of Mexico Ciudad. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/uxmal.jpg|url=http://soyouzworld.free.fr/landscape/uxmal.zip|name=Uxmal, Yucatan, Mexico|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Cuadrangulo de las Monjas in Pre-Hispanic Town of Uxmal. This site is part of [http://whc.unesco.org/en/list/791 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://home.arcor.de/mdoege/pano/boulder_thumb.png|url=http://home.arcor.de/mdoege/pano/boulder.zip|name=University of Colorado at Boulder, Boulder, Colorado, USA|author=Martin C. Doege|license=|compat=0.9.x|description=View from Farrand Field at the [http://en.wikipedia.org/wiki/University_of_Colorado_at_Boulder University], with the [http://en.wikipedia.org/wiki/Flatirons Flatirons] to the southwest. (File is 2.9 Mb) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_jasperpyramidisland_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_jasperpyramidisland.zip|name=Jasper National Park, Alberta, Canada|author=[http://www.jasperdarksky.org/stellarium Rogier Gruys]|license=|compat=0.9.x|description=Pyramid Island dark sky observation site in [http://pc.gc.ca/jasper Jasper National Park], Alberta, Canada -  world's largest [http://www.jasperdarksky.org/ Dark Sky Preserve]. This site is only 15 min from the town of Jasper, yet nearly perfectly dark. The panorama was taken just before sunset in October 2011. }}&lt;br /&gt;
&lt;br /&gt;
===South America===&lt;br /&gt;
{{Package|image=http://www.essl.de/wp/wp-content/uploads/2008/03/paranalscreenshot.png|url=http://www.essl.de/wp/wp-content/uploads/2008/03/paranal.zip|name=ESO's Very Large Telescope in the Atacama Desert, Chile|author=[http://www.essl.de Dirk Essl]|license=|compat=0.9.x|description=The Very Large Telescope Project (VLT) is a system of four separate optical telescopes (the Antu telescope, the Kueyen telescope, the Melipal telescope, and the Yepun telescope) organized in an array formation. Each telescope has an 8.2 m aperture. The array is complemented by three movable Auxiliary Telescopes (ATs) of 1.8 m aperture. The project is organized by the [http://www.eso.org/ ESO]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/cachi.jpg|url=http://soyouzworld.free.fr/landscape/cachi.zip|name=Cachi, Argentina|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Parque National Los Cardones near the village of Cachi. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/lagunaverde.jpg|url=http://soyouzworld.free.fr/landscape/lagunaverde.zip|name=Laguna Verde, Bolivia|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Laguna Verde and Laguna Blanca under the Juriques (5704m) and Licancabur (5920m) Volcanos. These lakes are located in Reserva Nacional Eduardo Avaroa, Bolivia. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://documents.epfl.ch/users/m/mt/mtewes/www/permanent/euler_la_silla_thumb.png|url=http://documents.epfl.ch/users/m/mt/mtewes/www/permanent/euler_la_silla.zip|name=Swiss Euler Telescope, ESO La Silla Observatory, Chile|author=[http://obswww.unige.ch/~tewes/ Malte Tewes]|license=|compat=0.9.x|description=Euler is the nearby telescope that can be seen in the west. It is operated by the University of Geneva, and its main duty is the quest of extrasolar planets. The New Technology Telescope (NTT) shows up just behind Euler's control room, Tarot is in due south, and finally the venerable ESO 3.6 meter telescope sits on its hill in the southeast. The panorama was taken on September 3, 2010, at about 7:25 local time, a wonderful sunrise after a snowy night. [http://obswww.unige.ch/~tewes/stellarium_landscapes/ Screenshots] }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/images/landscape_braziland_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_braziland.zip|name=Divinópolis, Brazilia|author=[http://alquimiapopular.wordpress.com/psicologo/ Wanderson Nunes Ferreira]|license=|compat=0.9.x|description=[http://alquimiapopular.wordpress.com/psicologo/ Wanderson Nunes Ferreira] photographed this panorama in the Brazilian city of Divinópolis in March 2011 and stitched it together into a spherical panorama that can be used with Stellarium. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://resoundcity.com/resources/stellarium/shined_dream_tb.jpg|url=http://resoundcity.com/resources/stellarium/shined_dream.zip|name=Shined Dream, Argentina|author=Adrian Felipe Pera|license=|compat=0.9.x|description=[http://www.flickr.com/photos/afpera/7529438152 Shined Dream] by Adrian Felipe Pera, a [http://www.resoundcity.com/ ResoundCity] member. Pergamino, Buenos Aires, Argentina. A small town, but still flashed enough to see nearly the stars, or hear the song of the spheres. [http://www.flickr.com/photos/afpera/7529438152 Flickr image] [http://adn-pera.deviantart.com/#/d56ldh2 deviantart wallpaper]. }}&lt;br /&gt;
&lt;br /&gt;
===Polar regions===&lt;br /&gt;
{{Package|image=http://www.obs-sirene.com/divers/stellarium/concordia.png|url=http://www.obs-sirene.com/divers/stellarium/concordia.zip|name=French-Italian Concordia Station|author=[http://cyprien.pouzenc.free.fr Cyprien Pouzenc]|license=GPLv2+|compat=0.10.x|description=Panoramic view of the station installed at Dome C, Antarctica.}}&lt;br /&gt;
&lt;br /&gt;
===Special===&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/simple.jpg|url=http://www.stellarium.org/files/landscapes/simple.zip|name=Simple|author=[http://astro.uni-altai.ru/~aw/ Alexander Wolf]|license=Public Domain|compat=0.10.x|description=Simple semi-transparent texture for Stellarium.}}&lt;br /&gt;
&lt;br /&gt;
==Contributions==&lt;br /&gt;
Please feel free to contribute your own custom landscapes here.   Make thumbnails 200x114 pixels to fit with the rest of the page.  Please include a location section in your landscape.ini file with the longitude, latitude, altitude and planet for the location of the landscape (see one of the pre-existing landscapes for an example).&lt;br /&gt;
&lt;br /&gt;
To find out more about how to create a landscape, see the [http://www.porpoisehead.net/mysw/stellarium_user_guide_html-0.9.1-1/#SECTION00670000000000000000 Stellarium User Guide], and examine existing landscapes.  If you are having problems, posting to the forums is a good way to get some advice.&lt;br /&gt;
&lt;br /&gt;
===Important note on image dimensions===&lt;br /&gt;
'''IMPORTANT: Make sure all textures have dimensions which are integer powers of 2, i.e. 256, 512, 1024, 2048, 4096, 8192, 16384, ...   e.g. 4096 by 1024, 2048 by 2048 and so on.'''&lt;br /&gt;
&lt;br /&gt;
This is a limitation of OpenGL.  Some video hardware will work OK with images with different image dimensions, but many will not display properly, suffer vastly reduced frame rates, and even crash the computer.  &lt;br /&gt;
&lt;br /&gt;
'''Please make sure all contributed landscapes conform to these requirements, or your link may be removed.'''&lt;br /&gt;
&lt;br /&gt;
Be aware that many people's video hardware cannot handle very large textures.  This is hardware and driver dependent.  A typical maximum image size is 2048x2048 or 4096x4096.&lt;br /&gt;
&lt;br /&gt;
===Package contents===&lt;br /&gt;
Please package your landscape in a .zip file with all files inside a directory in the .zip file.  This should be unique to your landscape, and it would be nice it it was all lower-case with no spaces.  &lt;br /&gt;
&lt;br /&gt;
You should also include a readme.txt file which describes the landscape and specifies any usage restrictions or licensing terms for the images used in the landscape.  &lt;br /&gt;
&lt;br /&gt;
===Licensing===&lt;br /&gt;
Before you distribute images as part of a Stellarium landscape, please ensure you are legally entitled to - you must be the copyright holder for the images, or be able to distribute them for use with Stellarium under the terms of some agreement with the copyright holder (e.g. Creative Commons licensed images found on the web).&lt;br /&gt;
&lt;br /&gt;
It is important to explicitly state what use may be made of images for your landscape.  This should be done in the readme.txt file inside the .zip file.&lt;br /&gt;
&lt;br /&gt;
We recommend an open source license compatible with Stellarium itself (i.e. the GNU GPL), or one of the Creative Commons licenses.  &lt;br /&gt;
&lt;br /&gt;
===Example package contents===&lt;br /&gt;
&lt;br /&gt;
From the Mars Husband Hill landscape:&lt;br /&gt;
&lt;br /&gt;
 Archive:  landscape_mars_husband_hill.zip&lt;br /&gt;
   Length     Date   Time    Name&lt;br /&gt;
  --------    ----   ----    ----&lt;br /&gt;
   1815308  02-05-07 21:02   mars_husband_hill/husband_hill.png&lt;br /&gt;
       211  05-28-07 19:44   mars_husband_hill/landscape.ini&lt;br /&gt;
      1096  06-04-07 15:21   mars_husband_hill/readme.txt&lt;br /&gt;
  --------                   -------&lt;br /&gt;
   1816615                   3 files&lt;br /&gt;
&lt;br /&gt;
The readme.txt file should look something like this:&lt;br /&gt;
&lt;br /&gt;
 Mars Husband Hill Landscape for Stellarium&lt;br /&gt;
 ==========================================&lt;br /&gt;
 &lt;br /&gt;
 Description&lt;br /&gt;
 -----------&lt;br /&gt;
 &lt;br /&gt;
 This landscape was taken from the NASA Spirit Rover on Mars.&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 Files&lt;br /&gt;
 -----&lt;br /&gt;
 &lt;br /&gt;
 This file (readme.txt) should have come in a zip file with some others&lt;br /&gt;
 Here is a listing of all the files which should be in the zip file:&lt;br /&gt;
 &lt;br /&gt;
   mars/readme.txt&lt;br /&gt;
   mars/landscape.ini&lt;br /&gt;
   mars/husband_hill.png&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 Installation &amp;amp; Use&lt;br /&gt;
 ------------------&lt;br /&gt;
 &lt;br /&gt;
 Unzip the landscape package file in your personal stellarium data&lt;br /&gt;
 directory, or the &amp;lt;config_root&amp;gt;/landscapes directory.  The location&lt;br /&gt;
 varyies depending on your operating system.  See the Stellarium&lt;br /&gt;
 User Guide for per-platform details.&lt;br /&gt;
 &lt;br /&gt;
 Once you have installed the landscape, open Stellarium and go to the&lt;br /&gt;
 configuration dialog.  Select the landscapes tab, and select the landscape&lt;br /&gt;
 from the list of available landscapes.&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 Credits&lt;br /&gt;
 -------&lt;br /&gt;
 &lt;br /&gt;
 Image credit: NASA/JPL-Caltech/Cornell&lt;br /&gt;
 http://marsrovers.jpl.nasa.gov/gallery/panoramas/opportunity/index.html&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 License&lt;br /&gt;
 -------&lt;br /&gt;
 &lt;br /&gt;
 NASA Images are released into the public domain&lt;br /&gt;
&lt;br /&gt;
===File encoding===&lt;br /&gt;
The landscape.ini and readme.txt files should be UTF-8 encoded text or plain ASCII.  It's probably a good idea to adopt the Windows line ending encoding, (i.e. CR LF).  Both Windows and *nix style line ending encoding should work OK in Stellarium, but Windows users will have an ugly time reading the readme.txt if it uses *nix-style newlines.&lt;br /&gt;
&lt;br /&gt;
===Need hosting?===&lt;br /&gt;
&lt;br /&gt;
If you have a landscape you would like to share but have no web-space to put it, email [[User:matthewg42|me]] and I'll put it on [http://porpoisehead.net/ my site].&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
*[[Landscape Rotation]] - how to set landscape rotation so that a certain point is due north&lt;br /&gt;
*The user guide, section 5.7: [[Customising Landscapes]]&lt;br /&gt;
&lt;br /&gt;
==Tools==&lt;br /&gt;
The following tools may be useful to people who wish to create their own landscapes:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| width=15% | '''Program''' || width=20% | '''Platform(s)''' || width=15% | '''License''' || width=40% | '''Notes''' &lt;br /&gt;
|-&lt;br /&gt;
|[http://www.cs.ubc.ca/~mbrown/autostitch/autostitch.html Autostitch] &lt;br /&gt;
| Windows; may also run on Linux using [http://www.winehq.org/ Wine]&lt;br /&gt;
| Shareware/demo &lt;br /&gt;
| Looks like it produces good results.  Registered version includes extra types of projection.  No source code.&lt;br /&gt;
|-&lt;br /&gt;
|[http://hugin.sourceforge.net/ Hugin] &lt;br /&gt;
| Linux; FreeBSD; MacOSX; Windows&lt;br /&gt;
| Free/open source (GNU GPL)&lt;br /&gt;
| Hugin is a nice GUI for Panorama Tools&lt;br /&gt;
|-&lt;br /&gt;
||[http://webuser.fh-furtwangen.de/~dersch/ Panorama Tools]&lt;br /&gt;
| Linux; FreeBSD; MacOSX; Windows&lt;br /&gt;
| Free/open source (GNU GPL)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Microsoft's [http://research.microsoft.com/en-us/um/redmond/groups/ivm/ICE/ Image Composite Editor]&lt;br /&gt;
| Windows&lt;br /&gt;
| Free (costless) &lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
*[http://stargazerslounge.com/primers-tutorials/122628-tutorial-custom-stellarium-landscapes.html Tutorial: Custom Stellarium landscapes], thread at the Stargazers Lounge forum&lt;br /&gt;
*[http://www.cloudynights.com/ubbthreads/showflat.php/Number/3759113/ Stellarium landscape image of my back porch], thread at the Cloudy Nights forum (discusses using a home-made fish-eye lens from a peep-hole to create a &amp;quot;fisheye&amp;quot; landscape)&lt;br /&gt;
&lt;br /&gt;
[[Category:Landscapes]]&lt;br /&gt;
[[Category:Customization]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Landscapes</id>
		<title>Landscapes</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Landscapes"/>
				<updated>2012-12-08T11:55:16Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: /* Europe */ Licence change&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==How to install landscapes==&lt;br /&gt;
After you have downloaded the .zip file for a landscape from this page, you need to install it in Stellarium.&lt;br /&gt;
&lt;br /&gt;
===Automatic===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;http://www.stellarium.org/wikiimg/stellarium-0-11-1/add-remove-landscapes-button.png&amp;lt;/div&amp;gt;&lt;br /&gt;
If you have Stellarium 0.10.6 or later version, you can use the &amp;quot;Add/remove landscapes&amp;quot; feature to install landscapes automatically:&lt;br /&gt;
*Open the &amp;quot;Sky and viewing options&amp;quot; window by clicking on the appropriate button in the left button bar (or press the F4 key).&lt;br /&gt;
*The &amp;quot;Add/remove landscapes&amp;quot; button is at the bottom of the &amp;quot;Landscape&amp;quot; tab.&lt;br /&gt;
*When you press it, the &amp;quot;Add/remove landscapes&amp;quot; window will appear. It allows you to install &amp;lt;tt&amp;gt;.zip&amp;lt;/tt&amp;gt; files containing landscapes. It also lists the user-installed landscapes and allows you to remove them.&lt;br /&gt;
&lt;br /&gt;
Note that while this makes installing landscapes easier, it may also cause you to overlook what else is included in the ZIP archive. Landscape packages created without this feature in mind may contain other files, such as alternative textures in different sizes.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;align:center&amp;quot;&amp;gt;http://www.stellarium.org/wikiimg/stellarium-0-11-1/add-remove-landscapes-window.png&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Manual===&lt;br /&gt;
If you are using an earlier version of Stellarium, you can follow this procedure to install a landscape package:&lt;br /&gt;
#Browse to your [[User Data Directory]], which varies according to your operating system. (eg. in Windows Vista/7 enter  %appdata%\stellarium in Explorer's location bar )&lt;br /&gt;
#Create a sub-directory called ''landscapes'' in your user directory (if it doesn't exist).&lt;br /&gt;
#Unzip the landscape .zip file in the ''landscapes'' directory (if it's done right, a sub-directory should be created for each landscape).&lt;br /&gt;
&lt;br /&gt;
NOTE: Older version of Stellarium (prior to v0.9.0) used a slightly different mechanism for doing landscapes. You can find a list of the old landscapes [[Landscapes pre 0.9.0|here]].&lt;br /&gt;
&lt;br /&gt;
Since version 0.10.5 Stellarium has problems in correctly loading old style landscapes (multi panel) if they are not 8 or 16 panel panoramas. Some old 4,7,9 qnd 10 side panoramas converted into 8 ides can be found here &lt;br /&gt;
*[http://sarcasmogerdes.dyndns.org/stellarium/uploads/wiruna-field.zip] (Wiruna field Barry's site)&lt;br /&gt;
*[http://sarcasmogerdes.dyndns.org/stellarium/uploads/egarden-new.zip] (Egarden 8 panel Barry's site)&lt;br /&gt;
*[http://sarcasmogerdes.dyndns.org/stellarium/uploads/neven-new.zip] (Como area Sydney Barry's site)&lt;br /&gt;
&lt;br /&gt;
==User contributed landscapes (by continent)==&lt;br /&gt;
We have landscapes for the seven continents (in the [http://en.wikipedia.org/wiki/Continent seven continent model]) - all, including from Antarctica !&lt;br /&gt;
===Interplanetary===&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/husband-hill.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_mars_husband_hill.zip|name=Husband Hill, Mars|author=Johan|license=Public Domain|compat=0.9.x|description=Johan transformed this Mars image from NASA into a spherical panorama that can be used with Stellarium.  Mars rover Spirit made this image during August 24 to 27, 2005. Image credit: NASA/JPL-Caltech/Cornell. Read more on [http://marsrovers.nasa.gov/gallery/panoramas/spirit/2005.html this webpage].}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/landscape_marsopportunity_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_mars_opportunity_rover.zip|name=Mars Opportunity Rover|author=Mike|license=Public Domain|compat=0.9.x|description=Mike sent posted this landscape in the forums.  Another nice Mars rover landscape.}}&lt;br /&gt;
 &lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_iss_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_iss.zip|name=International Space Station|author=Makc|license=GPL|compat=0.9.x|description=Landscape made using some screen shots and data from the wonderful [http://www.shatters.net/celestia/ Celestia].  Set the projection mode to stereographic, zoom out to a wide field of view and point down towards the ground to get the nice rounded &amp;quot;planet&amp;quot; effect.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_apollo_11_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_apollo_11.zip|name=Apollo 11 landing site|author=Mathew Myrup|compat=0.9.x|description=This landscape is made using NASA photographs taken by Buzz Aldrin. Look down and you can see Buzz's footprints :)}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_apollo_17_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_apollo_17.zip|name=Apollo 17 landing site|author=Mathew Myrup|compat=0.9.x|description=This landscape is made using NASA photographs taken by Gene Cernan.}}&lt;br /&gt;
&lt;br /&gt;
===Africa===&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/idehan.jpg|url=http://soyouzworld.free.fr/landscape/idehan.zip|name=Idehan Ubari, Libya|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|compat=0.10.x|description=This is a panoramic view of the desert of Idehan Ubari in Libya.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/leptis.jpg|url=http://soyouzworld.free.fr/landscape/leptis.zip|name=Leptis Magna, Libya|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|compat=0.10.x|description=This is a panoramic view of the theatre of the Roman city of Leptis Magna. This site is part of [http://whc.unesco.org/en/list/183 UNESCO World Heritage].}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/sahara.jpg|url=http://soyouzworld.free.fr/landscape/sahara.zip|name=Sahara, Libya|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|compat=0.10.x|description=This is a panoramic view from somewhere in the middle of the Sahara in Libya.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/waw-al-namus.jpg|url=http://soyouzworld.free.fr/landscape/waw-al-namus.zip|name=Volcano Waw al-Namus, Libya|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|compat=0.10.x|description=This is a panoramic view of Volcano Waw al-Namus in the Sahara.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.domani.ch/masoala/en/capmasoala_thumb.jpg|url=http://www.domani.ch/masoala/en/cap_masoala.zip|name=Cap Masoala, Madagascar|author=Matthias D. Frei|license=GPLv2+|compat=0.9.x|description=This panorama was photographed from the abandoned French lighthouse at the southernmost point of the Masoala peninsula in Madagascar. It provides a spectacular view over the Indian Ocean and the Masoala peninsula that is still mainly covered with rainforest. More information about this particular place can be found  [http://www.domani.ch/masoala/en/index.html here]}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_mbabane_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_mbabane.zip|name=Mbabane, Swaziland|author=Quinton Reissmann|compat=0.9.x|description=Mbabane is the capital of the little kingdom of Swaziland. Waterford/Kamhlaba is an international school on a mountain side which prides itself in cultural diversity. In SiSwati &amp;quot;kamhlaba&amp;quot; means &amp;quot;a world in miniature&amp;quot;. The actual view is from the sports field where we usually set up the telescope.}}&lt;br /&gt;
&lt;br /&gt;
===Asia===&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_everest_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_everest.zip|name=Mount Everest|author=Makc|license=&amp;amp;copy;|compat=0.9.x|description=Amazing parorama of the summit of Mount Everest, 8.85 km above sea level.  [http://www.everestviews.com/ Roddy Mackenzie], who climbed the mountain in 1989, captured the image.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_jantar_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_jantar.zip|name=Jantar Mantar|author=Barry Perlus &amp;amp; Stellarium team|license=CC BY-NC-SA 3.0|compat=0.9.x|description=Professor Barry Perlus of Cornell University allowed us to use his panoramic photography of one of the Jantar Mantars in India to create this landscape.  For more information on these fascinating scientific and architectural works see [http://jantarmantar.org/ jantarmantar.org].}}&lt;br /&gt;
&lt;br /&gt;
===Australasia===&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/beaumont-hills.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_beaumont_hills.zip|name=Beaumont Hills, Sydney, Australia|author=Barry Gerdes|license=GPLv2+|compat=0.9.x|description=Barry made an interesting multiple-image landscape from the rooftop of his house. You can find a detailed account of how this was done in the [http://porpoisehead.net/mysw/stellarium_user_guide_html-0.9.0-1/#SECTION001100000000000000000 Stellarium User Guide].}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/transit-hill.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_transit_hill.zip|name=Transit Hill, Lord Howe Island, Australia|author=Graeme Ewing|compat=0.9.x|description=Graeme Ewing Contributed this panorama of the astronomically significant and visually stunning Transit Hill site Northeast of Sydney, Australia. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_penneshaw_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_penneshaw.zip|name=Penneshaw, Kangaroo Island, Australia|author=Clive Nelson|compat=0.9.x|description=Penneshaw is a small township at the Northwest end of Kangaroo Island, off the coast of South Australia. In the north is the entrance to Gulf St Vincent and the Australian mainland. In the east is the Penneshaw township, To the west, on the horizon, is Kingscote, the main town on Kangaroo Island.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_largsbay_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_largsbay.zip|name=Largs Bay in South Australia|author=Martin Lewicki|license=GPL|compat=0.9.x|description=Panoramic view of Largs Bay in South Australia 8 panel old style landscape. Largs Pier Hotel facade in SSE and Largs Bay Sailing Club due east. Jetty extends to Gulf St Vincent to the west.}}&lt;br /&gt;
&lt;br /&gt;
===Europe===&lt;br /&gt;
{{Package|image=http://www.observatoire-naef.ch/assets/files/ependes-thumbnail.png|url=http://www.observatoire-naef.ch/assets/files/ependes.zip|name=Épendes Observatory, Fribourg, Switzerland|author=[http://www.stellarium.org/wiki/index.php/User:Mina Nicolas Martignoni]|license=CC BY-ND 3.0|compat=0.10.x|description=The [http://www.observatoire-naef.ch/ Épendes Observatory] (44°44′01″N 7°08′25″E) is located near the city of Fribourg, Switzerland. The images for this landscape were taken in August 2006. File size is about 1.7 MB.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://michael.nadev.net/pub/wurania.png|url=http://michael.nadev.net/pub/wurania.zip|name=Urania Observatory, Vienna, Austria|author=Michael Prokosch|license=CC BY-ND 3.0|compat=0.9.x|description=The [http://www.astronomie-wien.at/astronomie_urania.html Urania Observatory] (48°12′41.88″N 16°23′1.53″E) is located right in the middle of the city of Vienna, capital of Austria. Built in 1910 under emporer Franz Joseph I. it's the countries oldest non-scientifical observatory still in use for people's education. This landscape was taken in August 2011. If you are not distracted by the stars, you can even see St. Stephan's cathedral, the Viennese Giant Wheel and the Danube Canal. File size is about 11.5 MB.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://perso.wanadoo.es/arias_llego/stellarium/laguardia/Thumbnail.png|url=http://perso.wanadoo.es/arias_llego/stellarium/laguardia/laguardia.zip|name=Port of La Guardia, Galicia, Spain|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=CC BY-NC-ND 3.0|compat=0.10.x|description=La Guardia is a fishing village in Galicia, in the NW. of Spain. This landscape was taken on the 19/07/2008. '''[http://perso.wanadoo.es/arias_llego/stellarium/laguardia/Port_of_La_Guardia.kmz KMZ file]'''. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/Thumbnail.png|url=http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/castrolaboreiro.zip|name=Castle of Castro Laboreiro 13th Century, Melgaço, Portugal|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=CC BY-NC-ND 3.0|compat=0.10.x|description=Castro Laboreiro is a village in Melgaço, in the NW. of Portugal. This landscape was taken on the 15/08/2010. '''[http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/Castle_of_Castro_Laboreiro.kmz Kmz file]'''. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.cestomano.com/stellarium/thumbnail.png|url=http://www.cestomano.com/stellarium/lascanadas.zip|name=Las Cañadas del Teide, Tenerife, Spain|author=[http://www.cestomano.com José Ángel Estévez]|license=|compat=0.10.x|description=This landscape of Las Cañadas was built in April 2008. It's located in the center of Tenerife island, Canary Islands. It can be viewed the Teide volcano -the highest mountain in Spain: 3.718 mts.-, El Llano de Ucanca and Los Roques de García with the characteristic rock &amp;quot;El Cinchado&amp;quot; which, with Teide Volcano, appeared in the old 1.000 ptas. bill. &lt;br /&gt;
&lt;br /&gt;
'''Note:''' If you have problems with the landscape (landscape may not appear because low memory on VGA chip), try to download and replace the PNG landscape with [http://www.cestomano.com/stellarium/peq/lascanadas.png this 50% scaled image]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.waldvogel.com/stellarium/landscape_jungfraujoch_tmb.png|url=http://www.waldvogel.com/stellarium/landscape_jungfraujoch.zip|name=Jungfraujoch High Altitude Research Station, Switzerland|author=Christian Waldvogel|license=|compat=0.10.x|description=Lying at 3580m in the Bernese Alps, the Jungfraujoch is often dubbed &amp;quot;Top of Europe&amp;quot;. It has been home to an astronomical observation station for more than 80 years. The spherical landscape was created from 20 images taken on June 29th, 2008, at 1015, from the lower terrace of the Sphinx Obervatory. The landscape comes in three resolutions (1024 / 2048 / 4096). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/San_Pietro.jpg|url=http://www.stellarium.org/files/landscapes/San_Pietro.zip|name=St Peter's Square (Vatican)|author=Gianfranco Mazzani|license=|compat=0.10.x|description=This is a complete high resolution panoramic view of the St Peter's Square, City of Vatican. &lt;br /&gt;
&lt;br /&gt;
Gianfranco Mazzani photographed this panorama in july 2004 by using a Nikon Coolpix 8700, and stitched &lt;br /&gt;
the original 10 pictures together into a spherical panorama using Hugin program. The panorama has been &lt;br /&gt;
than cutted into 8 alfa channel pictures and re-dimensioned the width to 2048 pixel and then dimensioned &lt;br /&gt;
the height to 32 cm by using Photoschop elements 2.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.waldvogel.com/stellarium/landscape_rodiano_tmb.png|url=http://www.waldvogel.com/stellarium/landscape_rodiano.zip|name=Frantoio Rodiano, Italy|author=Christian Waldvogel|license=|compat=0.10.x|description=The Frantoio Rodiano (Rodiano oil press) is situated on the foot of Mount Gargano in Puglia / Italy. Just a few kilometers uphill lies Monte Sant'Angelo, the famous stop for christian pilgrims on their way to Jerusalem. Stargazing has been kin to this region for milleniae: the oldest graves found in the Frantoio's vicinity date back to pre-etruscan times, and the famous Castel del Monte, an astronomical observation in itself, is not far either. The spherical landscape was created from 8 images taken on September 20th, 2010, at 1707, from the uppermost terrace of the Frantoio Rodiano. The landscape comes in three resolutions (1024 / 2048 / 4096). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://pano.jubila.de/stellarium/muchachos_thumb.jpg|url=http://pano.jubila.de/stellarium/muchachos.zip|name=Roque de los Muchachos, La Palma, Spain|author=Uwe Buecher|license=|compat=0.10.x|description=This high resolution landscape was built with hugin from 20 photos taken in October 2007. It is located on top of the highest mountain on La Palma, Canary Islands. You can see the Buildings of the Observatorio del Roque de los Muchachos, one of them is the Gran Telescopio Canarias (GTC) which is the greatest telescope in the world today (10.4m diameter). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_egarden_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_egarden.zip|name=English Garden, Munich, Germany|author=Rob Spearman, Johan Meuris|license=|compat=0.9.x|description=This high resolution landscape was taken in April 2007 by Rob. Johan helped with the post production.  The result is a very high quality landscape. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_egarden_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_egarden_old_style.zip|name=English Garden, Munich, Germany|author=Rob Spearman, Johan Meuris|license=|compat=0.9.x|description=The original English Garden landscape was re-constructed by Barry Gerdes as an old_style landscape.  This means that it can be used with video hardware which cannot cope with single very large texture files, and yet preserves the resolution of the landscape (by splitting the images into multiple files). Try this is the original English Garden landscapes doesn't load on your computer. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/voksenlia.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_voksenlia.zip|name=Voksenlia, Oslo, Norway|author=Steinar Midtskogen|license=|compat=0.10.x|description=Steinar Midtskogen sent [http://porpoisehead.net/mysw/downloads/voksenlia.png this huge (17 MiB!) spherical landscape image] of Voksenlia, Oslo, Norway (59°58'14N, 10°38'57E, alt=348m). (Currently not working with version 0.9.0). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/observatory-hill-Barry.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_edinburgh.zip|name=Calton Hill, Edinburgh, Scotland|author=Friedrich Noelle, Barry Gerdes|license=|compat=0.9.x|description=Friedrich Noelle took a nice panorama of Observatory Hill, Edinburgh which Barry converted into a Stellarium landscape. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/sight_thumb.jpg|url=http://www.geomancygroup.org/stella/sighthill.zip|name=Sighthill stone circle, Glasgow, Scotland|author=[http://www.geomancygroup.org Grahame Gardner]|license=|compat=0.9.x|description=Sighthill stone circle is a modern stone ring constructed in 1979 by amateur astronomer and SF writer Duncan Lunan. Located next to the M8 motorway in Glasgow city centre, yet with surprisingly good views, the circle has alignments to the solsticial solar rises and settings and the lunar standstills. Alignments to the rising of Rigel are included for 1979 AD and 1800 BC. (2MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/beech_thumb.jpg|url=http://www.geomancygroup.org/stella/beechhill.zip|name=Beech Hill stone circle, nr. Nutley, E. Sussex, England|author=[http://www.geomancygroup.org Grahame Gardner]|license=|compat=0.9.x|description=Beech Hill is a modern stone ring constructed in 2000 by Ivan McBeth and Richard Creightmore of The Geomancy Group [http://www.geomancygroup.org/ www.geomancygroup.org]. Located in the Ashdown Forest, the circle's main alignment is to the Pole Star, denoted by the angled outlier. (2.2MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/calave_tb.jpg|url=http://www.geomancygroup.org/stella/calanaisave.zip|name=Calanais I (Callanish) Avenue, Lewis, Western Isles, Scotland|author=[http://www.geomancygroup.org Grahame Gardner]|license=|compat=0.9.x|description=Callanish is arguably the finest megalithic monument in the British Isles, and is just the largest site in a vast complex of interconnected monuments designed to observe the southern major standstills of the moon. From this position at the end of the avenue, the moon is seen to set behind the rocky outcrop of Cnoc-an-Tursa, only to 're-gleam' in the centre of the main circle a short time afterwards. (4MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/machrie_tb.jpg|url=http://www.geomancygroup.org/stella/machrie5.zip|name=Machrie Moor 5, Isle of Arran, Scotland|author=[http://www.geomancygroup.org Grahame Gardner]|license=|compat=0.9.x|description=This delightful little double-concentric stone circle is the first site you come to when visiting the Machrie Moor complex of megalithic sites on Arran. Although not the most spectactular site in the group, it is one of the most complete and has good views. (7.3MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/mitchthumbnail.jpg|url=http://www.geomancygroup.org/stella/mitchell2.zip|name=Mitchell's Fold stone circle, Shropshire, England|author=[http://www.vallecrucisgrail.co.uk/ Ian Pegler]|license=|compat=0.9.x|description=This wonderful ancient stone circle stands on a plateau amid the rolling Shropshire hills and is loved by walkers, dowsers and Wiccans alike. April 2010 - new version uploaded, featuring improved centre camera position based on Alexander Thom's geometry and improved alignments. (1.8MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/aveburyn_thumb.jpg|url=http://www.geomancygroup.org/stella/aveburynorth.zip|name=Avebury - North circle, Wiltshire, England|author=[http://www.vallecrucisgrail.co.uk/ Ian Pegler]|license=|compat=0.9.x|description=The North circle of the largest megalithic complex in Europe. In the background you can just make out the Red Lion pub. (1MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/vallecrucis_thumb.jpg|url=http://www.geomancygroup.org/stella/vallecrucis.zip|name=Valle Crucis Abbey, Llangollen, North Wales|author=[http://www.vallecrucisgrail.co.uk/ Ian Pegler]|license=|compat=0.9.x|description=This ruined Cistercian abbey dates to 1200 but may be the site of a much earlier Dark Age settlement with a very early Christian church. (2.5MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/ponta-da-piedade.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_lagos.zip|name=Ponta da Piedade, Algarve, Lagos, Portugal|author=Johan|license=|compat=0.9.x|description=Johan photographed this panorama in June 2006 and stitched it together into a spherical panorama that can be used with Stellarium.  You see sandstone cliffs on the Atlantic coast of southern Portugal, a lighthouse, and a natural bridge. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/landscape_gurnigel_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_gurnigel.zip|name=Gurnigel, Switzerland|author=Martin Mutti|license=|compat=0.9.x|description=This is the site of the Bern Astronomical Society's observing site. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/tishinka-ardashev.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_tishinka.zip|name=Tishinka, Russia|author=Dmitri Ardashev|license=|compat=0.9.x|description=This is a small village between Moscow's and Kaluga's regions, in 130 km south-west of Moscow (55°18'32.46N, 36°26'42.06E, alt=195). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_t60pic_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_t60pic.zip|name=T60 dome, Pic du Midi Observatory, France|author=Sylvain Rondi|license=|compat=0.9.x|description=Sylvain photographed this panorama in February 2007 and stitched it together into a spherical panorama that can be used with Stellarium. This is the panoramic view from the amateur 60cm telescope dome from [http://astrosurf.com/t60/ T60 Association], installed at Pic du Midi Observatory. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_t1mpic_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_t1mpic.zip|name=T1M terrasse, Pic du Midi Observatory, France|author=Sylvain Rondi|license=|compat=0.9.x|description=Sylvain photographed this panorama in February 2007 and stitched it together into a spherical panorama that can be used with Stellarium. This is the panoramic view from the terrasse of the professional 106cm telescope at Pic du Midi Observatory (France). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_sheffieldrivelin_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_sheffieldrivelin.zip|name=River Rivelin, Sheffield, UK|author=Jan Wedekind|license=CC SA-2.0|compat=0.9.x|description=This is a 270° fisheye panorama created from 40 photos using Hugin. It shows the River Rivelin in Sheffield in the middle of April 2007. The fringes (twigs and tree tops) where dimmed out using The Gimp. The overexposed parts of the horizon have been removed. Copyright (C) 2007, [[User:Wedesoft|Jan Wedekind]], [http://creativecommons.org/licenses/by-sa/2.0/ Creative Commons Attribution ShareAlike License 2.0] }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_ares_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_ares.zip|name=Ares, Galicia, Spain|author=[http://www.stellarium.org/wiki/index.php/User:rcasl Rubén Castiñeiras Lorenzo]|license=|compat=0.9.x|description=Ares is a small fishing village in Galicia, in the NW of Spain, close to the city of Ferrol. The 360 degree image was taken at the noon of August 6th, 2007, just in front of the &amp;quot;Paseo Rosalía de Castro&amp;quot;. It has been made with 17 photos, stitched with Hugin 0.7 beta 4 and retouched with the Gimp 2.2.17. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_ovindoli_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_ovindoli.zip|name=Ovindoli, Italy|author=Pierluigi Panunzi|license=|compat=0.9.x|description=Ovindoli is a famous ski resort in central Italy. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/rustrel.jpg|url=http://soyouzworld.free.fr/landscape/rustrel.zip|name=Rustrel, France|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Colorado de Rustrel in &amp;quot;Les Sentiers de l'Ocre et du Fer&amp;quot;, Provence, France. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://files.myopera.com/aid85/files/host/Stintino.jpg|url=http://files.myopera.com/aid85/files/host/stintino.zip|name=Stintino, Italy|author=[http://my.opera.com/aid85 aid85]|license=|compat=0.9.x|description=High resolution 360° landscape taken at &amp;quot;LaPelosa&amp;quot; beach in Stintino (SS) Sardinia \ Italy - Europe \ Mediterranean Sea. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/vatican.jpg|url=http://soyouzworld.free.fr/landscape/vatican.zip|name=St Peter's Square, Vatican|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the St Peter's Square. City of Vatican. Some parts of the buildings are missing, not enough pictures... This site is part of [http://whc.unesco.org/en/list/286 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://files.myopera.com/aid85/files/host/Larvotto.jpg|url=http://files.myopera.com/aid85/files/host/munegu.zip|name=Munegu, MC|author=[http://my.opera.com/aid85 aid85]|license=|compat=0.9.x|description=High resolution 360° landscape taken at Larvotto beach in [http://en.wikipedia.org/wiki/Monaco Munegu \ Monaco - MC] (MonteCarlo) - Europe \ Mediterraneum Sea - Ligurian Sea. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/Bahia_de_Cadiz.jpg|url=http://www.stellarium.org/files/landscapes/Bahia_de_Cadiz.zip|name=Bahia de Cádiz, Spain|author=José Codejón|license=|compat=0.10.x|description=A new bridge is being built across de bay. The 360° panorama image was taken at noon of September 10th, 2012, from the pier of the small marina just closed to the Cadiz head of the bridge. &lt;br /&gt;
&lt;br /&gt;
The final picture is the result of stitching 11 frames, taken out of a 63 seconds full HD video, using PhotoStitch and Gimp 2.6.8. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.ticfisquim.org/astro/stellarium/thumbnails.jpg|url=http://www.ticfisquim.org/astro/stellarium/cocentaina.zip|name=Cocentaina, Spain|author=[http://www.ticfisquim.org Angel Juan Martínez]|license=|compat=0.9.x|description=This is a panoramic view from the roof of the Secondary School of Cocentaina, a little town of the Pais Valencià (Spain), in the mountains that are between Valencia and Alicante, where I teach Astronomy with the help of Stellarium. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.xs4all.nl/~adonet/stellarium/tulipfield.jpg|url=http://www.xs4all.nl/~adonet/stellarium/tulipfield.zip|name=Amstelveen, The Netherlands|author=[http://www.xs4all.nl/~adonet/stellarium/stellarium.html Jeroen Adolfse]|license=|compat=0.9.x|description=This landscape shows the tulipfields in spring (may 2008) in Schagerbrug, North Holland. It's an old_style landscape. (file is 4.5 Mb) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.didgeweb.com/stellarium/oudmeer_sample.png|url=http://www.didgeweb.com/stellarium/son_oudmeer.zip|name=Son &amp;amp;amp; Breugel, The Netherlands|author=[http://www.didgeweb.com/ Roland Mathijssen]|license=|compat=0.9.x|description=This landscape shows the Oude Meer (Old Lake) in the Sonse Heide in Son (close to Eindhoven). (file is 5.4 MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.obs-sirene.com/divers/stellarium/sirene.png|url=http://www.obs-sirene.com/divers/stellarium/sirene.zip|name=Sirene Observatory, Lagarde d'Apt (84), France|author=[http://cyprien.pouzenc.free.fr Cyprien Pouzenc]|license=|compat=0.9.x|description=Panoramic view of installations. Previously the site was used as a nuclear lauching pad. Now days, [http://www.obs-sirene.com Sirene] accepts everybody for astronomical observations. (File is 11 Mb) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.nett.is/~sveinki/stellarium/vonarskard-tn.png|url=http://www.nett.is/~sveinki/stellarium/vonarskard.zip|name=Vonarskar&amp;amp;eth;, Passage of Hope, Iceland|author=[http://www.nett.is/~sveinki/stellarium/ Sveinn &amp;amp;iacute; Felli]|license=|compat=0.9.x|description=This is the geographical center of Iceland, a barren pass between glaciers. Being sheltered from southern vinds by the huge Vatnajökull glacier, a great cold mass which then eliminates most humididy from the air, makes the place unusually good for stargazing. Old-style landscape, resolution is a bit low. (File is 1.1 Mb) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.brontovox.co.uk/Downloads/woodhenge_winter_solstice_sunset_ts.png|url=http://www.brontovox.co.uk/Downloads/woodhenge.zip|name=Woodhenge near Stonehenge|author=[http://www.brontovox.co.uk Hugo Jenks]|license=|compat=0.9.x|description=Woodhenge near Stonehenge was constructed around 2200 BC. It comprised numerous wooden posts set into the chalky ground. These posts of course decayed, and their positions today are marked with concrete cylinders. &lt;br /&gt;
&lt;br /&gt;
The posts are arranged, in plan view, as a series of concentric egg shapes. The axis of the egg shapes aligns approximately with summer solstice sunrise. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.brontovox.co.uk/Downloads/stonehenge_screenshot_st.jpg|url=http://www.brontovox.co.uk/Downloads/stonehenge.zip|name=Stonehenge|author=[http://www.brontovox.co.uk Hugo Jenks]|license=|compat=0.9.x|description=Was it an observatory? Yes indeed it was!  The alignment of the monument with the summer solstice sunrise has been well known for many years. The alignment with the winter solstice sunset may have been more significant. For the first time, many additional alignments are published, and are detailed here:  [http://www.brontovox.co.uk/ www.brontovox.co.uk] These alignments demonstrate that Stonehenge was primarily a functional scientific instrument, used for measuring angles. The angles of interest were the rising and setting bearings of the sun, moon, and stars. It was therefore possible to map the entire visible sky. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/rila.jpg|url=http://soyouzworld.free.fr/landscape/rila.zip|name=Rila Monastery, Bulgaria|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Rila Monastery in Bulgaria. This building is quite high so the sky area is not really large. This site is part of [http://whc.unesco.org/en/list/216 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://bg360.net/stellarium/silistar.jpg|url=http://bg360.net/stellarium/silistar.zip|name=Silistar, Bulgaria|author=[http://bg360.net BG360]|license=|compat=0.9.x|description=Panoramic view of the Silistar Beach in Bulgaria. See this panorama here [http://pano.bg360.net/silistar/index_en.php Flash pano]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://bg360.net/stellarium/alexandernevsky.jpg|url=http://bg360.net/stellarium/alexandernevsky.zip|name=St. Alexander Nevsky Cathedral, Sofia, Bulgaria|author=[http://bg360.net BG360]|license=|compat=0.9.x|description=Panoramic view of the Saint Alexander Nevsky Cathedral in Bulgaria. See this panorama here [http://pano.bg360.net/sofia/alexander-nevsky_en.php Flash pano]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://bg360.net/stellarium/rousse.jpg|url=http://bg360.net/stellarium/rousse.zip|name=Statue of Freedom, Rousse, Bulgaria|author=[http://bg360.net BG360]|license=|compat=0.9.x|description=Panoramic view from the center of Rousse in Bulgaria. See this panorama here [http://pano.bg360.net/ruse/pametnik-svobodata_en.php Flash pano]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/thumbnail-dm.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/dm.zip|name=Central Munich|author=Markus Dähne|license=|compat=0.9.x|description=This landscape shows the view from the Eastern observatory of the [http://www.beobachtergruppe.com Deutsches Museum] in Munich, Germany.  During public observing sessions, Stellarium is used to help explain the sky :-) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_leist_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_leist.zip|name=Leist, Switzerland|author=Bernd Lang|license=|compat=0.9.x|description=This landscape was developed from a panoramic picture of the Leist in Switzerland (2222m).  The picture was taken during a [http://www.panoramio.com/user/1437658 hiking tour] from Tanenboden to the top of the Leist. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_stonehenge_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_stonehenge.zip|name=Stonehenge, England|author=[http://www.freetadel.blogspot.com/ Fernando]|license=|compat=0.9.x|description=This landscape depicts Stonehenge - the famous prehistoric monument in Wiltshire, Southern England. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/avignon.jpg|url=http://soyouzworld.free.fr/landscape/avignon.zip|name=Place du Palais des Papes, Avignon|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Place du Palais des Papes in Avignon.  France. This site is part of [http://whc.unesco.org/en/list/228 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/avignonb.jpg|url=http://soyouzworld.free.fr/landscape/avignonb.zip|name=Le Pont d'Avignon, Avignon|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Pont d'Avignon (aka Bridge Saint-Bénezet) in Avignon.  France. This site is part of [http://whc.unesco.org/en/list/228 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/orange.jpg|url=http://soyouzworld.free.fr/landscape/orange.zip|name=Roman Theatre of Orange|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Roman Theatre of Orange- France. This site is part of [http://whc.unesco.org/en/list/163 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_cambridge_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_cambridge.zip|name=Centre for Mathematical Sciences, Cambridge, UK|author=[http://www.srcf.ucam.org/~mh519/ Matt Hickford]|license=|compat=0.9.x|description=Panorama from the grassy roof of the Centre for Mathematical Sciences, Cambridge University, UK in March. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_grantchester_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/grantchester.zip|name=Grantchester Meadows, Cambridgeshire, UK|author=[http://www.srcf.ucam.org/~mh519/ Matt Hickford]|license=|compat=0.9.x|description=Panorama from Grantchester Meadows, Cambridgeshire, UK in March. Flat horizon. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_areeiro_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_areeiro.zip|name=Pico do Areeiro|author=Filipe Gomes|license=|compat=0.9.x|description=This is a panoramic view of the [http://pt.wikipedia.org/wiki/Pico_do_Arieiro Pico do Areeiro], the second highest point of the island.  Madeira Island - Portugal. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_caniga_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_caniga.zip|name=Caniga Country|author=[http://www.flickr.com/photos/25710744@N03/2672852380/ Andrea Pittalis]|license=|compat=0.9.x|description=This landscape was taken from the Caniga Country, near Sassari in Sardinia, Italy. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.under-a-dark-sky.com/stellarium/cdn-landscape.jpg|url=http://www.under-a-dark-sky.com/stellarium/cdn.zip|name=Cuevas del Negro, Andalucia|author=Peter Lynch|license=|compat=0.9.x|description=A nearly flat rural landscape in southern Spain. The site has very dark skies and a view down to about 3&amp;amp;deg; to the south. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.astrosurf.com/aaaov/landscape/landscape_aaaov_thumb.jpg|url=http://www.astrosurf.com/aaaov/landscape/aaaov.zip|name=Astronomes Amateurs Aixois Observatoire Vauvenargues (AAAOV) - France|author=[http://www.astrosurf.com/aaaov AAAOV]|license=|compat=0.9.x|description=Vauvenargues Observatory located near Aix-en-Provence, France. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.astrosurf.com/aaaov/landscape/landscape_baie_saint_michel_thumb.jpg|url=http://www.astrosurf.com/aaaov/landscape/baie_saint_michel.zip|name=Astronomes Amateurs Aixois Observatoire Vauvenargues (AAAOV) - France|author=[http://www.astrosurf.com/aaaov AAAOV]|license=|compat=0.9.x|description=Saint Michel Bay - Serre Ponçon lake, Alpes - France. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_la_guardia_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_la_guardia.zip|name=La Guardia|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=|compat=0.9.x|description=La Guardia is a fishing village in Galicia, in the NW. of Spain. This landscape was taken on the 19/07/2008 at 12:38 p.m. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_uvalno_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_uvalno.zip|name=Uvalno, Czech Republic|author=|license=|compat=0.9.x|description=A view from a garden in the village of Uvalno, Czech Republic. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://astro.sentvid.org/stellarium/sentvid-thumbnail.png|url=http://astro.sentvid.org/stellarium/sentvid.zip|name=Šentvid, Ljubljana, Slovenia|author=|license=|compat=0.9.x|description=View from the roof of the observatory of Gymnasium Šentvid, Ljubljana, Slovenia. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://astronomia.zagan.pl/pliki/stellarium-moczyn.png|url=http://astronomia.zagan.pl/pliki/moczyn.zip|name=Poland,Zagan - sity Johannes Kepler|author=[http://astronomia.zagan.pl/articles.php?article_id=21 Jacek Patka]|license=|compat=0.9.x|description=View of the old quarter. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://perso.wanadoo.es/arias_llego/stellarium/laguardia/Thumbnail.png|url=http://perso.wanadoo.es/arias_llego/stellarium/laguardia/laguardia.zip|name=Port of La Guardia, Galicia, Spain|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=|compat=0.9.x|description=La Guardia is a fishing village in Galicia, in the NW. of Spain. This landscape was taken on the 19/07/2008.&lt;br /&gt;
&lt;br /&gt;
[http://perso.wanadoo.es/arias_llego/stellarium/laguardia/Port_of_La_Guardia.kmz Kmz file] }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/Thumbnail.png|url=http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/castrolaboreiro.zip|name=Castle of Castro Laboreiro 13th Century, Melgaço, Portugal|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=|compat=0.9.x|description=Castro Laboreiro is a village in Melgaço, in the NW. of Portugal. This landscape was taken on the 15/08/2010.&lt;br /&gt;
&lt;br /&gt;
Castle of Castro Laboreiro 13th Century, Melgaço, Portugal [http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/Castle_of_Castro_Laboreiro.kmz Kmz file] }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.cestomano.com/stellarium/thumbnail.png|url=http://www.cestomano.com/stellarium/lascanadas.zip|name=Las Cañadas del Teide, Tenerife, Spain|author=[http://www.cestomano.com José Ángel Estévez]|license=|compat=0.9.x|description=This landscape of Las Cañadas was built in April 2008. It's located in the center of Tenerife island, Canary Islands. It can be viewed the Teide volcano -the highest mountain in Spain: 3.718 mts.-, El Llano de Ucanca and Los Roques de García with the characteristic rock &amp;quot;El Cinchado&amp;quot; which, with Teide Volcano, appeared in the old 1.000 ptas. bill. &lt;br /&gt;
&lt;br /&gt;
'''Note:''' If you have problems with the landscape (landscape may not appear because low memory on VGA chip), try to download and replace the PNG landscape with [http://www.cestomano.com/stellarium/peq/lascanadas.png this 50% scaled image]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.waldvogel.com/stellarium/landscape_rodiano_tmb.png|url=http://www.waldvogel.com/stellarium/landscape_rodiano.zip|name=Frantoio Rodiano, Italy|author=Christian Waldvogel|license=|compat=0.9.x|description=The Frantoio Rodiano (Rodiano oil press) is situated on the foot of Mount Gargano in Puglia / Italy. Just a few kilometers uphill lies Monte Sant'Angelo, the famous stop for christian pilgrims on their way to Jerusalem. Stargazing has been kin to this region for milleniae: the oldest graves found in the Frantoio's vicinity date back to pre-etruscan times, and the famous Castel del Monte, an astronomical observation in itself, is not far either. The spherical landscape was created from 8 images taken on September 20th, 2010, at 1707, from the uppermost terrace of the Frantoio Rodiano. The landscape comes in three resolutions (1024 / 2048 / 4096). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/luene.jpg|url=http://www.ausgerechnet-jetzt.de/lueneburg.zip|name=Top of Water Tower of Lueneburg, Germany|author=Uwe Prolingheuer|license=|compat=0.9.x|description=This is a panoramic view from the top of old Water Tower 56m above ground, constructed 1906/07, in Lueneburg, a town with many retained medieval houses. Northern Germany. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/gas-gao.jpg|url=http://www.stellarium.org/files/landscapes/gas-gao.zip|name=GAS GAO, Russia|author=[http://www.kepler-observatorium.ru/ Andrey Kuznetsov]|license=|compat=0.10.x|description=Russia, Caucasus. The astronomical science station on the mountain Shadjatmaz. This is the view from amateur's observatory (by Andrey Kuznetsov, Sergey Kiselev). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/caucasus.jpg|url=http://www.stellarium.org/files/landscapes/caucasus.zip|name=Caucasus, Russia|author=[http://www.kepler-observatorium.ru/ Andrey Kuznetsov]|license=|compat=0.10.x|description=North Caucasus, Elbrus. }}&lt;br /&gt;
&lt;br /&gt;
===North America===&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/saltlakecity.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_salt_lake_city.zip|name=Salt Lake City Panorama|author=Hiram Bertoch|license=|compat=0.9.x|description=Hiram made this panorama for the KidsKnowIt Network's outreach program. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_sanjose_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_sanjose.zip|name=San Jose, California, USA|author=BrendaEM|license=|compat=0.9.x|description=This panorama was made using Nasa's WorldWind. Screenshots were taken at 45 degree increments. The screenshots were layered and stitched together, and then offset until the the Northern mountains were aligned. A landscape such as this could be made of any location in the world. There is a plug-in for WorldWind called &amp;quot;BigScreenshot,&amp;quot; that may make the process easier, but not automate it. A plug-in could be written to do this entire process automatically. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://trampleasure.net/science/solar-calendar/thumbnail.jpg|url=http://trampleasure.net/science/solar-calendar/landscape.ini|name=Berkeley, California, USA|author=Lee Trampleasure Amosslee|license=|compat=0.9.x|description=This panorama is centered at the [http://solarcalendar.org/ Cesar Chavez Memorial Solar Calendar] at the Berkeley Marina. The solar calendar has large stones that line up with the sunrises and sunsets at the equinoxes and solstices. [http://trampleasure.net/science/solar-calendar/chavez-solar-calendar-large.png 4096X2048 PNG photo, 8.3MB], or [http://trampleasure.net/science/solar-calendar/chavez-solar-calendar.png 2048x1024 PNG photo 2.1MB]. In the larger photo, I painted the Golden Gate bridge to make it stand out a bit more. Credits and location can be found in the [http://trampleasure.net/science/solar-calendar/landscape.ini landscapes.ini file]. Please include credits if you use/distribute this version.  }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.jrctech.net/landscapes/wiki-photos/tn_School-Image2.png|url=http://www.jrctech.net/landscapes/chesterton_school.zip|name=Chesterton Elementary School - San Diego, California, USA|author=[http://www.jrctech.net John Chester]|license=|compat=0.10.x|description=This landscape was taken to help encourage students to learn about science and astronomy using Stellarium.  The panorama was taken at the playground area of Chesterton Elementary School on October 23, 2011.  The image was constructed using the Multiple Image Method using 8 overlapping images to provide a high level of detail.  The original composite panorama image was 22442 (width) x 2418 (height) pixels .  Composite photo reduced to 5 equally sized photos of 2048 by 1024 pixels.  Many trees created complex horizon background but left details, such as tether-ball poles, in place during transparency development to keep landscape realistic.  The lines of the playground provide an interesting perspective with Stellarium. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/eltajin.jpg|url=http://soyouzworld.free.fr/landscape/eltajin.zip|name=El Tajin, Mexico|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the prehispanic city of El Tajin. Theses ruins are part of [http://whc.unesco.org/en/list/631 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/mexico.jpg|url=http://soyouzworld.free.fr/landscape/mexico.zip|name=Mexico Ciudad, Mexico|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Zocalo (Plaza de la Constitución) of Mexico Ciudad. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/uxmal.jpg|url=http://soyouzworld.free.fr/landscape/uxmal.zip|name=Uxmal, Yucatan, Mexico|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Cuadrangulo de las Monjas in Pre-Hispanic Town of Uxmal. This site is part of [http://whc.unesco.org/en/list/791 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://home.arcor.de/mdoege/pano/boulder_thumb.png|url=http://home.arcor.de/mdoege/pano/boulder.zip|name=University of Colorado at Boulder, Boulder, Colorado, USA|author=Martin C. Doege|license=|compat=0.9.x|description=View from Farrand Field at the [http://en.wikipedia.org/wiki/University_of_Colorado_at_Boulder University], with the [http://en.wikipedia.org/wiki/Flatirons Flatirons] to the southwest. (File is 2.9 Mb) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_jasperpyramidisland_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_jasperpyramidisland.zip|name=Jasper National Park, Alberta, Canada|author=[http://www.jasperdarksky.org/stellarium Rogier Gruys]|license=|compat=0.9.x|description=Pyramid Island dark sky observation site in [http://pc.gc.ca/jasper Jasper National Park], Alberta, Canada -  world's largest [http://www.jasperdarksky.org/ Dark Sky Preserve]. This site is only 15 min from the town of Jasper, yet nearly perfectly dark. The panorama was taken just before sunset in October 2011. }}&lt;br /&gt;
&lt;br /&gt;
===South America===&lt;br /&gt;
{{Package|image=http://www.essl.de/wp/wp-content/uploads/2008/03/paranalscreenshot.png|url=http://www.essl.de/wp/wp-content/uploads/2008/03/paranal.zip|name=ESO's Very Large Telescope in the Atacama Desert, Chile|author=[http://www.essl.de Dirk Essl]|license=|compat=0.9.x|description=The Very Large Telescope Project (VLT) is a system of four separate optical telescopes (the Antu telescope, the Kueyen telescope, the Melipal telescope, and the Yepun telescope) organized in an array formation. Each telescope has an 8.2 m aperture. The array is complemented by three movable Auxiliary Telescopes (ATs) of 1.8 m aperture. The project is organized by the [http://www.eso.org/ ESO]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/cachi.jpg|url=http://soyouzworld.free.fr/landscape/cachi.zip|name=Cachi, Argentina|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Parque National Los Cardones near the village of Cachi. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/lagunaverde.jpg|url=http://soyouzworld.free.fr/landscape/lagunaverde.zip|name=Laguna Verde, Bolivia|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Laguna Verde and Laguna Blanca under the Juriques (5704m) and Licancabur (5920m) Volcanos. These lakes are located in Reserva Nacional Eduardo Avaroa, Bolivia. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://documents.epfl.ch/users/m/mt/mtewes/www/permanent/euler_la_silla_thumb.png|url=http://documents.epfl.ch/users/m/mt/mtewes/www/permanent/euler_la_silla.zip|name=Swiss Euler Telescope, ESO La Silla Observatory, Chile|author=[http://obswww.unige.ch/~tewes/ Malte Tewes]|license=|compat=0.9.x|description=Euler is the nearby telescope that can be seen in the west. It is operated by the University of Geneva, and its main duty is the quest of extrasolar planets. The New Technology Telescope (NTT) shows up just behind Euler's control room, Tarot is in due south, and finally the venerable ESO 3.6 meter telescope sits on its hill in the southeast. The panorama was taken on September 3, 2010, at about 7:25 local time, a wonderful sunrise after a snowy night. [http://obswww.unige.ch/~tewes/stellarium_landscapes/ Screenshots] }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/images/landscape_braziland_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_braziland.zip|name=Divinópolis, Brazilia|author=[http://alquimiapopular.wordpress.com/psicologo/ Wanderson Nunes Ferreira]|license=|compat=0.9.x|description=[http://alquimiapopular.wordpress.com/psicologo/ Wanderson Nunes Ferreira] photographed this panorama in the Brazilian city of Divinópolis in March 2011 and stitched it together into a spherical panorama that can be used with Stellarium. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://resoundcity.com/resources/stellarium/shined_dream_tb.jpg|url=http://resoundcity.com/resources/stellarium/shined_dream.zip|name=Shined Dream, Argentina|author=Adrian Felipe Pera|license=|compat=0.9.x|description=[http://www.flickr.com/photos/afpera/7529438152 Shined Dream] by Adrian Felipe Pera, a [http://www.resoundcity.com/ ResoundCity] member. Pergamino, Buenos Aires, Argentina. A small town, but still flashed enough to see nearly the stars, or hear the song of the spheres. [http://www.flickr.com/photos/afpera/7529438152 Flickr image] [http://adn-pera.deviantart.com/#/d56ldh2 deviantart wallpaper]. }}&lt;br /&gt;
&lt;br /&gt;
===Polar regions===&lt;br /&gt;
{{Package|image=http://www.obs-sirene.com/divers/stellarium/concordia.png|url=http://www.obs-sirene.com/divers/stellarium/concordia.zip|name=French-Italian Concordia Station|author=[http://cyprien.pouzenc.free.fr Cyprien Pouzenc]|license=GPLv2+|compat=0.10.x|description=Panoramic view of the station installed at Dome C, Antarctica.}}&lt;br /&gt;
&lt;br /&gt;
===Special===&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/simple.jpg|url=http://www.stellarium.org/files/landscapes/simple.zip|name=Simple|author=[http://astro.uni-altai.ru/~aw/ Alexander Wolf]|license=Public Domain|compat=0.10.x|description=Simple semi-transparent texture for Stellarium.}}&lt;br /&gt;
&lt;br /&gt;
==Contributions==&lt;br /&gt;
Please feel free to contribute your own custom landscapes here.   Make thumbnails 200x114 pixels to fit with the rest of the page.  Please include a location section in your landscape.ini file with the longitude, latitude, altitude and planet for the location of the landscape (see one of the pre-existing landscapes for an example).&lt;br /&gt;
&lt;br /&gt;
To find out more about how to create a landscape, see the [http://www.porpoisehead.net/mysw/stellarium_user_guide_html-0.9.1-1/#SECTION00670000000000000000 Stellarium User Guide], and examine existing landscapes.  If you are having problems, posting to the forums is a good way to get some advice.&lt;br /&gt;
&lt;br /&gt;
===Important note on image dimensions===&lt;br /&gt;
'''IMPORTANT: Make sure all textures have dimensions which are integer powers of 2, i.e. 256, 512, 1024, 2048, 4096, 8192, 16384, ...   e.g. 4096 by 1024, 2048 by 2048 and so on.'''&lt;br /&gt;
&lt;br /&gt;
This is a limitation of OpenGL.  Some video hardware will work OK with images with different image dimensions, but many will not display properly, suffer vastly reduced frame rates, and even crash the computer.  &lt;br /&gt;
&lt;br /&gt;
'''Please make sure all contributed landscapes conform to these requirements, or your link may be removed.'''&lt;br /&gt;
&lt;br /&gt;
Be aware that many people's video hardware cannot handle very large textures.  This is hardware and driver dependent.  A typical maximum image size is 2048x2048 or 4096x4096.&lt;br /&gt;
&lt;br /&gt;
===Package contents===&lt;br /&gt;
Please package your landscape in a .zip file with all files inside a directory in the .zip file.  This should be unique to your landscape, and it would be nice it it was all lower-case with no spaces.  &lt;br /&gt;
&lt;br /&gt;
You should also include a readme.txt file which describes the landscape and specifies any usage restrictions or licensing terms for the images used in the landscape.  &lt;br /&gt;
&lt;br /&gt;
===Licensing===&lt;br /&gt;
Before you distribute images as part of a Stellarium landscape, please ensure you are legally entitled to - you must be the copyright holder for the images, or be able to distribute them for use with Stellarium under the terms of some agreement with the copyright holder (e.g. Creative Commons licensed images found on the web).&lt;br /&gt;
&lt;br /&gt;
It is important to explicitly state what use may be made of images for your landscape.  This should be done in the readme.txt file inside the .zip file.&lt;br /&gt;
&lt;br /&gt;
We recommend an open source license compatible with Stellarium itself (i.e. the GNU GPL), or one of the Creative Commons licenses.  &lt;br /&gt;
&lt;br /&gt;
===Example package contents===&lt;br /&gt;
&lt;br /&gt;
From the Mars Husband Hill landscape:&lt;br /&gt;
&lt;br /&gt;
 Archive:  landscape_mars_husband_hill.zip&lt;br /&gt;
   Length     Date   Time    Name&lt;br /&gt;
  --------    ----   ----    ----&lt;br /&gt;
   1815308  02-05-07 21:02   mars_husband_hill/husband_hill.png&lt;br /&gt;
       211  05-28-07 19:44   mars_husband_hill/landscape.ini&lt;br /&gt;
      1096  06-04-07 15:21   mars_husband_hill/readme.txt&lt;br /&gt;
  --------                   -------&lt;br /&gt;
   1816615                   3 files&lt;br /&gt;
&lt;br /&gt;
The readme.txt file should look something like this:&lt;br /&gt;
&lt;br /&gt;
 Mars Husband Hill Landscape for Stellarium&lt;br /&gt;
 ==========================================&lt;br /&gt;
 &lt;br /&gt;
 Description&lt;br /&gt;
 -----------&lt;br /&gt;
 &lt;br /&gt;
 This landscape was taken from the NASA Spirit Rover on Mars.&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 Files&lt;br /&gt;
 -----&lt;br /&gt;
 &lt;br /&gt;
 This file (readme.txt) should have come in a zip file with some others&lt;br /&gt;
 Here is a listing of all the files which should be in the zip file:&lt;br /&gt;
 &lt;br /&gt;
   mars/readme.txt&lt;br /&gt;
   mars/landscape.ini&lt;br /&gt;
   mars/husband_hill.png&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 Installation &amp;amp; Use&lt;br /&gt;
 ------------------&lt;br /&gt;
 &lt;br /&gt;
 Unzip the landscape package file in your personal stellarium data&lt;br /&gt;
 directory, or the &amp;lt;config_root&amp;gt;/landscapes directory.  The location&lt;br /&gt;
 varyies depending on your operating system.  See the Stellarium&lt;br /&gt;
 User Guide for per-platform details.&lt;br /&gt;
 &lt;br /&gt;
 Once you have installed the landscape, open Stellarium and go to the&lt;br /&gt;
 configuration dialog.  Select the landscapes tab, and select the landscape&lt;br /&gt;
 from the list of available landscapes.&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 Credits&lt;br /&gt;
 -------&lt;br /&gt;
 &lt;br /&gt;
 Image credit: NASA/JPL-Caltech/Cornell&lt;br /&gt;
 http://marsrovers.jpl.nasa.gov/gallery/panoramas/opportunity/index.html&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 License&lt;br /&gt;
 -------&lt;br /&gt;
 &lt;br /&gt;
 NASA Images are released into the public domain&lt;br /&gt;
&lt;br /&gt;
===File encoding===&lt;br /&gt;
The landscape.ini and readme.txt files should be UTF-8 encoded text or plain ASCII.  It's probably a good idea to adopt the Windows line ending encoding, (i.e. CR LF).  Both Windows and *nix style line ending encoding should work OK in Stellarium, but Windows users will have an ugly time reading the readme.txt if it uses *nix-style newlines.&lt;br /&gt;
&lt;br /&gt;
===Need hosting?===&lt;br /&gt;
&lt;br /&gt;
If you have a landscape you would like to share but have no web-space to put it, email [[User:matthewg42|me]] and I'll put it on [http://porpoisehead.net/ my site].&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
*[[Landscape Rotation]] - how to set landscape rotation so that a certain point is due north&lt;br /&gt;
*The user guide, section 5.7: [[Customising Landscapes]]&lt;br /&gt;
&lt;br /&gt;
==Tools==&lt;br /&gt;
The following tools may be useful to people who wish to create their own landscapes:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| width=15% | '''Program''' || width=20% | '''Platform(s)''' || width=15% | '''License''' || width=40% | '''Notes''' &lt;br /&gt;
|-&lt;br /&gt;
|[http://www.cs.ubc.ca/~mbrown/autostitch/autostitch.html Autostitch] &lt;br /&gt;
| Windows; may also run on Linux using [http://www.winehq.org/ Wine]&lt;br /&gt;
| Shareware/demo &lt;br /&gt;
| Looks like it produces good results.  Registered version includes extra types of projection.  No source code.&lt;br /&gt;
|-&lt;br /&gt;
|[http://hugin.sourceforge.net/ Hugin] &lt;br /&gt;
| Linux; FreeBSD; MacOSX; Windows&lt;br /&gt;
| Free/open source (GNU GPL)&lt;br /&gt;
| Hugin is a nice GUI for Panorama Tools&lt;br /&gt;
|-&lt;br /&gt;
||[http://webuser.fh-furtwangen.de/~dersch/ Panorama Tools]&lt;br /&gt;
| Linux; FreeBSD; MacOSX; Windows&lt;br /&gt;
| Free/open source (GNU GPL)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Microsoft's [http://research.microsoft.com/en-us/um/redmond/groups/ivm/ICE/ Image Composite Editor]&lt;br /&gt;
| Windows&lt;br /&gt;
| Free (costless) &lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
*[http://stargazerslounge.com/primers-tutorials/122628-tutorial-custom-stellarium-landscapes.html Tutorial: Custom Stellarium landscapes], thread at the Stargazers Lounge forum&lt;br /&gt;
*[http://www.cloudynights.com/ubbthreads/showflat.php/Number/3759113/ Stellarium landscape image of my back porch], thread at the Cloudy Nights forum (discusses using a home-made fish-eye lens from a peep-hole to create a &amp;quot;fisheye&amp;quot; landscape)&lt;br /&gt;
&lt;br /&gt;
[[Category:Landscapes]]&lt;br /&gt;
[[Category:Customization]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/User:Mina</id>
		<title>User:Mina</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/User:Mina"/>
				<updated>2012-12-08T11:38:38Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;User of Stellarium on Mac OS X and of a Digitarium Alpha planetarium projector.&lt;br /&gt;
&lt;br /&gt;
Author of [[Landscapes#Europe|Épendes Observatory landscape]].&lt;br /&gt;
&lt;br /&gt;
Interested in the [[Compilation on Mac OS X|compilation of Stellarium on Mac OS X]].&lt;br /&gt;
&lt;br /&gt;
== Some notes to self regarding compilation ==&lt;br /&gt;
&lt;br /&gt;
None as of today ;-)&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Landscapes</id>
		<title>Landscapes</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Landscapes"/>
				<updated>2012-12-08T11:34:22Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: /* Europe */ New landscape&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==How to install landscapes==&lt;br /&gt;
After you have downloaded the .zip file for a landscape from this page, you need to install it in Stellarium.&lt;br /&gt;
&lt;br /&gt;
===Automatic===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;http://www.stellarium.org/wikiimg/stellarium-0-11-1/add-remove-landscapes-button.png&amp;lt;/div&amp;gt;&lt;br /&gt;
If you have Stellarium 0.10.6 or later version, you can use the &amp;quot;Add/remove landscapes&amp;quot; feature to install landscapes automatically:&lt;br /&gt;
*Open the &amp;quot;Sky and viewing options&amp;quot; window by clicking on the appropriate button in the left button bar (or press the F4 key).&lt;br /&gt;
*The &amp;quot;Add/remove landscapes&amp;quot; button is at the bottom of the &amp;quot;Landscape&amp;quot; tab.&lt;br /&gt;
*When you press it, the &amp;quot;Add/remove landscapes&amp;quot; window will appear. It allows you to install &amp;lt;tt&amp;gt;.zip&amp;lt;/tt&amp;gt; files containing landscapes. It also lists the user-installed landscapes and allows you to remove them.&lt;br /&gt;
&lt;br /&gt;
Note that while this makes installing landscapes easier, it may also cause you to overlook what else is included in the ZIP archive. Landscape packages created without this feature in mind may contain other files, such as alternative textures in different sizes.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;align:center&amp;quot;&amp;gt;http://www.stellarium.org/wikiimg/stellarium-0-11-1/add-remove-landscapes-window.png&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Manual===&lt;br /&gt;
If you are using an earlier version of Stellarium, you can follow this procedure to install a landscape package:&lt;br /&gt;
#Browse to your [[User Data Directory]], which varies according to your operating system. (eg. in Windows Vista/7 enter  %appdata%\stellarium in Explorer's location bar )&lt;br /&gt;
#Create a sub-directory called ''landscapes'' in your user directory (if it doesn't exist).&lt;br /&gt;
#Unzip the landscape .zip file in the ''landscapes'' directory (if it's done right, a sub-directory should be created for each landscape).&lt;br /&gt;
&lt;br /&gt;
NOTE: Older version of Stellarium (prior to v0.9.0) used a slightly different mechanism for doing landscapes. You can find a list of the old landscapes [[Landscapes pre 0.9.0|here]].&lt;br /&gt;
&lt;br /&gt;
Since version 0.10.5 Stellarium has problems in correctly loading old style landscapes (multi panel) if they are not 8 or 16 panel panoramas. Some old 4,7,9 qnd 10 side panoramas converted into 8 ides can be found here &lt;br /&gt;
*[http://sarcasmogerdes.dyndns.org/stellarium/uploads/wiruna-field.zip] (Wiruna field Barry's site)&lt;br /&gt;
*[http://sarcasmogerdes.dyndns.org/stellarium/uploads/egarden-new.zip] (Egarden 8 panel Barry's site)&lt;br /&gt;
*[http://sarcasmogerdes.dyndns.org/stellarium/uploads/neven-new.zip] (Como area Sydney Barry's site)&lt;br /&gt;
&lt;br /&gt;
==User contributed landscapes (by continent)==&lt;br /&gt;
We have landscapes for the seven continents (in the [http://en.wikipedia.org/wiki/Continent seven continent model]) - all, including from Antarctica !&lt;br /&gt;
===Interplanetary===&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/husband-hill.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_mars_husband_hill.zip|name=Husband Hill, Mars|author=Johan|license=Public Domain|compat=0.9.x|description=Johan transformed this Mars image from NASA into a spherical panorama that can be used with Stellarium.  Mars rover Spirit made this image during August 24 to 27, 2005. Image credit: NASA/JPL-Caltech/Cornell. Read more on [http://marsrovers.nasa.gov/gallery/panoramas/spirit/2005.html this webpage].}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/landscape_marsopportunity_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_mars_opportunity_rover.zip|name=Mars Opportunity Rover|author=Mike|license=Public Domain|compat=0.9.x|description=Mike sent posted this landscape in the forums.  Another nice Mars rover landscape.}}&lt;br /&gt;
 &lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_iss_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_iss.zip|name=International Space Station|author=Makc|license=GPL|compat=0.9.x|description=Landscape made using some screen shots and data from the wonderful [http://www.shatters.net/celestia/ Celestia].  Set the projection mode to stereographic, zoom out to a wide field of view and point down towards the ground to get the nice rounded &amp;quot;planet&amp;quot; effect.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_apollo_11_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_apollo_11.zip|name=Apollo 11 landing site|author=Mathew Myrup|compat=0.9.x|description=This landscape is made using NASA photographs taken by Buzz Aldrin. Look down and you can see Buzz's footprints :)}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_apollo_17_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_apollo_17.zip|name=Apollo 17 landing site|author=Mathew Myrup|compat=0.9.x|description=This landscape is made using NASA photographs taken by Gene Cernan.}}&lt;br /&gt;
&lt;br /&gt;
===Africa===&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/idehan.jpg|url=http://soyouzworld.free.fr/landscape/idehan.zip|name=Idehan Ubari, Libya|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|compat=0.10.x|description=This is a panoramic view of the desert of Idehan Ubari in Libya.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/leptis.jpg|url=http://soyouzworld.free.fr/landscape/leptis.zip|name=Leptis Magna, Libya|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|compat=0.10.x|description=This is a panoramic view of the theatre of the Roman city of Leptis Magna. This site is part of [http://whc.unesco.org/en/list/183 UNESCO World Heritage].}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/sahara.jpg|url=http://soyouzworld.free.fr/landscape/sahara.zip|name=Sahara, Libya|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|compat=0.10.x|description=This is a panoramic view from somewhere in the middle of the Sahara in Libya.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/waw-al-namus.jpg|url=http://soyouzworld.free.fr/landscape/waw-al-namus.zip|name=Volcano Waw al-Namus, Libya|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|compat=0.10.x|description=This is a panoramic view of Volcano Waw al-Namus in the Sahara.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.domani.ch/masoala/en/capmasoala_thumb.jpg|url=http://www.domani.ch/masoala/en/cap_masoala.zip|name=Cap Masoala, Madagascar|author=Matthias D. Frei|license=GPLv2+|compat=0.9.x|description=This panorama was photographed from the abandoned French lighthouse at the southernmost point of the Masoala peninsula in Madagascar. It provides a spectacular view over the Indian Ocean and the Masoala peninsula that is still mainly covered with rainforest. More information about this particular place can be found  [http://www.domani.ch/masoala/en/index.html here]}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_mbabane_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_mbabane.zip|name=Mbabane, Swaziland|author=Quinton Reissmann|compat=0.9.x|description=Mbabane is the capital of the little kingdom of Swaziland. Waterford/Kamhlaba is an international school on a mountain side which prides itself in cultural diversity. In SiSwati &amp;quot;kamhlaba&amp;quot; means &amp;quot;a world in miniature&amp;quot;. The actual view is from the sports field where we usually set up the telescope.}}&lt;br /&gt;
&lt;br /&gt;
===Asia===&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_everest_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_everest.zip|name=Mount Everest|author=Makc|license=&amp;amp;copy;|compat=0.9.x|description=Amazing parorama of the summit of Mount Everest, 8.85 km above sea level.  [http://www.everestviews.com/ Roddy Mackenzie], who climbed the mountain in 1989, captured the image.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_jantar_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_jantar.zip|name=Jantar Mantar|author=Barry Perlus &amp;amp; Stellarium team|license=CC BY-NC-SA 3.0|compat=0.9.x|description=Professor Barry Perlus of Cornell University allowed us to use his panoramic photography of one of the Jantar Mantars in India to create this landscape.  For more information on these fascinating scientific and architectural works see [http://jantarmantar.org/ jantarmantar.org].}}&lt;br /&gt;
&lt;br /&gt;
===Australasia===&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/beaumont-hills.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_beaumont_hills.zip|name=Beaumont Hills, Sydney, Australia|author=Barry Gerdes|license=GPLv2+|compat=0.9.x|description=Barry made an interesting multiple-image landscape from the rooftop of his house. You can find a detailed account of how this was done in the [http://porpoisehead.net/mysw/stellarium_user_guide_html-0.9.0-1/#SECTION001100000000000000000 Stellarium User Guide].}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/transit-hill.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_transit_hill.zip|name=Transit Hill, Lord Howe Island, Australia|author=Graeme Ewing|compat=0.9.x|description=Graeme Ewing Contributed this panorama of the astronomically significant and visually stunning Transit Hill site Northeast of Sydney, Australia. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_penneshaw_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_penneshaw.zip|name=Penneshaw, Kangaroo Island, Australia|author=Clive Nelson|compat=0.9.x|description=Penneshaw is a small township at the Northwest end of Kangaroo Island, off the coast of South Australia. In the north is the entrance to Gulf St Vincent and the Australian mainland. In the east is the Penneshaw township, To the west, on the horizon, is Kingscote, the main town on Kangaroo Island.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_largsbay_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_largsbay.zip|name=Largs Bay in South Australia|author=Martin Lewicki|license=GPL|compat=0.9.x|description=Panoramic view of Largs Bay in South Australia 8 panel old style landscape. Largs Pier Hotel facade in SSE and Largs Bay Sailing Club due east. Jetty extends to Gulf St Vincent to the west.}}&lt;br /&gt;
&lt;br /&gt;
===Europe===&lt;br /&gt;
{{Package|image=http://www.observatoire-naef.ch/assets/files/ependes-thumbnail.png|url=http://www.observatoire-naef.ch/assets/files/ependes.zip|name=Épendes Observatory, Fribourg, Switzerland|author=[http://www.stellarium.org/wiki/index.php/User:Mina Nicolas Martignoni]|license=GPL|compat=0.10.x|description=The [http://www.observatoire-naef.ch/ Épendes Observatory] (44°44′01″N 7°08′25″E) is located near the city of Fribourg, Switzerland. The images for this landscape were taken in August 2006. File size is about 1.7 MB.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://michael.nadev.net/pub/wurania.png|url=http://michael.nadev.net/pub/wurania.zip|name=Urania Observatory, Vienna, Austria|author=Michael Prokosch|license=CC BY-ND 3.0|compat=0.9.x|description=The [http://www.astronomie-wien.at/astronomie_urania.html Urania Observatory] (48°12′41.88″N 16°23′1.53″E) is located right in the middle of the city of Vienna, capital of Austria. Built in 1910 under emporer Franz Joseph I. it's the countries oldest non-scientifical observatory still in use for people's education. This landscape was taken in August 2011. If you are not distracted by the stars, you can even see St. Stephan's cathedral, the Viennese Giant Wheel and the Danube Canal. File size is about 11.5 MB.}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://perso.wanadoo.es/arias_llego/stellarium/laguardia/Thumbnail.png|url=http://perso.wanadoo.es/arias_llego/stellarium/laguardia/laguardia.zip|name=Port of La Guardia, Galicia, Spain|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=CC BY-NC-ND 3.0|compat=0.10.x|description=La Guardia is a fishing village in Galicia, in the NW. of Spain. This landscape was taken on the 19/07/2008. '''[http://perso.wanadoo.es/arias_llego/stellarium/laguardia/Port_of_La_Guardia.kmz KMZ file]'''. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/Thumbnail.png|url=http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/castrolaboreiro.zip|name=Castle of Castro Laboreiro 13th Century, Melgaço, Portugal|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=CC BY-NC-ND 3.0|compat=0.10.x|description=Castro Laboreiro is a village in Melgaço, in the NW. of Portugal. This landscape was taken on the 15/08/2010. '''[http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/Castle_of_Castro_Laboreiro.kmz Kmz file]'''. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.cestomano.com/stellarium/thumbnail.png|url=http://www.cestomano.com/stellarium/lascanadas.zip|name=Las Cañadas del Teide, Tenerife, Spain|author=[http://www.cestomano.com José Ángel Estévez]|license=|compat=0.10.x|description=This landscape of Las Cañadas was built in April 2008. It's located in the center of Tenerife island, Canary Islands. It can be viewed the Teide volcano -the highest mountain in Spain: 3.718 mts.-, El Llano de Ucanca and Los Roques de García with the characteristic rock &amp;quot;El Cinchado&amp;quot; which, with Teide Volcano, appeared in the old 1.000 ptas. bill. &lt;br /&gt;
&lt;br /&gt;
'''Note:''' If you have problems with the landscape (landscape may not appear because low memory on VGA chip), try to download and replace the PNG landscape with [http://www.cestomano.com/stellarium/peq/lascanadas.png this 50% scaled image]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.waldvogel.com/stellarium/landscape_jungfraujoch_tmb.png|url=http://www.waldvogel.com/stellarium/landscape_jungfraujoch.zip|name=Jungfraujoch High Altitude Research Station, Switzerland|author=Christian Waldvogel|license=|compat=0.10.x|description=Lying at 3580m in the Bernese Alps, the Jungfraujoch is often dubbed &amp;quot;Top of Europe&amp;quot;. It has been home to an astronomical observation station for more than 80 years. The spherical landscape was created from 20 images taken on June 29th, 2008, at 1015, from the lower terrace of the Sphinx Obervatory. The landscape comes in three resolutions (1024 / 2048 / 4096). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/San_Pietro.jpg|url=http://www.stellarium.org/files/landscapes/San_Pietro.zip|name=St Peter's Square (Vatican)|author=Gianfranco Mazzani|license=|compat=0.10.x|description=This is a complete high resolution panoramic view of the St Peter's Square, City of Vatican. &lt;br /&gt;
&lt;br /&gt;
Gianfranco Mazzani photographed this panorama in july 2004 by using a Nikon Coolpix 8700, and stitched &lt;br /&gt;
the original 10 pictures together into a spherical panorama using Hugin program. The panorama has been &lt;br /&gt;
than cutted into 8 alfa channel pictures and re-dimensioned the width to 2048 pixel and then dimensioned &lt;br /&gt;
the height to 32 cm by using Photoschop elements 2.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.waldvogel.com/stellarium/landscape_rodiano_tmb.png|url=http://www.waldvogel.com/stellarium/landscape_rodiano.zip|name=Frantoio Rodiano, Italy|author=Christian Waldvogel|license=|compat=0.10.x|description=The Frantoio Rodiano (Rodiano oil press) is situated on the foot of Mount Gargano in Puglia / Italy. Just a few kilometers uphill lies Monte Sant'Angelo, the famous stop for christian pilgrims on their way to Jerusalem. Stargazing has been kin to this region for milleniae: the oldest graves found in the Frantoio's vicinity date back to pre-etruscan times, and the famous Castel del Monte, an astronomical observation in itself, is not far either. The spherical landscape was created from 8 images taken on September 20th, 2010, at 1707, from the uppermost terrace of the Frantoio Rodiano. The landscape comes in three resolutions (1024 / 2048 / 4096). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://pano.jubila.de/stellarium/muchachos_thumb.jpg|url=http://pano.jubila.de/stellarium/muchachos.zip|name=Roque de los Muchachos, La Palma, Spain|author=Uwe Buecher|license=|compat=0.10.x|description=This high resolution landscape was built with hugin from 20 photos taken in October 2007. It is located on top of the highest mountain on La Palma, Canary Islands. You can see the Buildings of the Observatorio del Roque de los Muchachos, one of them is the Gran Telescopio Canarias (GTC) which is the greatest telescope in the world today (10.4m diameter). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_egarden_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_egarden.zip|name=English Garden, Munich, Germany|author=Rob Spearman, Johan Meuris|license=|compat=0.9.x|description=This high resolution landscape was taken in April 2007 by Rob. Johan helped with the post production.  The result is a very high quality landscape. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_egarden_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_egarden_old_style.zip|name=English Garden, Munich, Germany|author=Rob Spearman, Johan Meuris|license=|compat=0.9.x|description=The original English Garden landscape was re-constructed by Barry Gerdes as an old_style landscape.  This means that it can be used with video hardware which cannot cope with single very large texture files, and yet preserves the resolution of the landscape (by splitting the images into multiple files). Try this is the original English Garden landscapes doesn't load on your computer. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/voksenlia.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_voksenlia.zip|name=Voksenlia, Oslo, Norway|author=Steinar Midtskogen|license=|compat=0.10.x|description=Steinar Midtskogen sent [http://porpoisehead.net/mysw/downloads/voksenlia.png this huge (17 MiB!) spherical landscape image] of Voksenlia, Oslo, Norway (59°58'14N, 10°38'57E, alt=348m). (Currently not working with version 0.9.0). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/observatory-hill-Barry.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_edinburgh.zip|name=Calton Hill, Edinburgh, Scotland|author=Friedrich Noelle, Barry Gerdes|license=|compat=0.9.x|description=Friedrich Noelle took a nice panorama of Observatory Hill, Edinburgh which Barry converted into a Stellarium landscape. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/sight_thumb.jpg|url=http://www.geomancygroup.org/stella/sighthill.zip|name=Sighthill stone circle, Glasgow, Scotland|author=[http://www.geomancygroup.org Grahame Gardner]|license=|compat=0.9.x|description=Sighthill stone circle is a modern stone ring constructed in 1979 by amateur astronomer and SF writer Duncan Lunan. Located next to the M8 motorway in Glasgow city centre, yet with surprisingly good views, the circle has alignments to the solsticial solar rises and settings and the lunar standstills. Alignments to the rising of Rigel are included for 1979 AD and 1800 BC. (2MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/beech_thumb.jpg|url=http://www.geomancygroup.org/stella/beechhill.zip|name=Beech Hill stone circle, nr. Nutley, E. Sussex, England|author=[http://www.geomancygroup.org Grahame Gardner]|license=|compat=0.9.x|description=Beech Hill is a modern stone ring constructed in 2000 by Ivan McBeth and Richard Creightmore of The Geomancy Group [http://www.geomancygroup.org/ www.geomancygroup.org]. Located in the Ashdown Forest, the circle's main alignment is to the Pole Star, denoted by the angled outlier. (2.2MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/calave_tb.jpg|url=http://www.geomancygroup.org/stella/calanaisave.zip|name=Calanais I (Callanish) Avenue, Lewis, Western Isles, Scotland|author=[http://www.geomancygroup.org Grahame Gardner]|license=|compat=0.9.x|description=Callanish is arguably the finest megalithic monument in the British Isles, and is just the largest site in a vast complex of interconnected monuments designed to observe the southern major standstills of the moon. From this position at the end of the avenue, the moon is seen to set behind the rocky outcrop of Cnoc-an-Tursa, only to 're-gleam' in the centre of the main circle a short time afterwards. (4MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/machrie_tb.jpg|url=http://www.geomancygroup.org/stella/machrie5.zip|name=Machrie Moor 5, Isle of Arran, Scotland|author=[http://www.geomancygroup.org Grahame Gardner]|license=|compat=0.9.x|description=This delightful little double-concentric stone circle is the first site you come to when visiting the Machrie Moor complex of megalithic sites on Arran. Although not the most spectactular site in the group, it is one of the most complete and has good views. (7.3MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/mitchthumbnail.jpg|url=http://www.geomancygroup.org/stella/mitchell2.zip|name=Mitchell's Fold stone circle, Shropshire, England|author=[http://www.vallecrucisgrail.co.uk/ Ian Pegler]|license=|compat=0.9.x|description=This wonderful ancient stone circle stands on a plateau amid the rolling Shropshire hills and is loved by walkers, dowsers and Wiccans alike. April 2010 - new version uploaded, featuring improved centre camera position based on Alexander Thom's geometry and improved alignments. (1.8MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/aveburyn_thumb.jpg|url=http://www.geomancygroup.org/stella/aveburynorth.zip|name=Avebury - North circle, Wiltshire, England|author=[http://www.vallecrucisgrail.co.uk/ Ian Pegler]|license=|compat=0.9.x|description=The North circle of the largest megalithic complex in Europe. In the background you can just make out the Red Lion pub. (1MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.geomancygroup.org/stella/vallecrucis_thumb.jpg|url=http://www.geomancygroup.org/stella/vallecrucis.zip|name=Valle Crucis Abbey, Llangollen, North Wales|author=[http://www.vallecrucisgrail.co.uk/ Ian Pegler]|license=|compat=0.9.x|description=This ruined Cistercian abbey dates to 1200 but may be the site of a much earlier Dark Age settlement with a very early Christian church. (2.5MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/ponta-da-piedade.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_lagos.zip|name=Ponta da Piedade, Algarve, Lagos, Portugal|author=Johan|license=|compat=0.9.x|description=Johan photographed this panorama in June 2006 and stitched it together into a spherical panorama that can be used with Stellarium.  You see sandstone cliffs on the Atlantic coast of southern Portugal, a lighthouse, and a natural bridge. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/landscape_gurnigel_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_gurnigel.zip|name=Gurnigel, Switzerland|author=Martin Mutti|license=|compat=0.9.x|description=This is the site of the Bern Astronomical Society's observing site. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/tishinka-ardashev.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_tishinka.zip|name=Tishinka, Russia|author=Dmitri Ardashev|license=|compat=0.9.x|description=This is a small village between Moscow's and Kaluga's regions, in 130 km south-west of Moscow (55°18'32.46N, 36°26'42.06E, alt=195). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_t60pic_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_t60pic.zip|name=T60 dome, Pic du Midi Observatory, France|author=Sylvain Rondi|license=|compat=0.9.x|description=Sylvain photographed this panorama in February 2007 and stitched it together into a spherical panorama that can be used with Stellarium. This is the panoramic view from the amateur 60cm telescope dome from [http://astrosurf.com/t60/ T60 Association], installed at Pic du Midi Observatory. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_t1mpic_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_t1mpic.zip|name=T1M terrasse, Pic du Midi Observatory, France|author=Sylvain Rondi|license=|compat=0.9.x|description=Sylvain photographed this panorama in February 2007 and stitched it together into a spherical panorama that can be used with Stellarium. This is the panoramic view from the terrasse of the professional 106cm telescope at Pic du Midi Observatory (France). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_sheffieldrivelin_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_sheffieldrivelin.zip|name=River Rivelin, Sheffield, UK|author=Jan Wedekind|license=CC SA-2.0|compat=0.9.x|description=This is a 270° fisheye panorama created from 40 photos using Hugin. It shows the River Rivelin in Sheffield in the middle of April 2007. The fringes (twigs and tree tops) where dimmed out using The Gimp. The overexposed parts of the horizon have been removed. Copyright (C) 2007, [[User:Wedesoft|Jan Wedekind]], [http://creativecommons.org/licenses/by-sa/2.0/ Creative Commons Attribution ShareAlike License 2.0] }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_ares_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_ares.zip|name=Ares, Galicia, Spain|author=[http://www.stellarium.org/wiki/index.php/User:rcasl Rubén Castiñeiras Lorenzo]|license=|compat=0.9.x|description=Ares is a small fishing village in Galicia, in the NW of Spain, close to the city of Ferrol. The 360 degree image was taken at the noon of August 6th, 2007, just in front of the &amp;quot;Paseo Rosalía de Castro&amp;quot;. It has been made with 17 photos, stitched with Hugin 0.7 beta 4 and retouched with the Gimp 2.2.17. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_ovindoli_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_ovindoli.zip|name=Ovindoli, Italy|author=Pierluigi Panunzi|license=|compat=0.9.x|description=Ovindoli is a famous ski resort in central Italy. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/rustrel.jpg|url=http://soyouzworld.free.fr/landscape/rustrel.zip|name=Rustrel, France|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Colorado de Rustrel in &amp;quot;Les Sentiers de l'Ocre et du Fer&amp;quot;, Provence, France. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://files.myopera.com/aid85/files/host/Stintino.jpg|url=http://files.myopera.com/aid85/files/host/stintino.zip|name=Stintino, Italy|author=[http://my.opera.com/aid85 aid85]|license=|compat=0.9.x|description=High resolution 360° landscape taken at &amp;quot;LaPelosa&amp;quot; beach in Stintino (SS) Sardinia \ Italy - Europe \ Mediterranean Sea. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/vatican.jpg|url=http://soyouzworld.free.fr/landscape/vatican.zip|name=St Peter's Square, Vatican|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the St Peter's Square. City of Vatican. Some parts of the buildings are missing, not enough pictures... This site is part of [http://whc.unesco.org/en/list/286 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://files.myopera.com/aid85/files/host/Larvotto.jpg|url=http://files.myopera.com/aid85/files/host/munegu.zip|name=Munegu, MC|author=[http://my.opera.com/aid85 aid85]|license=|compat=0.9.x|description=High resolution 360° landscape taken at Larvotto beach in [http://en.wikipedia.org/wiki/Monaco Munegu \ Monaco - MC] (MonteCarlo) - Europe \ Mediterraneum Sea - Ligurian Sea. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/Bahia_de_Cadiz.jpg|url=http://www.stellarium.org/files/landscapes/Bahia_de_Cadiz.zip|name=Bahia de Cádiz, Spain|author=José Codejón|license=|compat=0.10.x|description=A new bridge is being built across de bay. The 360° panorama image was taken at noon of September 10th, 2012, from the pier of the small marina just closed to the Cadiz head of the bridge. &lt;br /&gt;
&lt;br /&gt;
The final picture is the result of stitching 11 frames, taken out of a 63 seconds full HD video, using PhotoStitch and Gimp 2.6.8. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.ticfisquim.org/astro/stellarium/thumbnails.jpg|url=http://www.ticfisquim.org/astro/stellarium/cocentaina.zip|name=Cocentaina, Spain|author=[http://www.ticfisquim.org Angel Juan Martínez]|license=|compat=0.9.x|description=This is a panoramic view from the roof of the Secondary School of Cocentaina, a little town of the Pais Valencià (Spain), in the mountains that are between Valencia and Alicante, where I teach Astronomy with the help of Stellarium. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.xs4all.nl/~adonet/stellarium/tulipfield.jpg|url=http://www.xs4all.nl/~adonet/stellarium/tulipfield.zip|name=Amstelveen, The Netherlands|author=[http://www.xs4all.nl/~adonet/stellarium/stellarium.html Jeroen Adolfse]|license=|compat=0.9.x|description=This landscape shows the tulipfields in spring (may 2008) in Schagerbrug, North Holland. It's an old_style landscape. (file is 4.5 Mb) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.didgeweb.com/stellarium/oudmeer_sample.png|url=http://www.didgeweb.com/stellarium/son_oudmeer.zip|name=Son &amp;amp;amp; Breugel, The Netherlands|author=[http://www.didgeweb.com/ Roland Mathijssen]|license=|compat=0.9.x|description=This landscape shows the Oude Meer (Old Lake) in the Sonse Heide in Son (close to Eindhoven). (file is 5.4 MB) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.obs-sirene.com/divers/stellarium/sirene.png|url=http://www.obs-sirene.com/divers/stellarium/sirene.zip|name=Sirene Observatory, Lagarde d'Apt (84), France|author=[http://cyprien.pouzenc.free.fr Cyprien Pouzenc]|license=|compat=0.9.x|description=Panoramic view of installations. Previously the site was used as a nuclear lauching pad. Now days, [http://www.obs-sirene.com Sirene] accepts everybody for astronomical observations. (File is 11 Mb) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.nett.is/~sveinki/stellarium/vonarskard-tn.png|url=http://www.nett.is/~sveinki/stellarium/vonarskard.zip|name=Vonarskar&amp;amp;eth;, Passage of Hope, Iceland|author=[http://www.nett.is/~sveinki/stellarium/ Sveinn &amp;amp;iacute; Felli]|license=|compat=0.9.x|description=This is the geographical center of Iceland, a barren pass between glaciers. Being sheltered from southern vinds by the huge Vatnajökull glacier, a great cold mass which then eliminates most humididy from the air, makes the place unusually good for stargazing. Old-style landscape, resolution is a bit low. (File is 1.1 Mb) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.brontovox.co.uk/Downloads/woodhenge_winter_solstice_sunset_ts.png|url=http://www.brontovox.co.uk/Downloads/woodhenge.zip|name=Woodhenge near Stonehenge|author=[http://www.brontovox.co.uk Hugo Jenks]|license=|compat=0.9.x|description=Woodhenge near Stonehenge was constructed around 2200 BC. It comprised numerous wooden posts set into the chalky ground. These posts of course decayed, and their positions today are marked with concrete cylinders. &lt;br /&gt;
&lt;br /&gt;
The posts are arranged, in plan view, as a series of concentric egg shapes. The axis of the egg shapes aligns approximately with summer solstice sunrise. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.brontovox.co.uk/Downloads/stonehenge_screenshot_st.jpg|url=http://www.brontovox.co.uk/Downloads/stonehenge.zip|name=Stonehenge|author=[http://www.brontovox.co.uk Hugo Jenks]|license=|compat=0.9.x|description=Was it an observatory? Yes indeed it was!  The alignment of the monument with the summer solstice sunrise has been well known for many years. The alignment with the winter solstice sunset may have been more significant. For the first time, many additional alignments are published, and are detailed here:  [http://www.brontovox.co.uk/ www.brontovox.co.uk] These alignments demonstrate that Stonehenge was primarily a functional scientific instrument, used for measuring angles. The angles of interest were the rising and setting bearings of the sun, moon, and stars. It was therefore possible to map the entire visible sky. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/rila.jpg|url=http://soyouzworld.free.fr/landscape/rila.zip|name=Rila Monastery, Bulgaria|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Rila Monastery in Bulgaria. This building is quite high so the sky area is not really large. This site is part of [http://whc.unesco.org/en/list/216 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://bg360.net/stellarium/silistar.jpg|url=http://bg360.net/stellarium/silistar.zip|name=Silistar, Bulgaria|author=[http://bg360.net BG360]|license=|compat=0.9.x|description=Panoramic view of the Silistar Beach in Bulgaria. See this panorama here [http://pano.bg360.net/silistar/index_en.php Flash pano]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://bg360.net/stellarium/alexandernevsky.jpg|url=http://bg360.net/stellarium/alexandernevsky.zip|name=St. Alexander Nevsky Cathedral, Sofia, Bulgaria|author=[http://bg360.net BG360]|license=|compat=0.9.x|description=Panoramic view of the Saint Alexander Nevsky Cathedral in Bulgaria. See this panorama here [http://pano.bg360.net/sofia/alexander-nevsky_en.php Flash pano]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://bg360.net/stellarium/rousse.jpg|url=http://bg360.net/stellarium/rousse.zip|name=Statue of Freedom, Rousse, Bulgaria|author=[http://bg360.net BG360]|license=|compat=0.9.x|description=Panoramic view from the center of Rousse in Bulgaria. See this panorama here [http://pano.bg360.net/ruse/pametnik-svobodata_en.php Flash pano]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/thumbnail-dm.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/dm.zip|name=Central Munich|author=Markus Dähne|license=|compat=0.9.x|description=This landscape shows the view from the Eastern observatory of the [http://www.beobachtergruppe.com Deutsches Museum] in Munich, Germany.  During public observing sessions, Stellarium is used to help explain the sky :-) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_leist_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_leist.zip|name=Leist, Switzerland|author=Bernd Lang|license=|compat=0.9.x|description=This landscape was developed from a panoramic picture of the Leist in Switzerland (2222m).  The picture was taken during a [http://www.panoramio.com/user/1437658 hiking tour] from Tanenboden to the top of the Leist. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_stonehenge_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_stonehenge.zip|name=Stonehenge, England|author=[http://www.freetadel.blogspot.com/ Fernando]|license=|compat=0.9.x|description=This landscape depicts Stonehenge - the famous prehistoric monument in Wiltshire, Southern England. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/avignon.jpg|url=http://soyouzworld.free.fr/landscape/avignon.zip|name=Place du Palais des Papes, Avignon|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Place du Palais des Papes in Avignon.  France. This site is part of [http://whc.unesco.org/en/list/228 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/avignonb.jpg|url=http://soyouzworld.free.fr/landscape/avignonb.zip|name=Le Pont d'Avignon, Avignon|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Pont d'Avignon (aka Bridge Saint-Bénezet) in Avignon.  France. This site is part of [http://whc.unesco.org/en/list/228 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/orange.jpg|url=http://soyouzworld.free.fr/landscape/orange.zip|name=Roman Theatre of Orange|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Roman Theatre of Orange- France. This site is part of [http://whc.unesco.org/en/list/163 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_cambridge_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_cambridge.zip|name=Centre for Mathematical Sciences, Cambridge, UK|author=[http://www.srcf.ucam.org/~mh519/ Matt Hickford]|license=|compat=0.9.x|description=Panorama from the grassy roof of the Centre for Mathematical Sciences, Cambridge University, UK in March. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_grantchester_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/grantchester.zip|name=Grantchester Meadows, Cambridgeshire, UK|author=[http://www.srcf.ucam.org/~mh519/ Matt Hickford]|license=|compat=0.9.x|description=Panorama from Grantchester Meadows, Cambridgeshire, UK in March. Flat horizon. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_areeiro_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_areeiro.zip|name=Pico do Areeiro|author=Filipe Gomes|license=|compat=0.9.x|description=This is a panoramic view of the [http://pt.wikipedia.org/wiki/Pico_do_Arieiro Pico do Areeiro], the second highest point of the island.  Madeira Island - Portugal. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_caniga_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_caniga.zip|name=Caniga Country|author=[http://www.flickr.com/photos/25710744@N03/2672852380/ Andrea Pittalis]|license=|compat=0.9.x|description=This landscape was taken from the Caniga Country, near Sassari in Sardinia, Italy. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.under-a-dark-sky.com/stellarium/cdn-landscape.jpg|url=http://www.under-a-dark-sky.com/stellarium/cdn.zip|name=Cuevas del Negro, Andalucia|author=Peter Lynch|license=|compat=0.9.x|description=A nearly flat rural landscape in southern Spain. The site has very dark skies and a view down to about 3&amp;amp;deg; to the south. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.astrosurf.com/aaaov/landscape/landscape_aaaov_thumb.jpg|url=http://www.astrosurf.com/aaaov/landscape/aaaov.zip|name=Astronomes Amateurs Aixois Observatoire Vauvenargues (AAAOV) - France|author=[http://www.astrosurf.com/aaaov AAAOV]|license=|compat=0.9.x|description=Vauvenargues Observatory located near Aix-en-Provence, France. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.astrosurf.com/aaaov/landscape/landscape_baie_saint_michel_thumb.jpg|url=http://www.astrosurf.com/aaaov/landscape/baie_saint_michel.zip|name=Astronomes Amateurs Aixois Observatoire Vauvenargues (AAAOV) - France|author=[http://www.astrosurf.com/aaaov AAAOV]|license=|compat=0.9.x|description=Saint Michel Bay - Serre Ponçon lake, Alpes - France. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_la_guardia_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_la_guardia.zip|name=La Guardia|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=|compat=0.9.x|description=La Guardia is a fishing village in Galicia, in the NW. of Spain. This landscape was taken on the 19/07/2008 at 12:38 p.m. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_uvalno_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_uvalno.zip|name=Uvalno, Czech Republic|author=|license=|compat=0.9.x|description=A view from a garden in the village of Uvalno, Czech Republic. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://astro.sentvid.org/stellarium/sentvid-thumbnail.png|url=http://astro.sentvid.org/stellarium/sentvid.zip|name=Šentvid, Ljubljana, Slovenia|author=|license=|compat=0.9.x|description=View from the roof of the observatory of Gymnasium Šentvid, Ljubljana, Slovenia. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://astronomia.zagan.pl/pliki/stellarium-moczyn.png|url=http://astronomia.zagan.pl/pliki/moczyn.zip|name=Poland,Zagan - sity Johannes Kepler|author=[http://astronomia.zagan.pl/articles.php?article_id=21 Jacek Patka]|license=|compat=0.9.x|description=View of the old quarter. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://perso.wanadoo.es/arias_llego/stellarium/laguardia/Thumbnail.png|url=http://perso.wanadoo.es/arias_llego/stellarium/laguardia/laguardia.zip|name=Port of La Guardia, Galicia, Spain|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=|compat=0.9.x|description=La Guardia is a fishing village in Galicia, in the NW. of Spain. This landscape was taken on the 19/07/2008.&lt;br /&gt;
&lt;br /&gt;
[http://perso.wanadoo.es/arias_llego/stellarium/laguardia/Port_of_La_Guardia.kmz Kmz file] }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/Thumbnail.png|url=http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/castrolaboreiro.zip|name=Castle of Castro Laboreiro 13th Century, Melgaço, Portugal|author=[http://www.stellarium.org/wiki/index.php/User:Quieroregresaramiplaneta Quiero Regresar a mi Planeta]|license=|compat=0.9.x|description=Castro Laboreiro is a village in Melgaço, in the NW. of Portugal. This landscape was taken on the 15/08/2010.&lt;br /&gt;
&lt;br /&gt;
Castle of Castro Laboreiro 13th Century, Melgaço, Portugal [http://perso.wanadoo.es/arias_llego/stellarium/castrolaboreiro/Castle_of_Castro_Laboreiro.kmz Kmz file] }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.cestomano.com/stellarium/thumbnail.png|url=http://www.cestomano.com/stellarium/lascanadas.zip|name=Las Cañadas del Teide, Tenerife, Spain|author=[http://www.cestomano.com José Ángel Estévez]|license=|compat=0.9.x|description=This landscape of Las Cañadas was built in April 2008. It's located in the center of Tenerife island, Canary Islands. It can be viewed the Teide volcano -the highest mountain in Spain: 3.718 mts.-, El Llano de Ucanca and Los Roques de García with the characteristic rock &amp;quot;El Cinchado&amp;quot; which, with Teide Volcano, appeared in the old 1.000 ptas. bill. &lt;br /&gt;
&lt;br /&gt;
'''Note:''' If you have problems with the landscape (landscape may not appear because low memory on VGA chip), try to download and replace the PNG landscape with [http://www.cestomano.com/stellarium/peq/lascanadas.png this 50% scaled image]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.waldvogel.com/stellarium/landscape_rodiano_tmb.png|url=http://www.waldvogel.com/stellarium/landscape_rodiano.zip|name=Frantoio Rodiano, Italy|author=Christian Waldvogel|license=|compat=0.9.x|description=The Frantoio Rodiano (Rodiano oil press) is situated on the foot of Mount Gargano in Puglia / Italy. Just a few kilometers uphill lies Monte Sant'Angelo, the famous stop for christian pilgrims on their way to Jerusalem. Stargazing has been kin to this region for milleniae: the oldest graves found in the Frantoio's vicinity date back to pre-etruscan times, and the famous Castel del Monte, an astronomical observation in itself, is not far either. The spherical landscape was created from 8 images taken on September 20th, 2010, at 1707, from the uppermost terrace of the Frantoio Rodiano. The landscape comes in three resolutions (1024 / 2048 / 4096). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/luene.jpg|url=http://www.ausgerechnet-jetzt.de/lueneburg.zip|name=Top of Water Tower of Lueneburg, Germany|author=Uwe Prolingheuer|license=|compat=0.9.x|description=This is a panoramic view from the top of old Water Tower 56m above ground, constructed 1906/07, in Lueneburg, a town with many retained medieval houses. Northern Germany. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/gas-gao.jpg|url=http://www.stellarium.org/files/landscapes/gas-gao.zip|name=GAS GAO, Russia|author=[http://www.kepler-observatorium.ru/ Andrey Kuznetsov]|license=|compat=0.10.x|description=Russia, Caucasus. The astronomical science station on the mountain Shadjatmaz. This is the view from amateur's observatory (by Andrey Kuznetsov, Sergey Kiselev). }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/caucasus.jpg|url=http://www.stellarium.org/files/landscapes/caucasus.zip|name=Caucasus, Russia|author=[http://www.kepler-observatorium.ru/ Andrey Kuznetsov]|license=|compat=0.10.x|description=North Caucasus, Elbrus. }}&lt;br /&gt;
&lt;br /&gt;
===North America===&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/saltlakecity.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_salt_lake_city.zip|name=Salt Lake City Panorama|author=Hiram Bertoch|license=|compat=0.9.x|description=Hiram made this panorama for the KidsKnowIt Network's outreach program. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_sanjose_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_sanjose.zip|name=San Jose, California, USA|author=BrendaEM|license=|compat=0.9.x|description=This panorama was made using Nasa's WorldWind. Screenshots were taken at 45 degree increments. The screenshots were layered and stitched together, and then offset until the the Northern mountains were aligned. A landscape such as this could be made of any location in the world. There is a plug-in for WorldWind called &amp;quot;BigScreenshot,&amp;quot; that may make the process easier, but not automate it. A plug-in could be written to do this entire process automatically. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://trampleasure.net/science/solar-calendar/thumbnail.jpg|url=http://trampleasure.net/science/solar-calendar/landscape.ini|name=Berkeley, California, USA|author=Lee Trampleasure Amosslee|license=|compat=0.9.x|description=This panorama is centered at the [http://solarcalendar.org/ Cesar Chavez Memorial Solar Calendar] at the Berkeley Marina. The solar calendar has large stones that line up with the sunrises and sunsets at the equinoxes and solstices. [http://trampleasure.net/science/solar-calendar/chavez-solar-calendar-large.png 4096X2048 PNG photo, 8.3MB], or [http://trampleasure.net/science/solar-calendar/chavez-solar-calendar.png 2048x1024 PNG photo 2.1MB]. In the larger photo, I painted the Golden Gate bridge to make it stand out a bit more. Credits and location can be found in the [http://trampleasure.net/science/solar-calendar/landscape.ini landscapes.ini file]. Please include credits if you use/distribute this version.  }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://www.jrctech.net/landscapes/wiki-photos/tn_School-Image2.png|url=http://www.jrctech.net/landscapes/chesterton_school.zip|name=Chesterton Elementary School - San Diego, California, USA|author=[http://www.jrctech.net John Chester]|license=|compat=0.10.x|description=This landscape was taken to help encourage students to learn about science and astronomy using Stellarium.  The panorama was taken at the playground area of Chesterton Elementary School on October 23, 2011.  The image was constructed using the Multiple Image Method using 8 overlapping images to provide a high level of detail.  The original composite panorama image was 22442 (width) x 2418 (height) pixels .  Composite photo reduced to 5 equally sized photos of 2048 by 1024 pixels.  Many trees created complex horizon background but left details, such as tether-ball poles, in place during transparency development to keep landscape realistic.  The lines of the playground provide an interesting perspective with Stellarium. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/eltajin.jpg|url=http://soyouzworld.free.fr/landscape/eltajin.zip|name=El Tajin, Mexico|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the prehispanic city of El Tajin. Theses ruins are part of [http://whc.unesco.org/en/list/631 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/mexico.jpg|url=http://soyouzworld.free.fr/landscape/mexico.zip|name=Mexico Ciudad, Mexico|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Zocalo (Plaza de la Constitución) of Mexico Ciudad. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/uxmal.jpg|url=http://soyouzworld.free.fr/landscape/uxmal.zip|name=Uxmal, Yucatan, Mexico|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Cuadrangulo de las Monjas in Pre-Hispanic Town of Uxmal. This site is part of [http://whc.unesco.org/en/list/791 UNESCO World Heritage]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://home.arcor.de/mdoege/pano/boulder_thumb.png|url=http://home.arcor.de/mdoege/pano/boulder.zip|name=University of Colorado at Boulder, Boulder, Colorado, USA|author=Martin C. Doege|license=|compat=0.9.x|description=View from Farrand Field at the [http://en.wikipedia.org/wiki/University_of_Colorado_at_Boulder University], with the [http://en.wikipedia.org/wiki/Flatirons Flatirons] to the southwest. (File is 2.9 Mb) }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/mysw/images/landscape_jasperpyramidisland_thumb.jpg|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_jasperpyramidisland.zip|name=Jasper National Park, Alberta, Canada|author=[http://www.jasperdarksky.org/stellarium Rogier Gruys]|license=|compat=0.9.x|description=Pyramid Island dark sky observation site in [http://pc.gc.ca/jasper Jasper National Park], Alberta, Canada -  world's largest [http://www.jasperdarksky.org/ Dark Sky Preserve]. This site is only 15 min from the town of Jasper, yet nearly perfectly dark. The panorama was taken just before sunset in October 2011. }}&lt;br /&gt;
&lt;br /&gt;
===South America===&lt;br /&gt;
{{Package|image=http://www.essl.de/wp/wp-content/uploads/2008/03/paranalscreenshot.png|url=http://www.essl.de/wp/wp-content/uploads/2008/03/paranal.zip|name=ESO's Very Large Telescope in the Atacama Desert, Chile|author=[http://www.essl.de Dirk Essl]|license=|compat=0.9.x|description=The Very Large Telescope Project (VLT) is a system of four separate optical telescopes (the Antu telescope, the Kueyen telescope, the Melipal telescope, and the Yepun telescope) organized in an array formation. Each telescope has an 8.2 m aperture. The array is complemented by three movable Auxiliary Telescopes (ATs) of 1.8 m aperture. The project is organized by the [http://www.eso.org/ ESO]. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/cachi.jpg|url=http://soyouzworld.free.fr/landscape/cachi.zip|name=Cachi, Argentina|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Parque National Los Cardones near the village of Cachi. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://soyouzworld.free.fr/landscape/lagunaverde.jpg|url=http://soyouzworld.free.fr/landscape/lagunaverde.zip|name=Laguna Verde, Bolivia|author=[http://www.soyouz.com Xavier Bonnefoy-Cudraz]|license=|compat=0.9.x|description=This is a panoramic view of the Laguna Verde and Laguna Blanca under the Juriques (5704m) and Licancabur (5920m) Volcanos. These lakes are located in Reserva Nacional Eduardo Avaroa, Bolivia. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://documents.epfl.ch/users/m/mt/mtewes/www/permanent/euler_la_silla_thumb.png|url=http://documents.epfl.ch/users/m/mt/mtewes/www/permanent/euler_la_silla.zip|name=Swiss Euler Telescope, ESO La Silla Observatory, Chile|author=[http://obswww.unige.ch/~tewes/ Malte Tewes]|license=|compat=0.9.x|description=Euler is the nearby telescope that can be seen in the west. It is operated by the University of Geneva, and its main duty is the quest of extrasolar planets. The New Technology Telescope (NTT) shows up just behind Euler's control room, Tarot is in due south, and finally the venerable ESO 3.6 meter telescope sits on its hill in the southeast. The panorama was taken on September 3, 2010, at about 7:25 local time, a wonderful sunrise after a snowy night. [http://obswww.unige.ch/~tewes/stellarium_landscapes/ Screenshots] }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://porpoisehead.net/images/landscape_braziland_thumb.png|url=http://porpoisehead.net/mysw/downloads/landscapes-0.9.x/landscape_braziland.zip|name=Divinópolis, Brazilia|author=[http://alquimiapopular.wordpress.com/psicologo/ Wanderson Nunes Ferreira]|license=|compat=0.9.x|description=[http://alquimiapopular.wordpress.com/psicologo/ Wanderson Nunes Ferreira] photographed this panorama in the Brazilian city of Divinópolis in March 2011 and stitched it together into a spherical panorama that can be used with Stellarium. }}&lt;br /&gt;
&lt;br /&gt;
{{Package|image=http://resoundcity.com/resources/stellarium/shined_dream_tb.jpg|url=http://resoundcity.com/resources/stellarium/shined_dream.zip|name=Shined Dream, Argentina|author=Adrian Felipe Pera|license=|compat=0.9.x|description=[http://www.flickr.com/photos/afpera/7529438152 Shined Dream] by Adrian Felipe Pera, a [http://www.resoundcity.com/ ResoundCity] member. Pergamino, Buenos Aires, Argentina. A small town, but still flashed enough to see nearly the stars, or hear the song of the spheres. [http://www.flickr.com/photos/afpera/7529438152 Flickr image] [http://adn-pera.deviantart.com/#/d56ldh2 deviantart wallpaper]. }}&lt;br /&gt;
&lt;br /&gt;
===Polar regions===&lt;br /&gt;
{{Package|image=http://www.obs-sirene.com/divers/stellarium/concordia.png|url=http://www.obs-sirene.com/divers/stellarium/concordia.zip|name=French-Italian Concordia Station|author=[http://cyprien.pouzenc.free.fr Cyprien Pouzenc]|license=GPLv2+|compat=0.10.x|description=Panoramic view of the station installed at Dome C, Antarctica.}}&lt;br /&gt;
&lt;br /&gt;
===Special===&lt;br /&gt;
{{Package|image=http://www.stellarium.org/wikiimg/landscapes/simple.jpg|url=http://www.stellarium.org/files/landscapes/simple.zip|name=Simple|author=[http://astro.uni-altai.ru/~aw/ Alexander Wolf]|license=Public Domain|compat=0.10.x|description=Simple semi-transparent texture for Stellarium.}}&lt;br /&gt;
&lt;br /&gt;
==Contributions==&lt;br /&gt;
Please feel free to contribute your own custom landscapes here.   Make thumbnails 200x114 pixels to fit with the rest of the page.  Please include a location section in your landscape.ini file with the longitude, latitude, altitude and planet for the location of the landscape (see one of the pre-existing landscapes for an example).&lt;br /&gt;
&lt;br /&gt;
To find out more about how to create a landscape, see the [http://www.porpoisehead.net/mysw/stellarium_user_guide_html-0.9.1-1/#SECTION00670000000000000000 Stellarium User Guide], and examine existing landscapes.  If you are having problems, posting to the forums is a good way to get some advice.&lt;br /&gt;
&lt;br /&gt;
===Important note on image dimensions===&lt;br /&gt;
'''IMPORTANT: Make sure all textures have dimensions which are integer powers of 2, i.e. 256, 512, 1024, 2048, 4096, 8192, 16384, ...   e.g. 4096 by 1024, 2048 by 2048 and so on.'''&lt;br /&gt;
&lt;br /&gt;
This is a limitation of OpenGL.  Some video hardware will work OK with images with different image dimensions, but many will not display properly, suffer vastly reduced frame rates, and even crash the computer.  &lt;br /&gt;
&lt;br /&gt;
'''Please make sure all contributed landscapes conform to these requirements, or your link may be removed.'''&lt;br /&gt;
&lt;br /&gt;
Be aware that many people's video hardware cannot handle very large textures.  This is hardware and driver dependent.  A typical maximum image size is 2048x2048 or 4096x4096.&lt;br /&gt;
&lt;br /&gt;
===Package contents===&lt;br /&gt;
Please package your landscape in a .zip file with all files inside a directory in the .zip file.  This should be unique to your landscape, and it would be nice it it was all lower-case with no spaces.  &lt;br /&gt;
&lt;br /&gt;
You should also include a readme.txt file which describes the landscape and specifies any usage restrictions or licensing terms for the images used in the landscape.  &lt;br /&gt;
&lt;br /&gt;
===Licensing===&lt;br /&gt;
Before you distribute images as part of a Stellarium landscape, please ensure you are legally entitled to - you must be the copyright holder for the images, or be able to distribute them for use with Stellarium under the terms of some agreement with the copyright holder (e.g. Creative Commons licensed images found on the web).&lt;br /&gt;
&lt;br /&gt;
It is important to explicitly state what use may be made of images for your landscape.  This should be done in the readme.txt file inside the .zip file.&lt;br /&gt;
&lt;br /&gt;
We recommend an open source license compatible with Stellarium itself (i.e. the GNU GPL), or one of the Creative Commons licenses.  &lt;br /&gt;
&lt;br /&gt;
===Example package contents===&lt;br /&gt;
&lt;br /&gt;
From the Mars Husband Hill landscape:&lt;br /&gt;
&lt;br /&gt;
 Archive:  landscape_mars_husband_hill.zip&lt;br /&gt;
   Length     Date   Time    Name&lt;br /&gt;
  --------    ----   ----    ----&lt;br /&gt;
   1815308  02-05-07 21:02   mars_husband_hill/husband_hill.png&lt;br /&gt;
       211  05-28-07 19:44   mars_husband_hill/landscape.ini&lt;br /&gt;
      1096  06-04-07 15:21   mars_husband_hill/readme.txt&lt;br /&gt;
  --------                   -------&lt;br /&gt;
   1816615                   3 files&lt;br /&gt;
&lt;br /&gt;
The readme.txt file should look something like this:&lt;br /&gt;
&lt;br /&gt;
 Mars Husband Hill Landscape for Stellarium&lt;br /&gt;
 ==========================================&lt;br /&gt;
 &lt;br /&gt;
 Description&lt;br /&gt;
 -----------&lt;br /&gt;
 &lt;br /&gt;
 This landscape was taken from the NASA Spirit Rover on Mars.&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 Files&lt;br /&gt;
 -----&lt;br /&gt;
 &lt;br /&gt;
 This file (readme.txt) should have come in a zip file with some others&lt;br /&gt;
 Here is a listing of all the files which should be in the zip file:&lt;br /&gt;
 &lt;br /&gt;
   mars/readme.txt&lt;br /&gt;
   mars/landscape.ini&lt;br /&gt;
   mars/husband_hill.png&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 Installation &amp;amp; Use&lt;br /&gt;
 ------------------&lt;br /&gt;
 &lt;br /&gt;
 Unzip the landscape package file in your personal stellarium data&lt;br /&gt;
 directory, or the &amp;lt;config_root&amp;gt;/landscapes directory.  The location&lt;br /&gt;
 varyies depending on your operating system.  See the Stellarium&lt;br /&gt;
 User Guide for per-platform details.&lt;br /&gt;
 &lt;br /&gt;
 Once you have installed the landscape, open Stellarium and go to the&lt;br /&gt;
 configuration dialog.  Select the landscapes tab, and select the landscape&lt;br /&gt;
 from the list of available landscapes.&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 Credits&lt;br /&gt;
 -------&lt;br /&gt;
 &lt;br /&gt;
 Image credit: NASA/JPL-Caltech/Cornell&lt;br /&gt;
 http://marsrovers.jpl.nasa.gov/gallery/panoramas/opportunity/index.html&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 License&lt;br /&gt;
 -------&lt;br /&gt;
 &lt;br /&gt;
 NASA Images are released into the public domain&lt;br /&gt;
&lt;br /&gt;
===File encoding===&lt;br /&gt;
The landscape.ini and readme.txt files should be UTF-8 encoded text or plain ASCII.  It's probably a good idea to adopt the Windows line ending encoding, (i.e. CR LF).  Both Windows and *nix style line ending encoding should work OK in Stellarium, but Windows users will have an ugly time reading the readme.txt if it uses *nix-style newlines.&lt;br /&gt;
&lt;br /&gt;
===Need hosting?===&lt;br /&gt;
&lt;br /&gt;
If you have a landscape you would like to share but have no web-space to put it, email [[User:matthewg42|me]] and I'll put it on [http://porpoisehead.net/ my site].&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
*[[Landscape Rotation]] - how to set landscape rotation so that a certain point is due north&lt;br /&gt;
*The user guide, section 5.7: [[Customising Landscapes]]&lt;br /&gt;
&lt;br /&gt;
==Tools==&lt;br /&gt;
The following tools may be useful to people who wish to create their own landscapes:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| width=15% | '''Program''' || width=20% | '''Platform(s)''' || width=15% | '''License''' || width=40% | '''Notes''' &lt;br /&gt;
|-&lt;br /&gt;
|[http://www.cs.ubc.ca/~mbrown/autostitch/autostitch.html Autostitch] &lt;br /&gt;
| Windows; may also run on Linux using [http://www.winehq.org/ Wine]&lt;br /&gt;
| Shareware/demo &lt;br /&gt;
| Looks like it produces good results.  Registered version includes extra types of projection.  No source code.&lt;br /&gt;
|-&lt;br /&gt;
|[http://hugin.sourceforge.net/ Hugin] &lt;br /&gt;
| Linux; FreeBSD; MacOSX; Windows&lt;br /&gt;
| Free/open source (GNU GPL)&lt;br /&gt;
| Hugin is a nice GUI for Panorama Tools&lt;br /&gt;
|-&lt;br /&gt;
||[http://webuser.fh-furtwangen.de/~dersch/ Panorama Tools]&lt;br /&gt;
| Linux; FreeBSD; MacOSX; Windows&lt;br /&gt;
| Free/open source (GNU GPL)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Microsoft's [http://research.microsoft.com/en-us/um/redmond/groups/ivm/ICE/ Image Composite Editor]&lt;br /&gt;
| Windows&lt;br /&gt;
| Free (costless) &lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
*[http://stargazerslounge.com/primers-tutorials/122628-tutorial-custom-stellarium-landscapes.html Tutorial: Custom Stellarium landscapes], thread at the Stargazers Lounge forum&lt;br /&gt;
*[http://www.cloudynights.com/ubbthreads/showflat.php/Number/3759113/ Stellarium landscape image of my back porch], thread at the Cloudy Nights forum (discusses using a home-made fish-eye lens from a peep-hole to create a &amp;quot;fisheye&amp;quot; landscape)&lt;br /&gt;
&lt;br /&gt;
[[Category:Landscapes]]&lt;br /&gt;
[[Category:Customization]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X</id>
		<title>Compilation on Mac OS X</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X"/>
				<updated>2012-11-26T22:10:37Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: /* Prepare Mac OS X to build Stellarium */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This document describes how to build Stellarium from sources on Mac OS X. This process ought to improve over time.&lt;br /&gt;
&lt;br /&gt;
The set of instructions was written for the 0.10.4 release and using an Intel machine with Leopard (10.5). The process has been validated on 10.6, 10.7 and 10.8.x.&lt;br /&gt;
&lt;br /&gt;
== Prepare Mac OS X to build Stellarium ==  &lt;br /&gt;
&lt;br /&gt;
Since Stellarium version 0.10.6, you need a machine with Mac OS X 10.5&amp;lt;ref&amp;gt;If you build Stellarium 0.10.6+ by yourself on Mac OS X 10.4.11 then you need edit info.plist file then change value for LSMinimumSystemVersion key. You'll have to get [ftp://ftp.qt.nokia.com/qt/source/ older versions of Qt (Carbon)] too, if you want to create universal binaries (PPC and Intel).&amp;lt;/ref&amp;gt;. These instructions were tested with Mac OS X 10.6 or later, including Mountain Lion (10.8.2 at the time these instructions are written).&lt;br /&gt;
&lt;br /&gt;
# Install the latest version of Apple's Developer Tools: http://developer.apple.com/technology/xcode.html&lt;br /&gt;
# Install the latest stable version of Qt Libraries from the dmg (4.8.3 at the time these instructions were written): http://qt-project.org/downloads#qt-lib&lt;br /&gt;
# Install macports: http://www.macports.org/install.php&lt;br /&gt;
# Install cmake using macports: &amp;lt;code&amp;gt;$ sudo port install cmake&amp;lt;/code&amp;gt;&lt;br /&gt;
# Install bazaar using macports: &amp;lt;code&amp;gt;$ sudo port install bzr&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Compiling dependencies to build an universal binary ==&lt;br /&gt;
&lt;br /&gt;
'''Note: This step is needed only if you need an universal binary. If you don't intend to create an universal package you can skip this and going to the next section [[#Building Stellarium itself|Building Stellarium itself]].'''&lt;br /&gt;
&lt;br /&gt;
We have to compile the dependencies with special flags to be able to generate an universal binary. &lt;br /&gt;
&lt;br /&gt;
In case you are compiling in a Leopard or Snow Leopard machine you have to recompile stellarium dependencies making use of the oldest system libraries (in our case those in 10.4 aka Tiger). We need the following compilation flags:&lt;br /&gt;
&lt;br /&gt;
a. We want to generate a single binary for both intel and ppc architectures so:&lt;br /&gt;
&lt;br /&gt;
-arch i386 -arch ppc &lt;br /&gt;
&lt;br /&gt;
b. We want to link with the old framework and system libraries:&lt;br /&gt;
&lt;br /&gt;
-mmacosx-version-min=10.4 &lt;br /&gt;
-isysroot /Developer/SDKs/MacOSX10.4u.sdk/ (Not sure if this is really needed)&lt;br /&gt;
&lt;br /&gt;
=== Compiling dependencies ===&lt;br /&gt;
&lt;br /&gt;
- Libiconv: It's important to compile libiconv in the first place because gettext depends on it. Get the latest release from here: http://www.gnu.org/software/libiconv/ Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure --prefix=/usr CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
- Gettext: Get the latest release from here: http://www.gnu.org/software/gettext/ . Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
At the moment of writing these steps 4.6.2 is the latest version of Qt. Trolltech provides support from MacOS 10.4 to 10.6 so our binaries will be constrained by this. I went through these instructions in a Leopard machine. To compile in Snow Leopard it's necessary to consider the following notes copied from the Qt 4.6.0 changelog:&lt;br /&gt;
&lt;br /&gt;
* Gcc 4.2 is used by default. Configure with -platform macx-g++40 to select 4.0.&lt;br /&gt;
* Using the 10.4u SDK requires gcc 4.0.&lt;br /&gt;
* Configuring for the Cocoa port (-cocoa) produces 64-bit binaries by default. Use the -arch flags to override.&lt;br /&gt;
* Building for ppc64 is no longer supported by the gcc tool chain.&lt;br /&gt;
* Building for ppc is still supported.&lt;br /&gt;
&lt;br /&gt;
I haven't tried to generate universal binaries on a Snow Leopard machine. We have to validate these steps.&lt;br /&gt;
&lt;br /&gt;
== Building Stellarium itself ==&lt;br /&gt;
&lt;br /&gt;
Create a build directory with your favorite shell (the following directory is just an example, you can pick any name and path you want)&lt;br /&gt;
&lt;br /&gt;
 $ mkdir ~/Development&lt;br /&gt;
 $ cd ~/Development&lt;br /&gt;
&lt;br /&gt;
=== Getting Stellarium source code ===&lt;br /&gt;
&lt;br /&gt;
In that directory checkout the sources with the bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr branch lp:stellarium stellarium&lt;br /&gt;
&lt;br /&gt;
For more details, see [[Bzr checkout|the Bazaar checkout instructions]].&lt;br /&gt;
&lt;br /&gt;
If you have already done it once, you have just to update your copy using this bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr pull&lt;br /&gt;
&lt;br /&gt;
=== Time to compile Stellarium ===&lt;br /&gt;
&lt;br /&gt;
We setup the build directory&lt;br /&gt;
&lt;br /&gt;
 $ cd stellarium &lt;br /&gt;
 $ mkdir -p builds/macosx&lt;br /&gt;
 $ cd builds/macosx&lt;br /&gt;
&lt;br /&gt;
[[Configuring Build Options|We run cmake]]&amp;lt;ref&amp;gt;If you've installed the Qt Creator dmg instead of the Qt Libraries, cmake will complain that it can't find Qt and you'll have to pass as an option the location of your QtSDK installation, e.g.&lt;br /&gt;
 $ cmake -DQT_QMAKE_EXECUTABLE=~/Development/QtSDK/Desktop/Qt/4.8.2/gcc/bin/qmake ../..&lt;br /&gt;
Other things will later go wrong too, especially when making the application bundle.&lt;br /&gt;
&amp;lt;/ref&amp;gt;...&lt;br /&gt;
&lt;br /&gt;
 $ cmake ../..&lt;br /&gt;
&lt;br /&gt;
... and compile&lt;br /&gt;
&lt;br /&gt;
 $ make&lt;br /&gt;
&lt;br /&gt;
== Packaging ==&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT''': you should delete or move aside the old Stellarium.app before each new build:&lt;br /&gt;
&lt;br /&gt;
 $ rm -r Stellarium.app/&lt;br /&gt;
&lt;br /&gt;
Then make the Mac OS X application:&lt;br /&gt;
&lt;br /&gt;
 $ make install&lt;br /&gt;
 $ make macosx_bundle&lt;br /&gt;
&lt;br /&gt;
The macosx_bundle target includes a perl script that makes use of otool and install_name_tool to:&lt;br /&gt;
&lt;br /&gt;
# read the link dependencies of Stellarium.app/Contents/MacOS/stellarium&lt;br /&gt;
# copy those dependencies into the app (.frameworks and .dylibs)&lt;br /&gt;
# recurse on those copied-in dependencies, stopping at a point where system libraries are called for&lt;br /&gt;
&lt;br /&gt;
== We recommend Qt Creator ==&lt;br /&gt;
&lt;br /&gt;
The core group of developers of stellarium uses QtCreator as main IDE, its integration with Qt and the possibility of having a consistent tool through different platforms makes it the most suitable option for our goals.&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
All kinds of things might go wrong!  &lt;br /&gt;
&lt;br /&gt;
We will write here the most frequent problems and the possible solutions found by the developers. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X</id>
		<title>Compilation on Mac OS X</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X"/>
				<updated>2012-11-26T22:09:14Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: /* Prepare Mac OS X to build Stellarium */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This document describes how to build Stellarium from sources on Mac OS X. This process ought to improve over time.&lt;br /&gt;
&lt;br /&gt;
The set of instructions was written for the 0.10.4 release and using an Intel machine with Leopard (10.5). The process has been validated on 10.6, 10.7 and 10.8.x.&lt;br /&gt;
&lt;br /&gt;
== Prepare Mac OS X to build Stellarium ==  &lt;br /&gt;
&lt;br /&gt;
Since Stellarium version 0.10.6, you need a machine with Mac OS X 10.5&amp;lt;ref&amp;gt;If you build Stellarium 0.10.6+ by yourself on Mac OS X 10.4.11 then you need edit info.plist file then change value for LSMinimumSystemVersion key. You'll have to get [ftp://ftp.qt.nokia.com/qt/source/ older versions of Qt (Carbon)] too, if you want to create universal binaries (PPC and Intel).&amp;lt;/ref&amp;gt;. These instructions were tested with Mac OS X 10.6 or later, including Mountain Lion (10.8.2 at the time these instructions are written).&lt;br /&gt;
&lt;br /&gt;
# Install the latest version of Apple's Developer Tools: http://developer.apple.com/technology/xcode.html&lt;br /&gt;
# Install the latest version of Qt Libraries from the dmg (4.8.3 at the time these instructions were written): http://qt-project.org/downloads#qt-lib&lt;br /&gt;
# Install macports: http://www.macports.org/install.php&lt;br /&gt;
# Install cmake using macports: &amp;lt;code&amp;gt;$ sudo port install cmake&amp;lt;/code&amp;gt;&lt;br /&gt;
# Install bazaar using macports: &amp;lt;code&amp;gt;$ sudo port install bzr&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Compiling dependencies to build an universal binary ==&lt;br /&gt;
&lt;br /&gt;
'''Note: This step is needed only if you need an universal binary. If you don't intend to create an universal package you can skip this and going to the next section [[#Building Stellarium itself|Building Stellarium itself]].'''&lt;br /&gt;
&lt;br /&gt;
We have to compile the dependencies with special flags to be able to generate an universal binary. &lt;br /&gt;
&lt;br /&gt;
In case you are compiling in a Leopard or Snow Leopard machine you have to recompile stellarium dependencies making use of the oldest system libraries (in our case those in 10.4 aka Tiger). We need the following compilation flags:&lt;br /&gt;
&lt;br /&gt;
a. We want to generate a single binary for both intel and ppc architectures so:&lt;br /&gt;
&lt;br /&gt;
-arch i386 -arch ppc &lt;br /&gt;
&lt;br /&gt;
b. We want to link with the old framework and system libraries:&lt;br /&gt;
&lt;br /&gt;
-mmacosx-version-min=10.4 &lt;br /&gt;
-isysroot /Developer/SDKs/MacOSX10.4u.sdk/ (Not sure if this is really needed)&lt;br /&gt;
&lt;br /&gt;
=== Compiling dependencies ===&lt;br /&gt;
&lt;br /&gt;
- Libiconv: It's important to compile libiconv in the first place because gettext depends on it. Get the latest release from here: http://www.gnu.org/software/libiconv/ Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure --prefix=/usr CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
- Gettext: Get the latest release from here: http://www.gnu.org/software/gettext/ . Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
At the moment of writing these steps 4.6.2 is the latest version of Qt. Trolltech provides support from MacOS 10.4 to 10.6 so our binaries will be constrained by this. I went through these instructions in a Leopard machine. To compile in Snow Leopard it's necessary to consider the following notes copied from the Qt 4.6.0 changelog:&lt;br /&gt;
&lt;br /&gt;
* Gcc 4.2 is used by default. Configure with -platform macx-g++40 to select 4.0.&lt;br /&gt;
* Using the 10.4u SDK requires gcc 4.0.&lt;br /&gt;
* Configuring for the Cocoa port (-cocoa) produces 64-bit binaries by default. Use the -arch flags to override.&lt;br /&gt;
* Building for ppc64 is no longer supported by the gcc tool chain.&lt;br /&gt;
* Building for ppc is still supported.&lt;br /&gt;
&lt;br /&gt;
I haven't tried to generate universal binaries on a Snow Leopard machine. We have to validate these steps.&lt;br /&gt;
&lt;br /&gt;
== Building Stellarium itself ==&lt;br /&gt;
&lt;br /&gt;
Create a build directory with your favorite shell (the following directory is just an example, you can pick any name and path you want)&lt;br /&gt;
&lt;br /&gt;
 $ mkdir ~/Development&lt;br /&gt;
 $ cd ~/Development&lt;br /&gt;
&lt;br /&gt;
=== Getting Stellarium source code ===&lt;br /&gt;
&lt;br /&gt;
In that directory checkout the sources with the bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr branch lp:stellarium stellarium&lt;br /&gt;
&lt;br /&gt;
For more details, see [[Bzr checkout|the Bazaar checkout instructions]].&lt;br /&gt;
&lt;br /&gt;
If you have already done it once, you have just to update your copy using this bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr pull&lt;br /&gt;
&lt;br /&gt;
=== Time to compile Stellarium ===&lt;br /&gt;
&lt;br /&gt;
We setup the build directory&lt;br /&gt;
&lt;br /&gt;
 $ cd stellarium &lt;br /&gt;
 $ mkdir -p builds/macosx&lt;br /&gt;
 $ cd builds/macosx&lt;br /&gt;
&lt;br /&gt;
[[Configuring Build Options|We run cmake]]&amp;lt;ref&amp;gt;If you've installed the Qt Creator dmg instead of the Qt Libraries, cmake will complain that it can't find Qt and you'll have to pass as an option the location of your QtSDK installation, e.g.&lt;br /&gt;
 $ cmake -DQT_QMAKE_EXECUTABLE=~/Development/QtSDK/Desktop/Qt/4.8.2/gcc/bin/qmake ../..&lt;br /&gt;
Other things will later go wrong too, especially when making the application bundle.&lt;br /&gt;
&amp;lt;/ref&amp;gt;...&lt;br /&gt;
&lt;br /&gt;
 $ cmake ../..&lt;br /&gt;
&lt;br /&gt;
... and compile&lt;br /&gt;
&lt;br /&gt;
 $ make&lt;br /&gt;
&lt;br /&gt;
== Packaging ==&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT''': you should delete or move aside the old Stellarium.app before each new build:&lt;br /&gt;
&lt;br /&gt;
 $ rm -r Stellarium.app/&lt;br /&gt;
&lt;br /&gt;
Then make the Mac OS X application:&lt;br /&gt;
&lt;br /&gt;
 $ make install&lt;br /&gt;
 $ make macosx_bundle&lt;br /&gt;
&lt;br /&gt;
The macosx_bundle target includes a perl script that makes use of otool and install_name_tool to:&lt;br /&gt;
&lt;br /&gt;
# read the link dependencies of Stellarium.app/Contents/MacOS/stellarium&lt;br /&gt;
# copy those dependencies into the app (.frameworks and .dylibs)&lt;br /&gt;
# recurse on those copied-in dependencies, stopping at a point where system libraries are called for&lt;br /&gt;
&lt;br /&gt;
== We recommend Qt Creator ==&lt;br /&gt;
&lt;br /&gt;
The core group of developers of stellarium uses QtCreator as main IDE, its integration with Qt and the possibility of having a consistent tool through different platforms makes it the most suitable option for our goals.&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
All kinds of things might go wrong!  &lt;br /&gt;
&lt;br /&gt;
We will write here the most frequent problems and the possible solutions found by the developers. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X</id>
		<title>Compilation on Mac OS X</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X"/>
				<updated>2012-11-23T12:29:24Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: /* Compiling dependencies to build an universal binary */ Typo&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This document describes how to build Stellarium from sources on Mac OS X. This process ought to improve over time.&lt;br /&gt;
&lt;br /&gt;
The set of instructions was written for the 0.10.4 release and using an Intel machine with Leopard (10.5). The process has been validated on 10.6, 10.7 and 10.8.x.&lt;br /&gt;
&lt;br /&gt;
== Prepare Mac OS X to build Stellarium ==  &lt;br /&gt;
&lt;br /&gt;
Since Stellarium version 0.10.6, you need a machine with Mac OS X 10.5. These instructions were tested with Mac OS X 10.6 (latest version 10.6.8) or later&amp;lt;ref&amp;gt;If you build Stellarium 0.10.6+ by yourself on Mac OS X 10.4.11 then you need edit info.plist file then change value for LSMinimumSystemVersion key. You'll have to get [ftp://ftp.qt.nokia.com/qt/source/ older versions of Qt (Carbon)] too, if you want to create universal binaries (PPC and Intel).&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
# Install the latest version of Apple's Developer Tools: http://developer.apple.com/technology/xcode.html&lt;br /&gt;
# Install the latest version of Qt Libraries from the dmg (4.8.3 at the time these instructions were written): http://qt-project.org/downloads#qt-lib&lt;br /&gt;
# Install macports: http://www.macports.org/install.php&lt;br /&gt;
# Install cmake using macports: &amp;lt;code&amp;gt;$ sudo port install cmake&amp;lt;/code&amp;gt;&lt;br /&gt;
# Install bazaar using macports: &amp;lt;code&amp;gt;$ sudo port install bzr&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Compiling dependencies to build an universal binary ==&lt;br /&gt;
&lt;br /&gt;
'''Note: This step is needed only if you need an universal binary. If you don't intend to create an universal package you can skip this and going to the next section [[#Building Stellarium itself|Building Stellarium itself]].'''&lt;br /&gt;
&lt;br /&gt;
We have to compile the dependencies with special flags to be able to generate an universal binary. &lt;br /&gt;
&lt;br /&gt;
In case you are compiling in a Leopard or Snow Leopard machine you have to recompile stellarium dependencies making use of the oldest system libraries (in our case those in 10.4 aka Tiger). We need the following compilation flags:&lt;br /&gt;
&lt;br /&gt;
a. We want to generate a single binary for both intel and ppc architectures so:&lt;br /&gt;
&lt;br /&gt;
-arch i386 -arch ppc &lt;br /&gt;
&lt;br /&gt;
b. We want to link with the old framework and system libraries:&lt;br /&gt;
&lt;br /&gt;
-mmacosx-version-min=10.4 &lt;br /&gt;
-isysroot /Developer/SDKs/MacOSX10.4u.sdk/ (Not sure if this is really needed)&lt;br /&gt;
&lt;br /&gt;
=== Compiling dependencies ===&lt;br /&gt;
&lt;br /&gt;
- Libiconv: It's important to compile libiconv in the first place because gettext depends on it. Get the latest release from here: http://www.gnu.org/software/libiconv/ Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure --prefix=/usr CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
- Gettext: Get the latest release from here: http://www.gnu.org/software/gettext/ . Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
At the moment of writing these steps 4.6.2 is the latest version of Qt. Trolltech provides support from MacOS 10.4 to 10.6 so our binaries will be constrained by this. I went through these instructions in a Leopard machine. To compile in Snow Leopard it's necessary to consider the following notes copied from the Qt 4.6.0 changelog:&lt;br /&gt;
&lt;br /&gt;
* Gcc 4.2 is used by default. Configure with -platform macx-g++40 to select 4.0.&lt;br /&gt;
* Using the 10.4u SDK requires gcc 4.0.&lt;br /&gt;
* Configuring for the Cocoa port (-cocoa) produces 64-bit binaries by default. Use the -arch flags to override.&lt;br /&gt;
* Building for ppc64 is no longer supported by the gcc tool chain.&lt;br /&gt;
* Building for ppc is still supported.&lt;br /&gt;
&lt;br /&gt;
I haven't tried to generate universal binaries on a Snow Leopard machine. We have to validate these steps.&lt;br /&gt;
&lt;br /&gt;
== Building Stellarium itself ==&lt;br /&gt;
&lt;br /&gt;
Create a build directory with your favorite shell (the following directory is just an example, you can pick any name and path you want)&lt;br /&gt;
&lt;br /&gt;
 $ mkdir ~/Development&lt;br /&gt;
 $ cd ~/Development&lt;br /&gt;
&lt;br /&gt;
=== Getting Stellarium source code ===&lt;br /&gt;
&lt;br /&gt;
In that directory checkout the sources with the bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr branch lp:stellarium stellarium&lt;br /&gt;
&lt;br /&gt;
For more details, see [[Bzr checkout|the Bazaar checkout instructions]].&lt;br /&gt;
&lt;br /&gt;
If you have already done it once, you have just to update your copy using this bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr pull&lt;br /&gt;
&lt;br /&gt;
=== Time to compile Stellarium ===&lt;br /&gt;
&lt;br /&gt;
We setup the build directory&lt;br /&gt;
&lt;br /&gt;
 $ cd stellarium &lt;br /&gt;
 $ mkdir -p builds/macosx&lt;br /&gt;
 $ cd builds/macosx&lt;br /&gt;
&lt;br /&gt;
[[Configuring Build Options|We run cmake]]&amp;lt;ref&amp;gt;If you've installed the Qt Creator dmg instead of the Qt Libraries, cmake will complain that it can't find Qt and you'll have to pass as an option the location of your QtSDK installation, e.g.&lt;br /&gt;
 $ cmake -DQT_QMAKE_EXECUTABLE=~/Development/QtSDK/Desktop/Qt/4.8.2/gcc/bin/qmake ../..&lt;br /&gt;
Other things will later go wrong too, especially when making the application bundle.&lt;br /&gt;
&amp;lt;/ref&amp;gt;...&lt;br /&gt;
&lt;br /&gt;
 $ cmake ../..&lt;br /&gt;
&lt;br /&gt;
... and compile&lt;br /&gt;
&lt;br /&gt;
 $ make&lt;br /&gt;
&lt;br /&gt;
== Packaging ==&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT''': you should delete or move aside the old Stellarium.app before each new build:&lt;br /&gt;
&lt;br /&gt;
 $ rm -r Stellarium.app/&lt;br /&gt;
&lt;br /&gt;
Then make the Mac OS X application:&lt;br /&gt;
&lt;br /&gt;
 $ make install&lt;br /&gt;
 $ make macosx_bundle&lt;br /&gt;
&lt;br /&gt;
The macosx_bundle target includes a perl script that makes use of otool and install_name_tool to:&lt;br /&gt;
&lt;br /&gt;
# read the link dependencies of Stellarium.app/Contents/MacOS/stellarium&lt;br /&gt;
# copy those dependencies into the app (.frameworks and .dylibs)&lt;br /&gt;
# recurse on those copied-in dependencies, stopping at a point where system libraries are called for&lt;br /&gt;
&lt;br /&gt;
== We recommend Qt Creator ==&lt;br /&gt;
&lt;br /&gt;
The core group of developers of stellarium uses QtCreator as main IDE, its integration with Qt and the possibility of having a consistent tool through different platforms makes it the most suitable option for our goals.&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
All kinds of things might go wrong!  &lt;br /&gt;
&lt;br /&gt;
We will write here the most frequent problems and the possible solutions found by the developers. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X</id>
		<title>Compilation on Mac OS X</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X"/>
				<updated>2012-11-23T12:27:42Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: /* Compiling dependencies to build an universal binary */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This document describes how to build Stellarium from sources on Mac OS X. This process ought to improve over time.&lt;br /&gt;
&lt;br /&gt;
The set of instructions was written for the 0.10.4 release and using an Intel machine with Leopard (10.5). The process has been validated on 10.6, 10.7 and 10.8.x.&lt;br /&gt;
&lt;br /&gt;
== Prepare Mac OS X to build Stellarium ==  &lt;br /&gt;
&lt;br /&gt;
Since Stellarium version 0.10.6, you need a machine with Mac OS X 10.5. These instructions were tested with Mac OS X 10.6 (latest version 10.6.8) or later&amp;lt;ref&amp;gt;If you build Stellarium 0.10.6+ by yourself on Mac OS X 10.4.11 then you need edit info.plist file then change value for LSMinimumSystemVersion key. You'll have to get [ftp://ftp.qt.nokia.com/qt/source/ older versions of Qt (Carbon)] too, if you want to create universal binaries (PPC and Intel).&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
# Install the latest version of Apple's Developer Tools: http://developer.apple.com/technology/xcode.html&lt;br /&gt;
# Install the latest version of Qt Libraries from the dmg (4.8.3 at the time these instructions were written): http://qt-project.org/downloads#qt-lib&lt;br /&gt;
# Install macports: http://www.macports.org/install.php&lt;br /&gt;
# Install cmake using macports: &amp;lt;code&amp;gt;$ sudo port install cmake&amp;lt;/code&amp;gt;&lt;br /&gt;
# Install bazaar using macports: &amp;lt;code&amp;gt;$ sudo port install bzr&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Compiling dependencies to build an universal binary ==&lt;br /&gt;
&lt;br /&gt;
'''Note: This step is needed only if you need an universal binary. If you don't intend to create an universal package you can skip this and going to the next section [[#Building stellarium itself|Building stellarium itself]].'''&lt;br /&gt;
&lt;br /&gt;
We have to compile the dependencies with special flags to be able to generate an universal binary. &lt;br /&gt;
&lt;br /&gt;
In case you are compiling in a Leopard or Snow Leopard machine you have to recompile stellarium dependencies making use of the oldest system libraries (in our case those in 10.4 aka Tiger). We need the following compilation flags:&lt;br /&gt;
&lt;br /&gt;
a. We want to generate a single binary for both intel and ppc architectures so:&lt;br /&gt;
&lt;br /&gt;
-arch i386 -arch ppc &lt;br /&gt;
&lt;br /&gt;
b. We want to link with the old framework and system libraries:&lt;br /&gt;
&lt;br /&gt;
-mmacosx-version-min=10.4 &lt;br /&gt;
-isysroot /Developer/SDKs/MacOSX10.4u.sdk/ (Not sure if this is really needed)&lt;br /&gt;
&lt;br /&gt;
=== Compiling dependencies ===&lt;br /&gt;
&lt;br /&gt;
- Libiconv: It's important to compile libiconv in the first place because gettext depends on it. Get the latest release from here: http://www.gnu.org/software/libiconv/ Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure --prefix=/usr CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
- Gettext: Get the latest release from here: http://www.gnu.org/software/gettext/ . Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
At the moment of writing these steps 4.6.2 is the latest version of Qt. Trolltech provides support from MacOS 10.4 to 10.6 so our binaries will be constrained by this. I went through these instructions in a Leopard machine. To compile in Snow Leopard it's necessary to consider the following notes copied from the Qt 4.6.0 changelog:&lt;br /&gt;
&lt;br /&gt;
* Gcc 4.2 is used by default. Configure with -platform macx-g++40 to select 4.0.&lt;br /&gt;
* Using the 10.4u SDK requires gcc 4.0.&lt;br /&gt;
* Configuring for the Cocoa port (-cocoa) produces 64-bit binaries by default. Use the -arch flags to override.&lt;br /&gt;
* Building for ppc64 is no longer supported by the gcc tool chain.&lt;br /&gt;
* Building for ppc is still supported.&lt;br /&gt;
&lt;br /&gt;
I haven't tried to generate universal binaries on a Snow Leopard machine. We have to validate these steps.&lt;br /&gt;
&lt;br /&gt;
== Building Stellarium itself ==&lt;br /&gt;
&lt;br /&gt;
Create a build directory with your favorite shell (the following directory is just an example, you can pick any name and path you want)&lt;br /&gt;
&lt;br /&gt;
 $ mkdir ~/Development&lt;br /&gt;
 $ cd ~/Development&lt;br /&gt;
&lt;br /&gt;
=== Getting Stellarium source code ===&lt;br /&gt;
&lt;br /&gt;
In that directory checkout the sources with the bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr branch lp:stellarium stellarium&lt;br /&gt;
&lt;br /&gt;
For more details, see [[Bzr checkout|the Bazaar checkout instructions]].&lt;br /&gt;
&lt;br /&gt;
If you have already done it once, you have just to update your copy using this bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr pull&lt;br /&gt;
&lt;br /&gt;
=== Time to compile Stellarium ===&lt;br /&gt;
&lt;br /&gt;
We setup the build directory&lt;br /&gt;
&lt;br /&gt;
 $ cd stellarium &lt;br /&gt;
 $ mkdir -p builds/macosx&lt;br /&gt;
 $ cd builds/macosx&lt;br /&gt;
&lt;br /&gt;
[[Configuring Build Options|We run cmake]]&amp;lt;ref&amp;gt;If you've installed the Qt Creator dmg instead of the Qt Libraries, cmake will complain that it can't find Qt and you'll have to pass as an option the location of your QtSDK installation, e.g.&lt;br /&gt;
 $ cmake -DQT_QMAKE_EXECUTABLE=~/Development/QtSDK/Desktop/Qt/4.8.2/gcc/bin/qmake ../..&lt;br /&gt;
Other things will later go wrong too, especially when making the application bundle.&lt;br /&gt;
&amp;lt;/ref&amp;gt;...&lt;br /&gt;
&lt;br /&gt;
 $ cmake ../..&lt;br /&gt;
&lt;br /&gt;
... and compile&lt;br /&gt;
&lt;br /&gt;
 $ make&lt;br /&gt;
&lt;br /&gt;
== Packaging ==&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT''': you should delete or move aside the old Stellarium.app before each new build:&lt;br /&gt;
&lt;br /&gt;
 $ rm -r Stellarium.app/&lt;br /&gt;
&lt;br /&gt;
Then make the Mac OS X application:&lt;br /&gt;
&lt;br /&gt;
 $ make install&lt;br /&gt;
 $ make macosx_bundle&lt;br /&gt;
&lt;br /&gt;
The macosx_bundle target includes a perl script that makes use of otool and install_name_tool to:&lt;br /&gt;
&lt;br /&gt;
# read the link dependencies of Stellarium.app/Contents/MacOS/stellarium&lt;br /&gt;
# copy those dependencies into the app (.frameworks and .dylibs)&lt;br /&gt;
# recurse on those copied-in dependencies, stopping at a point where system libraries are called for&lt;br /&gt;
&lt;br /&gt;
== We recommend Qt Creator ==&lt;br /&gt;
&lt;br /&gt;
The core group of developers of stellarium uses QtCreator as main IDE, its integration with Qt and the possibility of having a consistent tool through different platforms makes it the most suitable option for our goals.&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
All kinds of things might go wrong!  &lt;br /&gt;
&lt;br /&gt;
We will write here the most frequent problems and the possible solutions found by the developers. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X</id>
		<title>Compilation on Mac OS X</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X"/>
				<updated>2012-11-23T12:23:43Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: /* Packaging */ Removing note about error occuring before revision 5558, since we're now around revision 5700&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This document describes how to build Stellarium from sources on Mac OS X. This process ought to improve over time.&lt;br /&gt;
&lt;br /&gt;
The set of instructions was written for the 0.10.4 release and using an Intel machine with Leopard (10.5). The process has been validated on 10.6, 10.7 and 10.8.x.&lt;br /&gt;
&lt;br /&gt;
== Prepare Mac OS X to build Stellarium ==  &lt;br /&gt;
&lt;br /&gt;
Since Stellarium version 0.10.6, you need a machine with Mac OS X 10.5. These instructions were tested with Mac OS X 10.6 (latest version 10.6.8) or later&amp;lt;ref&amp;gt;If you build Stellarium 0.10.6+ by yourself on Mac OS X 10.4.11 then you need edit info.plist file then change value for LSMinimumSystemVersion key. You'll have to get [ftp://ftp.qt.nokia.com/qt/source/ older versions of Qt (Carbon)] too, if you want to create universal binaries (PPC and Intel).&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
# Install the latest version of Apple's Developer Tools: http://developer.apple.com/technology/xcode.html&lt;br /&gt;
# Install the latest version of Qt Libraries from the dmg (4.8.3 at the time these instructions were written): http://qt-project.org/downloads#qt-lib&lt;br /&gt;
# Install macports: http://www.macports.org/install.php&lt;br /&gt;
# Install cmake using macports: &amp;lt;code&amp;gt;$ sudo port install cmake&amp;lt;/code&amp;gt;&lt;br /&gt;
# Install bazaar using macports: &amp;lt;code&amp;gt;$ sudo port install bzr&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Compiling dependencies to build an universal binary ==&lt;br /&gt;
&lt;br /&gt;
We have to compile the dependencies with special flags to be able to generate an universal binary. If you don't intend to create an universal package you can skip this and going to the next section: [[#Building stellarium itself]]&lt;br /&gt;
&lt;br /&gt;
In case you are compiling in a Leopard or Snow Leopard machine you have to recompile stellarium dependencies making use of the oldest system libraries (in our case those in 10.4 aka Tiger). We need the following compilation flags:&lt;br /&gt;
&lt;br /&gt;
a. We want to generate a single binary for both intel and ppc architectures so:&lt;br /&gt;
&lt;br /&gt;
-arch i386 -arch ppc &lt;br /&gt;
&lt;br /&gt;
b. We want to link with the old framework and system libraries:&lt;br /&gt;
&lt;br /&gt;
-mmacosx-version-min=10.4 &lt;br /&gt;
-isysroot /Developer/SDKs/MacOSX10.4u.sdk/ (Not sure if this is really needed)&lt;br /&gt;
&lt;br /&gt;
=== Compiling dependencies ===&lt;br /&gt;
&lt;br /&gt;
- Libiconv: It's important to compile libiconv in the first place because gettext depends on it. Get the latest release from here: http://www.gnu.org/software/libiconv/ Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure --prefix=/usr CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
- Gettext: Get the latest release from here: http://www.gnu.org/software/gettext/ . Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
At the moment of writing these steps 4.6.2 is the latest version of Qt. Trolltech provides support from MacOS 10.4 to 10.6 so our binaries will be constrained by this. I went through these instructions in a Leopard machine. To compile in Snow Leopard it's necessary to consider the following notes copied from the Qt 4.6.0 changelog:&lt;br /&gt;
&lt;br /&gt;
* Gcc 4.2 is used by default. Configure with -platform macx-g++40 to select 4.0.&lt;br /&gt;
* Using the 10.4u SDK requires gcc 4.0.&lt;br /&gt;
* Configuring for the Cocoa port (-cocoa) produces 64-bit binaries by default. Use the -arch flags to override.&lt;br /&gt;
* Building for ppc64 is no longer supported by the gcc tool chain.&lt;br /&gt;
* Building for ppc is still supported.&lt;br /&gt;
&lt;br /&gt;
I haven't tried to generate universal binaries on a Snow Leopard machine. We have to validate these steps.&lt;br /&gt;
  &lt;br /&gt;
== Building Stellarium itself ==&lt;br /&gt;
&lt;br /&gt;
Create a build directory with your favorite shell (the following directory is just an example, you can pick any name and path you want)&lt;br /&gt;
&lt;br /&gt;
 $ mkdir ~/Development&lt;br /&gt;
 $ cd ~/Development&lt;br /&gt;
&lt;br /&gt;
=== Getting Stellarium source code ===&lt;br /&gt;
&lt;br /&gt;
In that directory checkout the sources with the bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr branch lp:stellarium stellarium&lt;br /&gt;
&lt;br /&gt;
For more details, see [[Bzr checkout|the Bazaar checkout instructions]].&lt;br /&gt;
&lt;br /&gt;
If you have already done it once, you have just to update your copy using this bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr pull&lt;br /&gt;
&lt;br /&gt;
=== Time to compile Stellarium ===&lt;br /&gt;
&lt;br /&gt;
We setup the build directory&lt;br /&gt;
&lt;br /&gt;
 $ cd stellarium &lt;br /&gt;
 $ mkdir -p builds/macosx&lt;br /&gt;
 $ cd builds/macosx&lt;br /&gt;
&lt;br /&gt;
[[Configuring Build Options|We run cmake]]&amp;lt;ref&amp;gt;If you've installed the Qt Creator dmg instead of the Qt Libraries, cmake will complain that it can't find Qt and you'll have to pass as an option the location of your QtSDK installation, e.g.&lt;br /&gt;
 $ cmake -DQT_QMAKE_EXECUTABLE=~/Development/QtSDK/Desktop/Qt/4.8.2/gcc/bin/qmake ../..&lt;br /&gt;
Other things will later go wrong too, especially when making the application bundle.&lt;br /&gt;
&amp;lt;/ref&amp;gt;...&lt;br /&gt;
&lt;br /&gt;
 $ cmake ../..&lt;br /&gt;
&lt;br /&gt;
... and compile&lt;br /&gt;
&lt;br /&gt;
 $ make&lt;br /&gt;
&lt;br /&gt;
== Packaging ==&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT''': you should delete or move aside the old Stellarium.app before each new build:&lt;br /&gt;
&lt;br /&gt;
 $ rm -r Stellarium.app/&lt;br /&gt;
&lt;br /&gt;
Then make the Mac OS X application:&lt;br /&gt;
&lt;br /&gt;
 $ make install&lt;br /&gt;
 $ make macosx_bundle&lt;br /&gt;
&lt;br /&gt;
The macosx_bundle target includes a perl script that makes use of otool and install_name_tool to:&lt;br /&gt;
&lt;br /&gt;
# read the link dependencies of Stellarium.app/Contents/MacOS/stellarium&lt;br /&gt;
# copy those dependencies into the app (.frameworks and .dylibs)&lt;br /&gt;
# recurse on those copied-in dependencies, stopping at a point where system libraries are called for&lt;br /&gt;
&lt;br /&gt;
== We recommend Qt Creator ==&lt;br /&gt;
&lt;br /&gt;
The core group of developers of stellarium uses QtCreator as main IDE, its integration with Qt and the possibility of having a consistent tool through different platforms makes it the most suitable option for our goals.&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
All kinds of things might go wrong!  &lt;br /&gt;
&lt;br /&gt;
We will write here the most frequent problems and the possible solutions found by the developers. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X</id>
		<title>Compilation on Mac OS X</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X"/>
				<updated>2012-10-28T13:02:06Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: /* Prepare Mac OS X to build Stellarium */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This document describes how to build Stellarium from sources on Mac OS X. This process ought to improve over time.&lt;br /&gt;
&lt;br /&gt;
The set of instructions was written for the 0.10.4 release and using an Intel machine with Leopard (10.5). The process has been validated on 10.6, 10.7 and 10.8.x.&lt;br /&gt;
&lt;br /&gt;
== Prepare Mac OS X to build Stellarium ==  &lt;br /&gt;
&lt;br /&gt;
Since Stellarium version 0.10.6, you need a machine with Mac OS X 10.5. These instructions were tested with Mac OS X 10.6 (latest version 10.6.8) or later&amp;lt;ref&amp;gt;If you build Stellarium 0.10.6+ by yourself on Mac OS X 10.4.11 then you need edit info.plist file then change value for LSMinimumSystemVersion key. You'll have to get [ftp://ftp.qt.nokia.com/qt/source/ older versions of Qt (Carbon)] too, if you want to create universal binaries (PPC and Intel).&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
# Install the latest version of Apple's Developer Tools: http://developer.apple.com/technology/xcode.html&lt;br /&gt;
# Install the latest version of Qt Libraries from the dmg (4.8.3 at the time these instructions were written): http://qt-project.org/downloads#qt-lib&lt;br /&gt;
# Install macports: http://www.macports.org/install.php&lt;br /&gt;
# Install cmake using macports: &amp;lt;code&amp;gt;$ sudo port install cmake&amp;lt;/code&amp;gt;&lt;br /&gt;
# Install bazaar using macports: &amp;lt;code&amp;gt;$ sudo port install bzr&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Compiling dependencies to build an universal binary ==&lt;br /&gt;
&lt;br /&gt;
We have to compile the dependencies with special flags to be able to generate an universal binary. If you don't intend to create an universal package you can skip this and going to the next section: [[#Building stellarium itself]]&lt;br /&gt;
&lt;br /&gt;
In case you are compiling in a Leopard or Snow Leopard machine you have to recompile stellarium dependencies making use of the oldest system libraries (in our case those in 10.4 aka Tiger). We need the following compilation flags:&lt;br /&gt;
&lt;br /&gt;
a. We want to generate a single binary for both intel and ppc architectures so:&lt;br /&gt;
&lt;br /&gt;
-arch i386 -arch ppc &lt;br /&gt;
&lt;br /&gt;
b. We want to link with the old framework and system libraries:&lt;br /&gt;
&lt;br /&gt;
-mmacosx-version-min=10.4 &lt;br /&gt;
-isysroot /Developer/SDKs/MacOSX10.4u.sdk/ (Not sure if this is really needed)&lt;br /&gt;
&lt;br /&gt;
=== Compiling dependencies ===&lt;br /&gt;
&lt;br /&gt;
- Libiconv: It's important to compile libiconv in the first place because gettext depends on it. Get the latest release from here: http://www.gnu.org/software/libiconv/ Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure --prefix=/usr CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
- Gettext: Get the latest release from here: http://www.gnu.org/software/gettext/ . Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
At the moment of writing these steps 4.6.2 is the latest version of Qt. Trolltech provides support from MacOS 10.4 to 10.6 so our binaries will be constrained by this. I went through these instructions in a Leopard machine. To compile in Snow Leopard it's necessary to consider the following notes copied from the Qt 4.6.0 changelog:&lt;br /&gt;
&lt;br /&gt;
* Gcc 4.2 is used by default. Configure with -platform macx-g++40 to select 4.0.&lt;br /&gt;
* Using the 10.4u SDK requires gcc 4.0.&lt;br /&gt;
* Configuring for the Cocoa port (-cocoa) produces 64-bit binaries by default. Use the -arch flags to override.&lt;br /&gt;
* Building for ppc64 is no longer supported by the gcc tool chain.&lt;br /&gt;
* Building for ppc is still supported.&lt;br /&gt;
&lt;br /&gt;
I haven't tried to generate universal binaries on a Snow Leopard machine. We have to validate these steps.&lt;br /&gt;
  &lt;br /&gt;
== Building Stellarium itself ==&lt;br /&gt;
&lt;br /&gt;
Create a build directory with your favorite shell (the following directory is just an example, you can pick any name and path you want)&lt;br /&gt;
&lt;br /&gt;
 $ mkdir ~/Development&lt;br /&gt;
 $ cd ~/Development&lt;br /&gt;
&lt;br /&gt;
=== Getting Stellarium source code ===&lt;br /&gt;
&lt;br /&gt;
In that directory checkout the sources with the bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr branch lp:stellarium stellarium&lt;br /&gt;
&lt;br /&gt;
For more details, see [[Bzr checkout|the Bazaar checkout instructions]].&lt;br /&gt;
&lt;br /&gt;
If you have already done it once, you have just to update your copy using this bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr pull&lt;br /&gt;
&lt;br /&gt;
=== Time to compile Stellarium ===&lt;br /&gt;
&lt;br /&gt;
We setup the build directory&lt;br /&gt;
&lt;br /&gt;
 $ cd stellarium &lt;br /&gt;
 $ mkdir -p builds/macosx&lt;br /&gt;
 $ cd builds/macosx&lt;br /&gt;
&lt;br /&gt;
[[Configuring Build Options|We run cmake]]&amp;lt;ref&amp;gt;If you've installed the Qt Creator dmg instead of the Qt Libraries, cmake will complain that it can't find Qt and you'll have to pass as an option the location of your QtSDK installation, e.g.&lt;br /&gt;
 $ cmake -DQT_QMAKE_EXECUTABLE=~/Development/QtSDK/Desktop/Qt/4.8.2/gcc/bin/qmake ../..&lt;br /&gt;
Other things will later go wrong too, especially when making the application bundle.&lt;br /&gt;
&amp;lt;/ref&amp;gt;...&lt;br /&gt;
&lt;br /&gt;
 $ cmake ../..&lt;br /&gt;
&lt;br /&gt;
... and compile&lt;br /&gt;
&lt;br /&gt;
 $ make&lt;br /&gt;
&lt;br /&gt;
== Packaging ==&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT''': you should delete or move aside the old Stellarium.app before each new build:&lt;br /&gt;
&lt;br /&gt;
 $ rm -r Stellarium.app/&lt;br /&gt;
&lt;br /&gt;
Then make the Mac OS X application:&lt;br /&gt;
&lt;br /&gt;
 $ make install&lt;br /&gt;
 $ make macosx_bundle&lt;br /&gt;
&lt;br /&gt;
'''Note''' : before revision 5558, this last step didn't work correctly and raised the following error :&lt;br /&gt;
 make[2]: *** No rule to make target `CMakeFiles/install.dir/all', needed by `CMakeFiles/macosx_bundle.dir/all'.  Stop.&lt;br /&gt;
 make[1]: *** [CMakeFiles/macosx_bundle.dir/rule] Error 2&lt;br /&gt;
 make: *** [macosx_bundle] Error 2&lt;br /&gt;
To correct this, you'll have modify file stellarium/builds/macosx/CMakeFiles/Makefile2&amp;lt;ref&amp;gt;Credits to Timothy Reaves, see http://sourceforge.net/mailarchive/message.php?msg_id=29131979&amp;lt;/ref&amp;gt;, changing the line&lt;br /&gt;
 CMakeFiles/macosx_bundle.dir/all: CMakeFiles/install.dir/all&lt;br /&gt;
to&lt;br /&gt;
 CMakeFiles/macosx_bundle.dir/all:&lt;br /&gt;
This is now fixed, thanks to Timothy Reaves.&lt;br /&gt;
&lt;br /&gt;
The macosx_bundle target includes a perl script that makes use of otool and install_name_tool to:&lt;br /&gt;
&lt;br /&gt;
# read the link dependencies of Stellarium.app/Contents/MacOS/stellarium&lt;br /&gt;
# copy those dependencies into the app (.frameworks and .dylibs)&lt;br /&gt;
# recurse on those copied-in dependencies, stopping at a point where system libraries are called for&lt;br /&gt;
&lt;br /&gt;
== We recommend Qt Creator ==&lt;br /&gt;
&lt;br /&gt;
The core group of developers of stellarium uses QtCreator as main IDE, its integration with Qt and the possibility of having a consistent tool through different platforms makes it the most suitable option for our goals.&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
All kinds of things might go wrong!  &lt;br /&gt;
&lt;br /&gt;
We will write here the most frequent problems and the possible solutions found by the developers. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X</id>
		<title>Compilation on Mac OS X</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X"/>
				<updated>2012-10-28T12:57:25Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: /* Prepare Mac OS X to build Stellarium */ Changed way of installung cmake -&amp;gt; macports, as we use it for bazaar anyway&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This document describes how to build Stellarium from sources on Mac OS X. This process ought to improve over time.&lt;br /&gt;
&lt;br /&gt;
The set of instructions was written for the 0.10.4 release and using an Intel machine with Leopard (10.5). The process has been validated on 10.6, 10.7 and 10.8.x.&lt;br /&gt;
&lt;br /&gt;
== Prepare Mac OS X to build Stellarium ==  &lt;br /&gt;
&lt;br /&gt;
Since Stellarium version 0.10.6, you need a machine with Mac OS X 10.5. These instructions were tested with Mac OS X 10.6 (latest version 10.6.8) or later&amp;lt;ref&amp;gt;If you build Stellarium 0.10.6+ by yourself on Mac OS X 10.4.11 then you need edit info.plist file then change value for LSMinimumSystemVersion key. You'll have to get [ftp://ftp.qt.nokia.com/qt/source/ older versions of Qt (Carbon)] too, if you want to create universal binaries (PPC and Intel).&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
# Install the latest version of Apple's Developer Tools: http://developer.apple.com/technology/xcode.html&lt;br /&gt;
# Install the latest version of Qt Libraries from the dmg (4.8.3 at the time these instructions were written): http://qt-project.org/downloads#qt-lib&lt;br /&gt;
# Install macports: http://www.macports.org/install.php&lt;br /&gt;
# Install cmake using macports:&lt;br /&gt;
&lt;br /&gt;
   $ sudo port install cmake&lt;br /&gt;
&lt;br /&gt;
# Install bazaar using macports:&lt;br /&gt;
&lt;br /&gt;
   $ sudo port install bzr&lt;br /&gt;
&lt;br /&gt;
== Compiling dependencies to build an universal binary ==&lt;br /&gt;
&lt;br /&gt;
We have to compile the dependencies with special flags to be able to generate an universal binary. If you don't intend to create an universal package you can skip this and going to the next section: [[#Building stellarium itself]]&lt;br /&gt;
&lt;br /&gt;
In case you are compiling in a Leopard or Snow Leopard machine you have to recompile stellarium dependencies making use of the oldest system libraries (in our case those in 10.4 aka Tiger). We need the following compilation flags:&lt;br /&gt;
&lt;br /&gt;
a. We want to generate a single binary for both intel and ppc architectures so:&lt;br /&gt;
&lt;br /&gt;
-arch i386 -arch ppc &lt;br /&gt;
&lt;br /&gt;
b. We want to link with the old framework and system libraries:&lt;br /&gt;
&lt;br /&gt;
-mmacosx-version-min=10.4 &lt;br /&gt;
-isysroot /Developer/SDKs/MacOSX10.4u.sdk/ (Not sure if this is really needed)&lt;br /&gt;
&lt;br /&gt;
=== Compiling dependencies ===&lt;br /&gt;
&lt;br /&gt;
- Libiconv: It's important to compile libiconv in the first place because gettext depends on it. Get the latest release from here: http://www.gnu.org/software/libiconv/ Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure --prefix=/usr CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
- Gettext: Get the latest release from here: http://www.gnu.org/software/gettext/ . Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
At the moment of writing these steps 4.6.2 is the latest version of Qt. Trolltech provides support from MacOS 10.4 to 10.6 so our binaries will be constrained by this. I went through these instructions in a Leopard machine. To compile in Snow Leopard it's necessary to consider the following notes copied from the Qt 4.6.0 changelog:&lt;br /&gt;
&lt;br /&gt;
* Gcc 4.2 is used by default. Configure with -platform macx-g++40 to select 4.0.&lt;br /&gt;
* Using the 10.4u SDK requires gcc 4.0.&lt;br /&gt;
* Configuring for the Cocoa port (-cocoa) produces 64-bit binaries by default. Use the -arch flags to override.&lt;br /&gt;
* Building for ppc64 is no longer supported by the gcc tool chain.&lt;br /&gt;
* Building for ppc is still supported.&lt;br /&gt;
&lt;br /&gt;
I haven't tried to generate universal binaries on a Snow Leopard machine. We have to validate these steps.&lt;br /&gt;
  &lt;br /&gt;
== Building Stellarium itself ==&lt;br /&gt;
&lt;br /&gt;
Create a build directory with your favorite shell (the following directory is just an example, you can pick any name and path you want)&lt;br /&gt;
&lt;br /&gt;
 $ mkdir ~/Development&lt;br /&gt;
 $ cd ~/Development&lt;br /&gt;
&lt;br /&gt;
=== Getting Stellarium source code ===&lt;br /&gt;
&lt;br /&gt;
In that directory checkout the sources with the bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr branch lp:stellarium stellarium&lt;br /&gt;
&lt;br /&gt;
For more details, see [[Bzr checkout|the Bazaar checkout instructions]].&lt;br /&gt;
&lt;br /&gt;
If you have already done it once, you have just to update your copy using this bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr pull&lt;br /&gt;
&lt;br /&gt;
=== Time to compile Stellarium ===&lt;br /&gt;
&lt;br /&gt;
We setup the build directory&lt;br /&gt;
&lt;br /&gt;
 $ cd stellarium &lt;br /&gt;
 $ mkdir -p builds/macosx&lt;br /&gt;
 $ cd builds/macosx&lt;br /&gt;
&lt;br /&gt;
[[Configuring Build Options|We run cmake]]&amp;lt;ref&amp;gt;If you've installed the Qt Creator dmg instead of the Qt Libraries, cmake will complain that it can't find Qt and you'll have to pass as an option the location of your QtSDK installation, e.g.&lt;br /&gt;
 $ cmake -DQT_QMAKE_EXECUTABLE=~/Development/QtSDK/Desktop/Qt/4.8.2/gcc/bin/qmake ../..&lt;br /&gt;
Other things will later go wrong too, especially when making the application bundle.&lt;br /&gt;
&amp;lt;/ref&amp;gt;...&lt;br /&gt;
&lt;br /&gt;
 $ cmake ../..&lt;br /&gt;
&lt;br /&gt;
... and compile&lt;br /&gt;
&lt;br /&gt;
 $ make&lt;br /&gt;
&lt;br /&gt;
== Packaging ==&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT''': you should delete or move aside the old Stellarium.app before each new build:&lt;br /&gt;
&lt;br /&gt;
 $ rm -r Stellarium.app/&lt;br /&gt;
&lt;br /&gt;
Then make the Mac OS X application:&lt;br /&gt;
&lt;br /&gt;
 $ make install&lt;br /&gt;
 $ make macosx_bundle&lt;br /&gt;
&lt;br /&gt;
'''Note''' : before revision 5558, this last step didn't work correctly and raised the following error :&lt;br /&gt;
 make[2]: *** No rule to make target `CMakeFiles/install.dir/all', needed by `CMakeFiles/macosx_bundle.dir/all'.  Stop.&lt;br /&gt;
 make[1]: *** [CMakeFiles/macosx_bundle.dir/rule] Error 2&lt;br /&gt;
 make: *** [macosx_bundle] Error 2&lt;br /&gt;
To correct this, you'll have modify file stellarium/builds/macosx/CMakeFiles/Makefile2&amp;lt;ref&amp;gt;Credits to Timothy Reaves, see http://sourceforge.net/mailarchive/message.php?msg_id=29131979&amp;lt;/ref&amp;gt;, changing the line&lt;br /&gt;
 CMakeFiles/macosx_bundle.dir/all: CMakeFiles/install.dir/all&lt;br /&gt;
to&lt;br /&gt;
 CMakeFiles/macosx_bundle.dir/all:&lt;br /&gt;
This is now fixed, thanks to Timothy Reaves.&lt;br /&gt;
&lt;br /&gt;
The macosx_bundle target includes a perl script that makes use of otool and install_name_tool to:&lt;br /&gt;
&lt;br /&gt;
# read the link dependencies of Stellarium.app/Contents/MacOS/stellarium&lt;br /&gt;
# copy those dependencies into the app (.frameworks and .dylibs)&lt;br /&gt;
# recurse on those copied-in dependencies, stopping at a point where system libraries are called for&lt;br /&gt;
&lt;br /&gt;
== We recommend Qt Creator ==&lt;br /&gt;
&lt;br /&gt;
The core group of developers of stellarium uses QtCreator as main IDE, its integration with Qt and the possibility of having a consistent tool through different platforms makes it the most suitable option for our goals.&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
All kinds of things might go wrong!  &lt;br /&gt;
&lt;br /&gt;
We will write here the most frequent problems and the possible solutions found by the developers. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/User:Mina</id>
		<title>User:Mina</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/User:Mina"/>
				<updated>2012-09-28T16:40:23Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: No comment&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;User of Stellarium on Mac OS X and of a Digitarium Alpha planetarium projector.&lt;br /&gt;
&lt;br /&gt;
Interested in the [[Compilation on Mac OS X|compilation of Stellarium on Mac OS X]].&lt;br /&gt;
&lt;br /&gt;
== Some notes to self ==&lt;br /&gt;
&lt;br /&gt;
Everything seems OK under OS X 10.8.1, but getting &amp;quot;Incompatible library version: libintl.8.dylib requires version 8.0.0 or later, but libiconv.2.dylib provides version 7.0.0&amp;quot; error at launch, even after reinstalling completely MacPorts.&lt;br /&gt;
&lt;br /&gt;
Cause: during package building, the OS libiconv.2.dylib file (v7.00) is used instead of MacPorts version.&lt;br /&gt;
&lt;br /&gt;
Manual fix: copy /opt/local/lib/libiconv.2.dylib into the Stellarium.app package, replacing OS X version of it.&lt;br /&gt;
&lt;br /&gt;
This error could certainly be corrected by modifying pkgApp.pl script in the util folder, but I'm unable to do it myself.&lt;br /&gt;
&lt;br /&gt;
'''Update (26.08.2012)''': thanks to fixes by T. Reaves, this problem is now history (as of revision 5556). Thanks Timothy :-)&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X</id>
		<title>Compilation on Mac OS X</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X"/>
				<updated>2012-09-27T19:24:22Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: /* Time to compile Stellarium */ Suppression of note about Qt warnings, since these are gone as of Qt 4.8.3&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This document describes how to build Stellarium from sources on Mac OS X. This process ought to improve over time.&lt;br /&gt;
&lt;br /&gt;
The set of instructions was written for the 0.10.4 release and using an Intel machine with Leopard (10.5). The process has been validated on 10.6, 10.7 and 10.8.x.&lt;br /&gt;
&lt;br /&gt;
== Prepare Mac OS X to build Stellarium ==  &lt;br /&gt;
&lt;br /&gt;
Since Stellarium version 0.10.6, you need a machine with Mac OS X 10.5. These instructions were tested with Mac OS X 10.6 (latest version 10.6.8) or later&amp;lt;ref&amp;gt;If you build Stellarium 0.10.6+ by yourself on Mac OS X 10.4.11 then you need edit info.plist file then change value for LSMinimumSystemVersion key. You'll have to get [ftp://ftp.qt.nokia.com/qt/source/ older versions of Qt (Carbon)] too, if you want to create universal binaries (PPC and Intel).&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
# Install the latest version of Apple's Developer Tools: http://developer.apple.com/technology/xcode.html&lt;br /&gt;
# Install the latest version of cmake: http://www.cmake.org/cmake/resources/software.html&lt;br /&gt;
# Install the latest version of Qt Libraries from the dmg (4.8.3 at the time these instructions were written): http://qt-project.org/downloads#qt-lib&lt;br /&gt;
# Install macports: http://www.macports.org/install.php&lt;br /&gt;
# Install bazaar making use of macports:&lt;br /&gt;
&lt;br /&gt;
   $ sudo port install bzr&lt;br /&gt;
&lt;br /&gt;
== Compiling dependencies to build an universal binary ==&lt;br /&gt;
&lt;br /&gt;
We have to compile the dependencies with special flags to be able to generate an universal binary. If you don't intend to create an universal package you can skip this and going to the next section: [[#Building stellarium itself]]&lt;br /&gt;
&lt;br /&gt;
In case you are compiling in a Leopard or Snow Leopard machine you have to recompile stellarium dependencies making use of the oldest system libraries (in our case those in 10.4 aka Tiger). We need the following compilation flags:&lt;br /&gt;
&lt;br /&gt;
a. We want to generate a single binary for both intel and ppc architectures so:&lt;br /&gt;
&lt;br /&gt;
-arch i386 -arch ppc &lt;br /&gt;
&lt;br /&gt;
b. We want to link with the old framework and system libraries:&lt;br /&gt;
&lt;br /&gt;
-mmacosx-version-min=10.4 &lt;br /&gt;
-isysroot /Developer/SDKs/MacOSX10.4u.sdk/ (Not sure if this is really needed)&lt;br /&gt;
&lt;br /&gt;
=== Compiling dependencies ===&lt;br /&gt;
&lt;br /&gt;
- Libiconv: It's important to compile libiconv in the first place because gettext depends on it. Get the latest release from here: http://www.gnu.org/software/libiconv/ Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure --prefix=/usr CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
- Gettext: Get the latest release from here: http://www.gnu.org/software/gettext/ . Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
At the moment of writing these steps 4.6.2 is the latest version of Qt. Trolltech provides support from MacOS 10.4 to 10.6 so our binaries will be constrained by this. I went through these instructions in a Leopard machine. To compile in Snow Leopard it's necessary to consider the following notes copied from the Qt 4.6.0 changelog:&lt;br /&gt;
&lt;br /&gt;
* Gcc 4.2 is used by default. Configure with -platform macx-g++40 to select 4.0.&lt;br /&gt;
* Using the 10.4u SDK requires gcc 4.0.&lt;br /&gt;
* Configuring for the Cocoa port (-cocoa) produces 64-bit binaries by default. Use the -arch flags to override.&lt;br /&gt;
* Building for ppc64 is no longer supported by the gcc tool chain.&lt;br /&gt;
* Building for ppc is still supported.&lt;br /&gt;
&lt;br /&gt;
I haven't tried to generate universal binaries on a Snow Leopard machine. We have to validate these steps.&lt;br /&gt;
  &lt;br /&gt;
== Building Stellarium itself ==&lt;br /&gt;
&lt;br /&gt;
Create a build directory with your favorite shell (the following directory is just an example, you can pick any name and path you want)&lt;br /&gt;
&lt;br /&gt;
 $ mkdir ~/Development&lt;br /&gt;
 $ cd ~/Development&lt;br /&gt;
&lt;br /&gt;
=== Getting Stellarium source code ===&lt;br /&gt;
&lt;br /&gt;
In that directory checkout the sources with the bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr branch lp:stellarium stellarium&lt;br /&gt;
&lt;br /&gt;
For more details, see [[Bzr checkout|the Bazaar checkout instructions]].&lt;br /&gt;
&lt;br /&gt;
If you have already done it once, you have just to update your copy using this bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr pull&lt;br /&gt;
&lt;br /&gt;
=== Time to compile Stellarium ===&lt;br /&gt;
&lt;br /&gt;
We setup the build directory&lt;br /&gt;
&lt;br /&gt;
 $ cd stellarium &lt;br /&gt;
 $ mkdir -p builds/macosx&lt;br /&gt;
 $ cd builds/macosx&lt;br /&gt;
&lt;br /&gt;
[[Configuring Build Options|We run cmake]]&amp;lt;ref&amp;gt;If you've installed the Qt Creator dmg instead of the Qt Libraries, cmake will complain that it can't find Qt and you'll have to pass as an option the location of your QtSDK installation, e.g.&lt;br /&gt;
 $ cmake -DQT_QMAKE_EXECUTABLE=~/Development/QtSDK/Desktop/Qt/4.8.2/gcc/bin/qmake ../..&lt;br /&gt;
Other things will later go wrong too, especially when making the application bundle.&lt;br /&gt;
&amp;lt;/ref&amp;gt;...&lt;br /&gt;
&lt;br /&gt;
 $ cmake ../..&lt;br /&gt;
&lt;br /&gt;
... and compile&lt;br /&gt;
&lt;br /&gt;
 $ make&lt;br /&gt;
&lt;br /&gt;
== Packaging ==&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT''': you should delete or move aside the old Stellarium.app before each new build:&lt;br /&gt;
&lt;br /&gt;
 $ rm -r Stellarium.app/&lt;br /&gt;
&lt;br /&gt;
Then make the Mac OS X application:&lt;br /&gt;
&lt;br /&gt;
 $ make install&lt;br /&gt;
 $ make macosx_bundle&lt;br /&gt;
&lt;br /&gt;
'''Note''' : before revision 5558, this last step didn't work correctly and raised the following error :&lt;br /&gt;
 make[2]: *** No rule to make target `CMakeFiles/install.dir/all', needed by `CMakeFiles/macosx_bundle.dir/all'.  Stop.&lt;br /&gt;
 make[1]: *** [CMakeFiles/macosx_bundle.dir/rule] Error 2&lt;br /&gt;
 make: *** [macosx_bundle] Error 2&lt;br /&gt;
To correct this, you'll have modify file stellarium/builds/macosx/CMakeFiles/Makefile2&amp;lt;ref&amp;gt;Credits to Timothy Reaves, see http://sourceforge.net/mailarchive/message.php?msg_id=29131979&amp;lt;/ref&amp;gt;, changing the line&lt;br /&gt;
 CMakeFiles/macosx_bundle.dir/all: CMakeFiles/install.dir/all&lt;br /&gt;
to&lt;br /&gt;
 CMakeFiles/macosx_bundle.dir/all:&lt;br /&gt;
This is now fixed, thanks to Timothy Reaves.&lt;br /&gt;
&lt;br /&gt;
The macosx_bundle target includes a perl script that makes use of otool and install_name_tool to:&lt;br /&gt;
&lt;br /&gt;
# read the link dependencies of Stellarium.app/Contents/MacOS/stellarium&lt;br /&gt;
# copy those dependencies into the app (.frameworks and .dylibs)&lt;br /&gt;
# recurse on those copied-in dependencies, stopping at a point where system libraries are called for&lt;br /&gt;
&lt;br /&gt;
== We recommend Qt Creator ==&lt;br /&gt;
&lt;br /&gt;
The core group of developers of stellarium uses QtCreator as main IDE, its integration with Qt and the possibility of having a consistent tool through different platforms makes it the most suitable option for our goals.&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
All kinds of things might go wrong!  &lt;br /&gt;
&lt;br /&gt;
We will write here the most frequent problems and the possible solutions found by the developers. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X</id>
		<title>Compilation on Mac OS X</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X"/>
				<updated>2012-09-27T19:21:46Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: /* Prepare Mac OS X to build Stellarium */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This document describes how to build Stellarium from sources on Mac OS X. This process ought to improve over time.&lt;br /&gt;
&lt;br /&gt;
The set of instructions was written for the 0.10.4 release and using an Intel machine with Leopard (10.5). The process has been validated on 10.6, 10.7 and 10.8.x.&lt;br /&gt;
&lt;br /&gt;
== Prepare Mac OS X to build Stellarium ==  &lt;br /&gt;
&lt;br /&gt;
Since Stellarium version 0.10.6, you need a machine with Mac OS X 10.5. These instructions were tested with Mac OS X 10.6 (latest version 10.6.8) or later&amp;lt;ref&amp;gt;If you build Stellarium 0.10.6+ by yourself on Mac OS X 10.4.11 then you need edit info.plist file then change value for LSMinimumSystemVersion key. You'll have to get [ftp://ftp.qt.nokia.com/qt/source/ older versions of Qt (Carbon)] too, if you want to create universal binaries (PPC and Intel).&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
# Install the latest version of Apple's Developer Tools: http://developer.apple.com/technology/xcode.html&lt;br /&gt;
# Install the latest version of cmake: http://www.cmake.org/cmake/resources/software.html&lt;br /&gt;
# Install the latest version of Qt Libraries from the dmg (4.8.3 at the time these instructions were written): http://qt-project.org/downloads#qt-lib&lt;br /&gt;
# Install macports: http://www.macports.org/install.php&lt;br /&gt;
# Install bazaar making use of macports:&lt;br /&gt;
&lt;br /&gt;
   $ sudo port install bzr&lt;br /&gt;
&lt;br /&gt;
== Compiling dependencies to build an universal binary ==&lt;br /&gt;
&lt;br /&gt;
We have to compile the dependencies with special flags to be able to generate an universal binary. If you don't intend to create an universal package you can skip this and going to the next section: [[#Building stellarium itself]]&lt;br /&gt;
&lt;br /&gt;
In case you are compiling in a Leopard or Snow Leopard machine you have to recompile stellarium dependencies making use of the oldest system libraries (in our case those in 10.4 aka Tiger). We need the following compilation flags:&lt;br /&gt;
&lt;br /&gt;
a. We want to generate a single binary for both intel and ppc architectures so:&lt;br /&gt;
&lt;br /&gt;
-arch i386 -arch ppc &lt;br /&gt;
&lt;br /&gt;
b. We want to link with the old framework and system libraries:&lt;br /&gt;
&lt;br /&gt;
-mmacosx-version-min=10.4 &lt;br /&gt;
-isysroot /Developer/SDKs/MacOSX10.4u.sdk/ (Not sure if this is really needed)&lt;br /&gt;
&lt;br /&gt;
=== Compiling dependencies ===&lt;br /&gt;
&lt;br /&gt;
- Libiconv: It's important to compile libiconv in the first place because gettext depends on it. Get the latest release from here: http://www.gnu.org/software/libiconv/ Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure --prefix=/usr CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
- Gettext: Get the latest release from here: http://www.gnu.org/software/gettext/ . Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
At the moment of writing these steps 4.6.2 is the latest version of Qt. Trolltech provides support from MacOS 10.4 to 10.6 so our binaries will be constrained by this. I went through these instructions in a Leopard machine. To compile in Snow Leopard it's necessary to consider the following notes copied from the Qt 4.6.0 changelog:&lt;br /&gt;
&lt;br /&gt;
* Gcc 4.2 is used by default. Configure with -platform macx-g++40 to select 4.0.&lt;br /&gt;
* Using the 10.4u SDK requires gcc 4.0.&lt;br /&gt;
* Configuring for the Cocoa port (-cocoa) produces 64-bit binaries by default. Use the -arch flags to override.&lt;br /&gt;
* Building for ppc64 is no longer supported by the gcc tool chain.&lt;br /&gt;
* Building for ppc is still supported.&lt;br /&gt;
&lt;br /&gt;
I haven't tried to generate universal binaries on a Snow Leopard machine. We have to validate these steps.&lt;br /&gt;
  &lt;br /&gt;
== Building Stellarium itself ==&lt;br /&gt;
&lt;br /&gt;
Create a build directory with your favorite shell (the following directory is just an example, you can pick any name and path you want)&lt;br /&gt;
&lt;br /&gt;
 $ mkdir ~/Development&lt;br /&gt;
 $ cd ~/Development&lt;br /&gt;
&lt;br /&gt;
=== Getting Stellarium source code ===&lt;br /&gt;
&lt;br /&gt;
In that directory checkout the sources with the bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr branch lp:stellarium stellarium&lt;br /&gt;
&lt;br /&gt;
For more details, see [[Bzr checkout|the Bazaar checkout instructions]].&lt;br /&gt;
&lt;br /&gt;
If you have already done it once, you have just to update your copy using this bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr pull&lt;br /&gt;
&lt;br /&gt;
=== Time to compile Stellarium ===&lt;br /&gt;
&lt;br /&gt;
We setup the build directory&lt;br /&gt;
&lt;br /&gt;
 $ cd stellarium &lt;br /&gt;
 $ mkdir -p builds/macosx&lt;br /&gt;
 $ cd builds/macosx&lt;br /&gt;
&lt;br /&gt;
[[Configuring Build Options|We run cmake]]&amp;lt;ref&amp;gt;If you've installed the Qt Creator dmg instead of the Qt Libraries, cmake will complain that it can't find Qt and you'll have to pass as an option the location of your QtSDK installation, e.g.&lt;br /&gt;
 $ cmake -DQT_QMAKE_EXECUTABLE=~/Development/QtSDK/Desktop/Qt/4.8.2/gcc/bin/qmake ../..&lt;br /&gt;
Other things will later go wrong too, especially when making the application bundle.&lt;br /&gt;
&amp;lt;/ref&amp;gt;...&lt;br /&gt;
&lt;br /&gt;
 $ cmake ../..&lt;br /&gt;
&lt;br /&gt;
... and compile&amp;lt;ref&amp;gt;Compiling on Mountain Lion (Mac OS X 10.8.x) will raise a lot of compatibility warnings from Qt. You can ignore them, your binary will run nevertheless.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 $ make&lt;br /&gt;
&lt;br /&gt;
== Packaging ==&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT''': you should delete or move aside the old Stellarium.app before each new build:&lt;br /&gt;
&lt;br /&gt;
 $ rm -r Stellarium.app/&lt;br /&gt;
&lt;br /&gt;
Then make the Mac OS X application:&lt;br /&gt;
&lt;br /&gt;
 $ make install&lt;br /&gt;
 $ make macosx_bundle&lt;br /&gt;
&lt;br /&gt;
'''Note''' : before revision 5558, this last step didn't work correctly and raised the following error :&lt;br /&gt;
 make[2]: *** No rule to make target `CMakeFiles/install.dir/all', needed by `CMakeFiles/macosx_bundle.dir/all'.  Stop.&lt;br /&gt;
 make[1]: *** [CMakeFiles/macosx_bundle.dir/rule] Error 2&lt;br /&gt;
 make: *** [macosx_bundle] Error 2&lt;br /&gt;
To correct this, you'll have modify file stellarium/builds/macosx/CMakeFiles/Makefile2&amp;lt;ref&amp;gt;Credits to Timothy Reaves, see http://sourceforge.net/mailarchive/message.php?msg_id=29131979&amp;lt;/ref&amp;gt;, changing the line&lt;br /&gt;
 CMakeFiles/macosx_bundle.dir/all: CMakeFiles/install.dir/all&lt;br /&gt;
to&lt;br /&gt;
 CMakeFiles/macosx_bundle.dir/all:&lt;br /&gt;
This is now fixed, thanks to Timothy Reaves.&lt;br /&gt;
&lt;br /&gt;
The macosx_bundle target includes a perl script that makes use of otool and install_name_tool to:&lt;br /&gt;
&lt;br /&gt;
# read the link dependencies of Stellarium.app/Contents/MacOS/stellarium&lt;br /&gt;
# copy those dependencies into the app (.frameworks and .dylibs)&lt;br /&gt;
# recurse on those copied-in dependencies, stopping at a point where system libraries are called for&lt;br /&gt;
&lt;br /&gt;
== We recommend Qt Creator ==&lt;br /&gt;
&lt;br /&gt;
The core group of developers of stellarium uses QtCreator as main IDE, its integration with Qt and the possibility of having a consistent tool through different platforms makes it the most suitable option for our goals.&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
All kinds of things might go wrong!  &lt;br /&gt;
&lt;br /&gt;
We will write here the most frequent problems and the possible solutions found by the developers. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X</id>
		<title>Compilation on Mac OS X</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X"/>
				<updated>2012-08-31T13:18:39Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: /* Building stellarium itself */ add intertitle&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This document describes how to build Stellarium from sources on Mac OS X. This process ought to improve over time.&lt;br /&gt;
&lt;br /&gt;
The set of instructions was written for the 0.10.4 release and using an Intel machine with Leopard (10.5). The process has been validated on 10.6, 10.7 and 10.8.x.&lt;br /&gt;
&lt;br /&gt;
== Prepare Mac OS X to build Stellarium ==  &lt;br /&gt;
&lt;br /&gt;
Since Stellarium version 0.10.6, you need a machine with Mac OS X 10.5. These instructions were tested with Mac OS X 10.6 (latest version 10.6.8) or later&amp;lt;ref&amp;gt;If you build Stellarium 0.10.6+ by yourself on Mac OS X 10.4.11 then you need edit info.plist file then change value for LSMinimumSystemVersion key. You'll have to get [ftp://ftp.qt.nokia.com/qt/source/ older versions of Qt (Carbon)] too, if you want to create universal binaries (PPC and Intel).&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
# Install the latest version of Apple's Developer Tools: http://developer.apple.com/technology/xcode.html&lt;br /&gt;
# Install the latest version of cmake: http://www.cmake.org/cmake/resources/software.html&lt;br /&gt;
# Install the latest version of Qt Libraries from the dmg (4.8.2 at the time these instructions were written): http://qt.nokia.com/downloads/downloads#qt-lib&lt;br /&gt;
# Install macports: http://www.macports.org/install.php&lt;br /&gt;
# Install bazaar making use of macports:&lt;br /&gt;
&lt;br /&gt;
   $ sudo port install bzr&lt;br /&gt;
&lt;br /&gt;
== Compiling dependencies to build an universal binary ==&lt;br /&gt;
&lt;br /&gt;
We have to compile the dependencies with special flags to be able to generate an universal binary. If you don't intend to create an universal package you can skip this and going to the next section: [[#Building stellarium itself]]&lt;br /&gt;
&lt;br /&gt;
In case you are compiling in a Leopard or Snow Leopard machine you have to recompile stellarium dependencies making use of the oldest system libraries (in our case those in 10.4 aka Tiger). We need the following compilation flags:&lt;br /&gt;
&lt;br /&gt;
a. We want to generate a single binary for both intel and ppc architectures so:&lt;br /&gt;
&lt;br /&gt;
-arch i386 -arch ppc &lt;br /&gt;
&lt;br /&gt;
b. We want to link with the old framework and system libraries:&lt;br /&gt;
&lt;br /&gt;
-mmacosx-version-min=10.4 &lt;br /&gt;
-isysroot /Developer/SDKs/MacOSX10.4u.sdk/ (Not sure if this is really needed)&lt;br /&gt;
&lt;br /&gt;
=== Compiling dependencies ===&lt;br /&gt;
&lt;br /&gt;
- Libiconv: It's important to compile libiconv in the first place because gettext depends on it. Get the latest release from here: http://www.gnu.org/software/libiconv/ Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure --prefix=/usr CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
- Gettext: Get the latest release from here: http://www.gnu.org/software/gettext/ . Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
At the moment of writing these steps 4.6.2 is the latest version of Qt. Trolltech provides support from MacOS 10.4 to 10.6 so our binaries will be constrained by this. I went through these instructions in a Leopard machine. To compile in Snow Leopard it's necessary to consider the following notes copied from the Qt 4.6.0 changelog:&lt;br /&gt;
&lt;br /&gt;
* Gcc 4.2 is used by default. Configure with -platform macx-g++40 to select 4.0.&lt;br /&gt;
* Using the 10.4u SDK requires gcc 4.0.&lt;br /&gt;
* Configuring for the Cocoa port (-cocoa) produces 64-bit binaries by default. Use the -arch flags to override.&lt;br /&gt;
* Building for ppc64 is no longer supported by the gcc tool chain.&lt;br /&gt;
* Building for ppc is still supported.&lt;br /&gt;
&lt;br /&gt;
I haven't tried to generate universal binaries on a Snow Leopard machine. We have to validate these steps.&lt;br /&gt;
  &lt;br /&gt;
== Building Stellarium itself ==&lt;br /&gt;
&lt;br /&gt;
Create a build directory with your favorite shell (the following directory is just an example, you can pick any name and path you want)&lt;br /&gt;
&lt;br /&gt;
 $ mkdir ~/Development&lt;br /&gt;
 $ cd ~/Development&lt;br /&gt;
&lt;br /&gt;
=== Getting Stellarium source code ===&lt;br /&gt;
&lt;br /&gt;
In that directory checkout the sources with the bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr branch lp:stellarium stellarium&lt;br /&gt;
&lt;br /&gt;
For more details, see [[Bzr checkout|the Bazaar checkout instructions]].&lt;br /&gt;
&lt;br /&gt;
If you have already done it once, you have just to update your copy using this bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr pull&lt;br /&gt;
&lt;br /&gt;
=== Time to compile Stellarium ===&lt;br /&gt;
&lt;br /&gt;
We setup the build directory&lt;br /&gt;
&lt;br /&gt;
 $ cd stellarium &lt;br /&gt;
 $ mkdir -p builds/macosx&lt;br /&gt;
 $ cd builds/macosx&lt;br /&gt;
&lt;br /&gt;
[[Configuring Build Options|We run cmake]]&amp;lt;ref&amp;gt;If you've installed the Qt Creator dmg instead of the Qt Libraries, cmake will complain that it can't find Qt and you'll have to pass as an option the location of your QtSDK installation, e.g.&lt;br /&gt;
 $ cmake -DQT_QMAKE_EXECUTABLE=~/Development/QtSDK/Desktop/Qt/4.8.2/gcc/bin/qmake ../..&lt;br /&gt;
Other things will later go wrong too, especially when making the application bundle.&lt;br /&gt;
&amp;lt;/ref&amp;gt;...&lt;br /&gt;
&lt;br /&gt;
 $ cmake ../..&lt;br /&gt;
&lt;br /&gt;
... and compile&amp;lt;ref&amp;gt;Compiling on Mountain Lion (Mac OS X 10.8.x) will raise a lot of compatibility warnings from Qt. You can ignore them, your binary will run nevertheless.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 $ make&lt;br /&gt;
&lt;br /&gt;
== Packaging ==&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT''': you should delete or move aside the old Stellarium.app before each new build:&lt;br /&gt;
&lt;br /&gt;
 $ rm -r Stellarium.app/&lt;br /&gt;
&lt;br /&gt;
Then make the Mac OS X application:&lt;br /&gt;
&lt;br /&gt;
 $ make install&lt;br /&gt;
 $ make macosx_bundle&lt;br /&gt;
&lt;br /&gt;
'''Note''' : before revision 5558, this last step didn't work correctly and raised the following error :&lt;br /&gt;
 make[2]: *** No rule to make target `CMakeFiles/install.dir/all', needed by `CMakeFiles/macosx_bundle.dir/all'.  Stop.&lt;br /&gt;
 make[1]: *** [CMakeFiles/macosx_bundle.dir/rule] Error 2&lt;br /&gt;
 make: *** [macosx_bundle] Error 2&lt;br /&gt;
To correct this, you'll have modify file stellarium/builds/macosx/CMakeFiles/Makefile2&amp;lt;ref&amp;gt;Credits to Timothy Reaves, see http://sourceforge.net/mailarchive/message.php?msg_id=29131979&amp;lt;/ref&amp;gt;, changing the line&lt;br /&gt;
 CMakeFiles/macosx_bundle.dir/all: CMakeFiles/install.dir/all&lt;br /&gt;
to&lt;br /&gt;
 CMakeFiles/macosx_bundle.dir/all:&lt;br /&gt;
This is now fixed, thanks to Timothy Reaves.&lt;br /&gt;
&lt;br /&gt;
The macosx_bundle target includes a perl script that makes use of otool and install_name_tool to:&lt;br /&gt;
&lt;br /&gt;
# read the link dependencies of Stellarium.app/Contents/MacOS/stellarium&lt;br /&gt;
# copy those dependencies into the app (.frameworks and .dylibs)&lt;br /&gt;
# recurse on those copied-in dependencies, stopping at a point where system libraries are called for&lt;br /&gt;
&lt;br /&gt;
== We recommend Qt Creator ==&lt;br /&gt;
&lt;br /&gt;
The core group of developers of stellarium uses QtCreator as main IDE, its integration with Qt and the possibility of having a consistent tool through different platforms makes it the most suitable option for our goals.&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
All kinds of things might go wrong!  &lt;br /&gt;
&lt;br /&gt;
We will write here the most frequent problems and the possible solutions found by the developers. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X</id>
		<title>Compilation on Mac OS X</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X"/>
				<updated>2012-08-31T13:16:33Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: /* Time to compile stellarium */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This document describes how to build Stellarium from sources on Mac OS X. This process ought to improve over time.&lt;br /&gt;
&lt;br /&gt;
The set of instructions was written for the 0.10.4 release and using an Intel machine with Leopard (10.5). The process has been validated on 10.6, 10.7 and 10.8.x.&lt;br /&gt;
&lt;br /&gt;
== Prepare Mac OS X to build Stellarium ==  &lt;br /&gt;
&lt;br /&gt;
Since Stellarium version 0.10.6, you need a machine with Mac OS X 10.5. These instructions were tested with Mac OS X 10.6 (latest version 10.6.8) or later&amp;lt;ref&amp;gt;If you build Stellarium 0.10.6+ by yourself on Mac OS X 10.4.11 then you need edit info.plist file then change value for LSMinimumSystemVersion key. You'll have to get [ftp://ftp.qt.nokia.com/qt/source/ older versions of Qt (Carbon)] too, if you want to create universal binaries (PPC and Intel).&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
# Install the latest version of Apple's Developer Tools: http://developer.apple.com/technology/xcode.html&lt;br /&gt;
# Install the latest version of cmake: http://www.cmake.org/cmake/resources/software.html&lt;br /&gt;
# Install the latest version of Qt Libraries from the dmg (4.8.2 at the time these instructions were written): http://qt.nokia.com/downloads/downloads#qt-lib&lt;br /&gt;
# Install macports: http://www.macports.org/install.php&lt;br /&gt;
# Install bazaar making use of macports:&lt;br /&gt;
&lt;br /&gt;
   $ sudo port install bzr&lt;br /&gt;
&lt;br /&gt;
== Compiling dependencies to build an universal binary ==&lt;br /&gt;
&lt;br /&gt;
We have to compile the dependencies with special flags to be able to generate an universal binary. If you don't intend to create an universal package you can skip this and going to the next section: [[#Building stellarium itself]]&lt;br /&gt;
&lt;br /&gt;
In case you are compiling in a Leopard or Snow Leopard machine you have to recompile stellarium dependencies making use of the oldest system libraries (in our case those in 10.4 aka Tiger). We need the following compilation flags:&lt;br /&gt;
&lt;br /&gt;
a. We want to generate a single binary for both intel and ppc architectures so:&lt;br /&gt;
&lt;br /&gt;
-arch i386 -arch ppc &lt;br /&gt;
&lt;br /&gt;
b. We want to link with the old framework and system libraries:&lt;br /&gt;
&lt;br /&gt;
-mmacosx-version-min=10.4 &lt;br /&gt;
-isysroot /Developer/SDKs/MacOSX10.4u.sdk/ (Not sure if this is really needed)&lt;br /&gt;
&lt;br /&gt;
=== Compiling dependencies ===&lt;br /&gt;
&lt;br /&gt;
- Libiconv: It's important to compile libiconv in the first place because gettext depends on it. Get the latest release from here: http://www.gnu.org/software/libiconv/ Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure --prefix=/usr CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
- Gettext: Get the latest release from here: http://www.gnu.org/software/gettext/ . Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
At the moment of writing these steps 4.6.2 is the latest version of Qt. Trolltech provides support from MacOS 10.4 to 10.6 so our binaries will be constrained by this. I went through these instructions in a Leopard machine. To compile in Snow Leopard it's necessary to consider the following notes copied from the Qt 4.6.0 changelog:&lt;br /&gt;
&lt;br /&gt;
* Gcc 4.2 is used by default. Configure with -platform macx-g++40 to select 4.0.&lt;br /&gt;
* Using the 10.4u SDK requires gcc 4.0.&lt;br /&gt;
* Configuring for the Cocoa port (-cocoa) produces 64-bit binaries by default. Use the -arch flags to override.&lt;br /&gt;
* Building for ppc64 is no longer supported by the gcc tool chain.&lt;br /&gt;
* Building for ppc is still supported.&lt;br /&gt;
&lt;br /&gt;
I haven't tried to generate universal binaries on a Snow Leopard machine. We have to validate these steps.&lt;br /&gt;
  &lt;br /&gt;
== Building stellarium itself ==&lt;br /&gt;
&lt;br /&gt;
Create a build directory with your favorite shell (the following directory is just an example, you can pick any name and path you want)&lt;br /&gt;
&lt;br /&gt;
 $ mkdir ~/Development&lt;br /&gt;
 $ cd ~/Development&lt;br /&gt;
&lt;br /&gt;
And in that directory checkout the sources with the bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr branch lp:stellarium stellarium&lt;br /&gt;
&lt;br /&gt;
For more details, see [[Bzr checkout|the Bazaar checkout instructions]].&lt;br /&gt;
&lt;br /&gt;
If you have already done it once, you have just to update your copy using this bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr pull&lt;br /&gt;
&lt;br /&gt;
=== Time to compile stellarium ===&lt;br /&gt;
&lt;br /&gt;
We setup the build directory&lt;br /&gt;
&lt;br /&gt;
 $ cd stellarium &lt;br /&gt;
 $ mkdir -p builds/macosx&lt;br /&gt;
 $ cd builds/macosx&lt;br /&gt;
&lt;br /&gt;
[[Configuring Build Options|We run cmake]]&amp;lt;ref&amp;gt;If you've installed the Qt Creator dmg instead of the Qt Libraries, cmake will complain that it can't find Qt and you'll have to pass as an option the location of your QtSDK installation, e.g.&lt;br /&gt;
 $ cmake -DQT_QMAKE_EXECUTABLE=~/Development/QtSDK/Desktop/Qt/4.8.2/gcc/bin/qmake ../..&lt;br /&gt;
Other things will later go wrong too, especially when making the application bundle.&lt;br /&gt;
&amp;lt;/ref&amp;gt;...&lt;br /&gt;
&lt;br /&gt;
 $ cmake ../..&lt;br /&gt;
&lt;br /&gt;
... and compile&amp;lt;ref&amp;gt;Compiling on Mountain Lion (Mac OS X 10.8.x) will raise a lot of compatibility warnings from Qt. You can ignore them, your binary will run nevertheless.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 $ make&lt;br /&gt;
&lt;br /&gt;
== Packaging ==&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT''': you should delete or move aside the old Stellarium.app before each new build:&lt;br /&gt;
&lt;br /&gt;
 $ rm -r Stellarium.app/&lt;br /&gt;
&lt;br /&gt;
Then make the Mac OS X application:&lt;br /&gt;
&lt;br /&gt;
 $ make install&lt;br /&gt;
 $ make macosx_bundle&lt;br /&gt;
&lt;br /&gt;
'''Note''' : before revision 5558, this last step didn't work correctly and raised the following error :&lt;br /&gt;
 make[2]: *** No rule to make target `CMakeFiles/install.dir/all', needed by `CMakeFiles/macosx_bundle.dir/all'.  Stop.&lt;br /&gt;
 make[1]: *** [CMakeFiles/macosx_bundle.dir/rule] Error 2&lt;br /&gt;
 make: *** [macosx_bundle] Error 2&lt;br /&gt;
To correct this, you'll have modify file stellarium/builds/macosx/CMakeFiles/Makefile2&amp;lt;ref&amp;gt;Credits to Timothy Reaves, see http://sourceforge.net/mailarchive/message.php?msg_id=29131979&amp;lt;/ref&amp;gt;, changing the line&lt;br /&gt;
 CMakeFiles/macosx_bundle.dir/all: CMakeFiles/install.dir/all&lt;br /&gt;
to&lt;br /&gt;
 CMakeFiles/macosx_bundle.dir/all:&lt;br /&gt;
This is now fixed, thanks to Timothy Reaves.&lt;br /&gt;
&lt;br /&gt;
The macosx_bundle target includes a perl script that makes use of otool and install_name_tool to:&lt;br /&gt;
&lt;br /&gt;
# read the link dependencies of Stellarium.app/Contents/MacOS/stellarium&lt;br /&gt;
# copy those dependencies into the app (.frameworks and .dylibs)&lt;br /&gt;
# recurse on those copied-in dependencies, stopping at a point where system libraries are called for&lt;br /&gt;
&lt;br /&gt;
== We recommend Qt Creator ==&lt;br /&gt;
&lt;br /&gt;
The core group of developers of stellarium uses QtCreator as main IDE, its integration with Qt and the possibility of having a consistent tool through different platforms makes it the most suitable option for our goals.&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
All kinds of things might go wrong!  &lt;br /&gt;
&lt;br /&gt;
We will write here the most frequent problems and the possible solutions found by the developers. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X</id>
		<title>Compilation on Mac OS X</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X"/>
				<updated>2012-08-27T12:36:13Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: /* Packaging */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This document describes how to build Stellarium from sources on Mac OS X. This process ought to improve over time.&lt;br /&gt;
&lt;br /&gt;
The set of instructions was written for the 0.10.4 release and using an Intel machine with Leopard (10.5). The process has been validated on 10.6, 10.7 and 10.8.x.&lt;br /&gt;
&lt;br /&gt;
== Prepare Mac OS X to build Stellarium ==  &lt;br /&gt;
&lt;br /&gt;
Since Stellarium version 0.10.6, you need a machine with Mac OS X 10.5. These instructions were tested with Mac OS X 10.6 (latest version 10.6.8) or later&amp;lt;ref&amp;gt;If you build Stellarium 0.10.6+ by yourself on Mac OS X 10.4.11 then you need edit info.plist file then change value for LSMinimumSystemVersion key. You'll have to get [ftp://ftp.qt.nokia.com/qt/source/ older versions of Qt (Carbon)] too, if you want to create universal binaries (PPC and Intel).&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
# Install the latest version of Apple's Developer Tools: http://developer.apple.com/technology/xcode.html&lt;br /&gt;
# Install the latest version of cmake: http://www.cmake.org/cmake/resources/software.html&lt;br /&gt;
# Install the latest version of Qt Libraries from the dmg (4.8.2 at the time these instructions were written): http://qt.nokia.com/downloads/downloads#qt-lib&lt;br /&gt;
# Install macports: http://www.macports.org/install.php&lt;br /&gt;
# Install bazaar making use of macports:&lt;br /&gt;
&lt;br /&gt;
   $ sudo port install bzr&lt;br /&gt;
&lt;br /&gt;
== Compiling dependencies to build an universal binary ==&lt;br /&gt;
&lt;br /&gt;
We have to compile the dependencies with special flags to be able to generate an universal binary. If you don't intend to create an universal package you can skip this and going to the next section: [[#Building stellarium itself]]&lt;br /&gt;
&lt;br /&gt;
In case you are compiling in a Leopard or Snow Leopard machine you have to recompile stellarium dependencies making use of the oldest system libraries (in our case those in 10.4 aka Tiger). We need the following compilation flags:&lt;br /&gt;
&lt;br /&gt;
a. We want to generate a single binary for both intel and ppc architectures so:&lt;br /&gt;
&lt;br /&gt;
-arch i386 -arch ppc &lt;br /&gt;
&lt;br /&gt;
b. We want to link with the old framework and system libraries:&lt;br /&gt;
&lt;br /&gt;
-mmacosx-version-min=10.4 &lt;br /&gt;
-isysroot /Developer/SDKs/MacOSX10.4u.sdk/ (Not sure if this is really needed)&lt;br /&gt;
&lt;br /&gt;
=== Compiling dependencies ===&lt;br /&gt;
&lt;br /&gt;
- Libiconv: It's important to compile libiconv in the first place because gettext depends on it. Get the latest release from here: http://www.gnu.org/software/libiconv/ Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure --prefix=/usr CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
- Gettext: Get the latest release from here: http://www.gnu.org/software/gettext/ . Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
At the moment of writing these steps 4.6.2 is the latest version of Qt. Trolltech provides support from MacOS 10.4 to 10.6 so our binaries will be constrained by this. I went through these instructions in a Leopard machine. To compile in Snow Leopard it's necessary to consider the following notes copied from the Qt 4.6.0 changelog:&lt;br /&gt;
&lt;br /&gt;
* Gcc 4.2 is used by default. Configure with -platform macx-g++40 to select 4.0.&lt;br /&gt;
* Using the 10.4u SDK requires gcc 4.0.&lt;br /&gt;
* Configuring for the Cocoa port (-cocoa) produces 64-bit binaries by default. Use the -arch flags to override.&lt;br /&gt;
* Building for ppc64 is no longer supported by the gcc tool chain.&lt;br /&gt;
* Building for ppc is still supported.&lt;br /&gt;
&lt;br /&gt;
I haven't tried to generate universal binaries on a Snow Leopard machine. We have to validate these steps.&lt;br /&gt;
  &lt;br /&gt;
== Building stellarium itself ==&lt;br /&gt;
&lt;br /&gt;
Create a build directory with your favorite shell (the following directory is just an example, you can pick any name and path you want)&lt;br /&gt;
&lt;br /&gt;
 $ mkdir ~/Development&lt;br /&gt;
 $ cd ~/Development&lt;br /&gt;
&lt;br /&gt;
And in that directory checkout the sources with the bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr branch lp:stellarium stellarium&lt;br /&gt;
&lt;br /&gt;
For more details, see [[Bzr checkout|the Bazaar checkout instructions]].&lt;br /&gt;
&lt;br /&gt;
If you have already done it once, you have just to update your copy using this bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr pull&lt;br /&gt;
&lt;br /&gt;
=== Time to compile stellarium ===&lt;br /&gt;
&lt;br /&gt;
We setup the build directory&lt;br /&gt;
&lt;br /&gt;
 $ cd stellarium &lt;br /&gt;
 $ mkdir -p builds/macosx&lt;br /&gt;
 $ cd builds/macosx&lt;br /&gt;
&lt;br /&gt;
[[Configuring Build Options|We run cmake]]&amp;lt;ref&amp;gt;If you've installed the Qt Creator dmg instead of the Qt Libraries, cmake will complain that it can't find Qt and you'll have to pass as an option the location of your QtSDK installation, e.g.&lt;br /&gt;
 $ cmake -DQT_QMAKE_EXECUTABLE=~/Development/QtSDK/Desktop/Qt/4.8.2/gcc/bin/qmake ../..&lt;br /&gt;
Other things will later go wrong too, especially when making the application bundle.&lt;br /&gt;
&amp;lt;/ref&amp;gt;...&lt;br /&gt;
&lt;br /&gt;
 $ cmake ../..&lt;br /&gt;
&lt;br /&gt;
... and compile&lt;br /&gt;
&lt;br /&gt;
 $ make&lt;br /&gt;
&lt;br /&gt;
== Packaging ==&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT''': you should delete or move aside the old Stellarium.app before each new build:&lt;br /&gt;
&lt;br /&gt;
 $ rm -r Stellarium.app/&lt;br /&gt;
&lt;br /&gt;
Then make the Mac OS X application:&lt;br /&gt;
&lt;br /&gt;
 $ make install&lt;br /&gt;
 $ make macosx_bundle&lt;br /&gt;
&lt;br /&gt;
'''Note''' : before revision 5558, this last step didn't work correctly and raised the following error :&lt;br /&gt;
 make[2]: *** No rule to make target `CMakeFiles/install.dir/all', needed by `CMakeFiles/macosx_bundle.dir/all'.  Stop.&lt;br /&gt;
 make[1]: *** [CMakeFiles/macosx_bundle.dir/rule] Error 2&lt;br /&gt;
 make: *** [macosx_bundle] Error 2&lt;br /&gt;
To correct this, you'll have modify file stellarium/builds/macosx/CMakeFiles/Makefile2&amp;lt;ref&amp;gt;Credits to Timothy Reaves, see http://sourceforge.net/mailarchive/message.php?msg_id=29131979&amp;lt;/ref&amp;gt;, changing the line&lt;br /&gt;
 CMakeFiles/macosx_bundle.dir/all: CMakeFiles/install.dir/all&lt;br /&gt;
to&lt;br /&gt;
 CMakeFiles/macosx_bundle.dir/all:&lt;br /&gt;
This is now fixed, thanks to Timothy Reaves.&lt;br /&gt;
&lt;br /&gt;
The macosx_bundle target includes a perl script that makes use of otool and install_name_tool to:&lt;br /&gt;
&lt;br /&gt;
# read the link dependencies of Stellarium.app/Contents/MacOS/stellarium&lt;br /&gt;
# copy those dependencies into the app (.frameworks and .dylibs)&lt;br /&gt;
# recurse on those copied-in dependencies, stopping at a point where system libraries are called for&lt;br /&gt;
&lt;br /&gt;
== We recommend Qt Creator ==&lt;br /&gt;
&lt;br /&gt;
The core group of developers of stellarium uses QtCreator as main IDE, its integration with Qt and the possibility of having a consistent tool through different platforms makes it the most suitable option for our goals.&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
All kinds of things might go wrong!  &lt;br /&gt;
&lt;br /&gt;
We will write here the most frequent problems and the possible solutions found by the developers. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X</id>
		<title>Compilation on Mac OS X</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X"/>
				<updated>2012-08-26T19:31:42Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: /* Packaging */ Typo&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This document describes how to build Stellarium from sources on Mac OS X. This process ought to improve over time.&lt;br /&gt;
&lt;br /&gt;
The set of instructions was written for the 0.10.4 release and using an Intel machine with Leopard (10.5). The process has been validated on 10.6, 10.7 and 10.8.x.&lt;br /&gt;
&lt;br /&gt;
== Prepare Mac OS X to build Stellarium ==  &lt;br /&gt;
&lt;br /&gt;
Since Stellarium version 0.10.6, you need a machine with Mac OS X 10.5. These instructions were tested with Mac OS X 10.6 (latest version 10.6.8) or later&amp;lt;ref&amp;gt;If you build Stellarium 0.10.6+ by yourself on Mac OS X 10.4.11 then you need edit info.plist file then change value for LSMinimumSystemVersion key. You'll have to get [ftp://ftp.qt.nokia.com/qt/source/ older versions of Qt (Carbon)] too, if you want to create universal binaries (PPC and Intel).&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
# Install the latest version of Apple's Developer Tools: http://developer.apple.com/technology/xcode.html&lt;br /&gt;
# Install the latest version of cmake: http://www.cmake.org/cmake/resources/software.html&lt;br /&gt;
# Install the latest version of Qt Libraries from the dmg (4.8.2 at the time these instructions were written): http://qt.nokia.com/downloads/downloads#qt-lib&lt;br /&gt;
# Install macports: http://www.macports.org/install.php&lt;br /&gt;
# Install bazaar making use of macports:&lt;br /&gt;
&lt;br /&gt;
   $ sudo port install bzr&lt;br /&gt;
&lt;br /&gt;
== Compiling dependencies to build an universal binary ==&lt;br /&gt;
&lt;br /&gt;
We have to compile the dependencies with special flags to be able to generate an universal binary. If you don't intend to create an universal package you can skip this and going to the next section: [[#Building stellarium itself]]&lt;br /&gt;
&lt;br /&gt;
In case you are compiling in a Leopard or Snow Leopard machine you have to recompile stellarium dependencies making use of the oldest system libraries (in our case those in 10.4 aka Tiger). We need the following compilation flags:&lt;br /&gt;
&lt;br /&gt;
a. We want to generate a single binary for both intel and ppc architectures so:&lt;br /&gt;
&lt;br /&gt;
-arch i386 -arch ppc &lt;br /&gt;
&lt;br /&gt;
b. We want to link with the old framework and system libraries:&lt;br /&gt;
&lt;br /&gt;
-mmacosx-version-min=10.4 &lt;br /&gt;
-isysroot /Developer/SDKs/MacOSX10.4u.sdk/ (Not sure if this is really needed)&lt;br /&gt;
&lt;br /&gt;
=== Compiling dependencies ===&lt;br /&gt;
&lt;br /&gt;
- Libiconv: It's important to compile libiconv in the first place because gettext depends on it. Get the latest release from here: http://www.gnu.org/software/libiconv/ Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure --prefix=/usr CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
- Gettext: Get the latest release from here: http://www.gnu.org/software/gettext/ . Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
At the moment of writing these steps 4.6.2 is the latest version of Qt. Trolltech provides support from MacOS 10.4 to 10.6 so our binaries will be constrained by this. I went through these instructions in a Leopard machine. To compile in Snow Leopard it's necessary to consider the following notes copied from the Qt 4.6.0 changelog:&lt;br /&gt;
&lt;br /&gt;
* Gcc 4.2 is used by default. Configure with -platform macx-g++40 to select 4.0.&lt;br /&gt;
* Using the 10.4u SDK requires gcc 4.0.&lt;br /&gt;
* Configuring for the Cocoa port (-cocoa) produces 64-bit binaries by default. Use the -arch flags to override.&lt;br /&gt;
* Building for ppc64 is no longer supported by the gcc tool chain.&lt;br /&gt;
* Building for ppc is still supported.&lt;br /&gt;
&lt;br /&gt;
I haven't tried to generate universal binaries on a Snow Leopard machine. We have to validate these steps.&lt;br /&gt;
  &lt;br /&gt;
== Building stellarium itself ==&lt;br /&gt;
&lt;br /&gt;
Create a build directory with your favorite shell (the following directory is just an example, you can pick any name and path you want)&lt;br /&gt;
&lt;br /&gt;
 $ mkdir ~/Development&lt;br /&gt;
 $ cd ~/Development&lt;br /&gt;
&lt;br /&gt;
And in that directory checkout the sources with the bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr branch lp:stellarium stellarium&lt;br /&gt;
&lt;br /&gt;
For more details, see [[Bzr checkout|the Bazaar checkout instructions]].&lt;br /&gt;
&lt;br /&gt;
If you have already done it once, you have just to update your copy using this bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr pull&lt;br /&gt;
&lt;br /&gt;
=== Time to compile stellarium ===&lt;br /&gt;
&lt;br /&gt;
We setup the build directory&lt;br /&gt;
&lt;br /&gt;
 $ cd stellarium &lt;br /&gt;
 $ mkdir -p builds/macosx&lt;br /&gt;
 $ cd builds/macosx&lt;br /&gt;
&lt;br /&gt;
[[Configuring Build Options|We run cmake]]&amp;lt;ref&amp;gt;If you've installed the Qt Creator dmg instead of the Qt Libraries, cmake will complain that it can't find Qt and you'll have to pass as an option the location of your QtSDK installation, e.g.&lt;br /&gt;
 $ cmake -DQT_QMAKE_EXECUTABLE=~/Development/QtSDK/Desktop/Qt/4.8.2/gcc/bin/qmake ../..&lt;br /&gt;
Other things will later go wrong too, especially when making the application bundle.&lt;br /&gt;
&amp;lt;/ref&amp;gt;...&lt;br /&gt;
&lt;br /&gt;
 $ cmake ../..&lt;br /&gt;
&lt;br /&gt;
... and compile&lt;br /&gt;
&lt;br /&gt;
 $ make&lt;br /&gt;
&lt;br /&gt;
== Packaging ==&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT''': you should delete or move aside the old Stellarium.app before each new build.&lt;br /&gt;
&lt;br /&gt;
 $ make install&lt;br /&gt;
 $ make macosx_bundle&lt;br /&gt;
&lt;br /&gt;
'''Note''' : before revision 5558, this last step didn't work correctly and raised the following error :&lt;br /&gt;
 make[2]: *** No rule to make target `CMakeFiles/install.dir/all', needed by `CMakeFiles/macosx_bundle.dir/all'.  Stop.&lt;br /&gt;
 make[1]: *** [CMakeFiles/macosx_bundle.dir/rule] Error 2&lt;br /&gt;
 make: *** [macosx_bundle] Error 2&lt;br /&gt;
To correct this, you'll have modify file stellarium/builds/macosx/CMakeFiles/Makefile2&amp;lt;ref&amp;gt;Credits to Timothy Reaves, see http://sourceforge.net/mailarchive/message.php?msg_id=29131979&amp;lt;/ref&amp;gt;, changing the line&lt;br /&gt;
 CMakeFiles/macosx_bundle.dir/all: CMakeFiles/install.dir/all&lt;br /&gt;
to&lt;br /&gt;
 CMakeFiles/macosx_bundle.dir/all:&lt;br /&gt;
This is now fixed, thanks to Timothy Reaves.&lt;br /&gt;
&lt;br /&gt;
The macosx_bundle target includes a perl script that makes use of otool and install_name_tool to:&lt;br /&gt;
&lt;br /&gt;
# read the link dependencies of Stellarium.app/Contents/MacOS/stellarium&lt;br /&gt;
# copy those dependencies into the app (.frameworks and .dylibs)&lt;br /&gt;
# recurse on those copied-in dependencies, stopping at a point where system libraries are called for&lt;br /&gt;
&lt;br /&gt;
== We recommend Qt Creator ==&lt;br /&gt;
&lt;br /&gt;
The core group of developers of stellarium uses QtCreator as main IDE, its integration with Qt and the possibility of having a consistent tool through different platforms makes it the most suitable option for our goals.&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
All kinds of things might go wrong!  &lt;br /&gt;
&lt;br /&gt;
We will write here the most frequent problems and the possible solutions found by the developers. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X</id>
		<title>Compilation on Mac OS X</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X"/>
				<updated>2012-08-26T19:29:17Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: /* Packaging */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This document describes how to build Stellarium from sources on Mac OS X. This process ought to improve over time.&lt;br /&gt;
&lt;br /&gt;
The set of instructions was written for the 0.10.4 release and using an Intel machine with Leopard (10.5). The process has been validated on 10.6, 10.7 and 10.8.x.&lt;br /&gt;
&lt;br /&gt;
== Prepare Mac OS X to build Stellarium ==  &lt;br /&gt;
&lt;br /&gt;
Since Stellarium version 0.10.6, you need a machine with Mac OS X 10.5. These instructions were tested with Mac OS X 10.6 (latest version 10.6.8) or later&amp;lt;ref&amp;gt;If you build Stellarium 0.10.6+ by yourself on Mac OS X 10.4.11 then you need edit info.plist file then change value for LSMinimumSystemVersion key. You'll have to get [ftp://ftp.qt.nokia.com/qt/source/ older versions of Qt (Carbon)] too, if you want to create universal binaries (PPC and Intel).&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
# Install the latest version of Apple's Developer Tools: http://developer.apple.com/technology/xcode.html&lt;br /&gt;
# Install the latest version of cmake: http://www.cmake.org/cmake/resources/software.html&lt;br /&gt;
# Install the latest version of Qt Libraries from the dmg (4.8.2 at the time these instructions were written): http://qt.nokia.com/downloads/downloads#qt-lib&lt;br /&gt;
# Install macports: http://www.macports.org/install.php&lt;br /&gt;
# Install bazaar making use of macports:&lt;br /&gt;
&lt;br /&gt;
   $ sudo port install bzr&lt;br /&gt;
&lt;br /&gt;
== Compiling dependencies to build an universal binary ==&lt;br /&gt;
&lt;br /&gt;
We have to compile the dependencies with special flags to be able to generate an universal binary. If you don't intend to create an universal package you can skip this and going to the next section: [[#Building stellarium itself]]&lt;br /&gt;
&lt;br /&gt;
In case you are compiling in a Leopard or Snow Leopard machine you have to recompile stellarium dependencies making use of the oldest system libraries (in our case those in 10.4 aka Tiger). We need the following compilation flags:&lt;br /&gt;
&lt;br /&gt;
a. We want to generate a single binary for both intel and ppc architectures so:&lt;br /&gt;
&lt;br /&gt;
-arch i386 -arch ppc &lt;br /&gt;
&lt;br /&gt;
b. We want to link with the old framework and system libraries:&lt;br /&gt;
&lt;br /&gt;
-mmacosx-version-min=10.4 &lt;br /&gt;
-isysroot /Developer/SDKs/MacOSX10.4u.sdk/ (Not sure if this is really needed)&lt;br /&gt;
&lt;br /&gt;
=== Compiling dependencies ===&lt;br /&gt;
&lt;br /&gt;
- Libiconv: It's important to compile libiconv in the first place because gettext depends on it. Get the latest release from here: http://www.gnu.org/software/libiconv/ Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure --prefix=/usr CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
- Gettext: Get the latest release from here: http://www.gnu.org/software/gettext/ . Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
At the moment of writing these steps 4.6.2 is the latest version of Qt. Trolltech provides support from MacOS 10.4 to 10.6 so our binaries will be constrained by this. I went through these instructions in a Leopard machine. To compile in Snow Leopard it's necessary to consider the following notes copied from the Qt 4.6.0 changelog:&lt;br /&gt;
&lt;br /&gt;
* Gcc 4.2 is used by default. Configure with -platform macx-g++40 to select 4.0.&lt;br /&gt;
* Using the 10.4u SDK requires gcc 4.0.&lt;br /&gt;
* Configuring for the Cocoa port (-cocoa) produces 64-bit binaries by default. Use the -arch flags to override.&lt;br /&gt;
* Building for ppc64 is no longer supported by the gcc tool chain.&lt;br /&gt;
* Building for ppc is still supported.&lt;br /&gt;
&lt;br /&gt;
I haven't tried to generate universal binaries on a Snow Leopard machine. We have to validate these steps.&lt;br /&gt;
  &lt;br /&gt;
== Building stellarium itself ==&lt;br /&gt;
&lt;br /&gt;
Create a build directory with your favorite shell (the following directory is just an example, you can pick any name and path you want)&lt;br /&gt;
&lt;br /&gt;
 $ mkdir ~/Development&lt;br /&gt;
 $ cd ~/Development&lt;br /&gt;
&lt;br /&gt;
And in that directory checkout the sources with the bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr branch lp:stellarium stellarium&lt;br /&gt;
&lt;br /&gt;
For more details, see [[Bzr checkout|the Bazaar checkout instructions]].&lt;br /&gt;
&lt;br /&gt;
If you have already done it once, you have just to update your copy using this bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr pull&lt;br /&gt;
&lt;br /&gt;
=== Time to compile stellarium ===&lt;br /&gt;
&lt;br /&gt;
We setup the build directory&lt;br /&gt;
&lt;br /&gt;
 $ cd stellarium &lt;br /&gt;
 $ mkdir -p builds/macosx&lt;br /&gt;
 $ cd builds/macosx&lt;br /&gt;
&lt;br /&gt;
[[Configuring Build Options|We run cmake]]&amp;lt;ref&amp;gt;If you've installed the Qt Creator dmg instead of the Qt Libraries, cmake will complain that it can't find Qt and you'll have to pass as an option the location of your QtSDK installation, e.g.&lt;br /&gt;
 $ cmake -DQT_QMAKE_EXECUTABLE=~/Development/QtSDK/Desktop/Qt/4.8.2/gcc/bin/qmake ../..&lt;br /&gt;
Other things will later go wrong too, especially when making the application bundle.&lt;br /&gt;
&amp;lt;/ref&amp;gt;...&lt;br /&gt;
&lt;br /&gt;
 $ cmake ../..&lt;br /&gt;
&lt;br /&gt;
... and compile&lt;br /&gt;
&lt;br /&gt;
 $ make&lt;br /&gt;
&lt;br /&gt;
== Packaging ==&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT''': you should delete or move aside the old Stellarium.app before each new build.&lt;br /&gt;
&lt;br /&gt;
 $ make install&lt;br /&gt;
 $ make macosx_bundle&lt;br /&gt;
&lt;br /&gt;
'''Note''' : before revision 5556, this last step didn't work correctly and raised the following error :&lt;br /&gt;
 make[2]: *** No rule to make target `CMakeFiles/install.dir/all', needed by `CMakeFiles/macosx_bundle.dir/all'.  Stop.&lt;br /&gt;
 make[1]: *** [CMakeFiles/macosx_bundle.dir/rule] Error 2&lt;br /&gt;
 make: *** [macosx_bundle] Error 2&lt;br /&gt;
To correct this, you'll have modify file stellarium/builds/macosx/CMakeFiles/Makefile2&amp;lt;ref&amp;gt;Credits to Timothy Reaves, see http://sourceforge.net/mailarchive/message.php?msg_id=29131979&amp;lt;/ref&amp;gt;, changing the line&lt;br /&gt;
 CMakeFiles/macosx_bundle.dir/all: CMakeFiles/install.dir/all&lt;br /&gt;
to&lt;br /&gt;
 CMakeFiles/macosx_bundle.dir/all:&lt;br /&gt;
This is now fixed, thanks to Timothy Reaves.&lt;br /&gt;
&lt;br /&gt;
The macosx_bundle target includes a perl script that makes use of otool and install_name_tool to:&lt;br /&gt;
&lt;br /&gt;
# read the link dependencies of Stellarium.app/Contents/MacOS/stellarium&lt;br /&gt;
# copy those dependencies into the app (.frameworks and .dylibs)&lt;br /&gt;
# recurse on those copied-in dependencies, stopping at a point where system libraries are called for&lt;br /&gt;
&lt;br /&gt;
== We recommend Qt Creator ==&lt;br /&gt;
&lt;br /&gt;
The core group of developers of stellarium uses QtCreator as main IDE, its integration with Qt and the possibility of having a consistent tool through different platforms makes it the most suitable option for our goals.&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
All kinds of things might go wrong!  &lt;br /&gt;
&lt;br /&gt;
We will write here the most frequent problems and the possible solutions found by the developers. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X</id>
		<title>Compilation on Mac OS X</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X"/>
				<updated>2012-08-26T19:26:57Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: /* Building stellarium itself */ More bzr info&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This document describes how to build Stellarium from sources on Mac OS X. This process ought to improve over time.&lt;br /&gt;
&lt;br /&gt;
The set of instructions was written for the 0.10.4 release and using an Intel machine with Leopard (10.5). The process has been validated on 10.6, 10.7 and 10.8.x.&lt;br /&gt;
&lt;br /&gt;
== Prepare Mac OS X to build Stellarium ==  &lt;br /&gt;
&lt;br /&gt;
Since Stellarium version 0.10.6, you need a machine with Mac OS X 10.5. These instructions were tested with Mac OS X 10.6 (latest version 10.6.8) or later&amp;lt;ref&amp;gt;If you build Stellarium 0.10.6+ by yourself on Mac OS X 10.4.11 then you need edit info.plist file then change value for LSMinimumSystemVersion key. You'll have to get [ftp://ftp.qt.nokia.com/qt/source/ older versions of Qt (Carbon)] too, if you want to create universal binaries (PPC and Intel).&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
# Install the latest version of Apple's Developer Tools: http://developer.apple.com/technology/xcode.html&lt;br /&gt;
# Install the latest version of cmake: http://www.cmake.org/cmake/resources/software.html&lt;br /&gt;
# Install the latest version of Qt Libraries from the dmg (4.8.2 at the time these instructions were written): http://qt.nokia.com/downloads/downloads#qt-lib&lt;br /&gt;
# Install macports: http://www.macports.org/install.php&lt;br /&gt;
# Install bazaar making use of macports:&lt;br /&gt;
&lt;br /&gt;
   $ sudo port install bzr&lt;br /&gt;
&lt;br /&gt;
== Compiling dependencies to build an universal binary ==&lt;br /&gt;
&lt;br /&gt;
We have to compile the dependencies with special flags to be able to generate an universal binary. If you don't intend to create an universal package you can skip this and going to the next section: [[#Building stellarium itself]]&lt;br /&gt;
&lt;br /&gt;
In case you are compiling in a Leopard or Snow Leopard machine you have to recompile stellarium dependencies making use of the oldest system libraries (in our case those in 10.4 aka Tiger). We need the following compilation flags:&lt;br /&gt;
&lt;br /&gt;
a. We want to generate a single binary for both intel and ppc architectures so:&lt;br /&gt;
&lt;br /&gt;
-arch i386 -arch ppc &lt;br /&gt;
&lt;br /&gt;
b. We want to link with the old framework and system libraries:&lt;br /&gt;
&lt;br /&gt;
-mmacosx-version-min=10.4 &lt;br /&gt;
-isysroot /Developer/SDKs/MacOSX10.4u.sdk/ (Not sure if this is really needed)&lt;br /&gt;
&lt;br /&gt;
=== Compiling dependencies ===&lt;br /&gt;
&lt;br /&gt;
- Libiconv: It's important to compile libiconv in the first place because gettext depends on it. Get the latest release from here: http://www.gnu.org/software/libiconv/ Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure --prefix=/usr CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
- Gettext: Get the latest release from here: http://www.gnu.org/software/gettext/ . Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
At the moment of writing these steps 4.6.2 is the latest version of Qt. Trolltech provides support from MacOS 10.4 to 10.6 so our binaries will be constrained by this. I went through these instructions in a Leopard machine. To compile in Snow Leopard it's necessary to consider the following notes copied from the Qt 4.6.0 changelog:&lt;br /&gt;
&lt;br /&gt;
* Gcc 4.2 is used by default. Configure with -platform macx-g++40 to select 4.0.&lt;br /&gt;
* Using the 10.4u SDK requires gcc 4.0.&lt;br /&gt;
* Configuring for the Cocoa port (-cocoa) produces 64-bit binaries by default. Use the -arch flags to override.&lt;br /&gt;
* Building for ppc64 is no longer supported by the gcc tool chain.&lt;br /&gt;
* Building for ppc is still supported.&lt;br /&gt;
&lt;br /&gt;
I haven't tried to generate universal binaries on a Snow Leopard machine. We have to validate these steps.&lt;br /&gt;
  &lt;br /&gt;
== Building stellarium itself ==&lt;br /&gt;
&lt;br /&gt;
Create a build directory with your favorite shell (the following directory is just an example, you can pick any name and path you want)&lt;br /&gt;
&lt;br /&gt;
 $ mkdir ~/Development&lt;br /&gt;
 $ cd ~/Development&lt;br /&gt;
&lt;br /&gt;
And in that directory checkout the sources with the bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr branch lp:stellarium stellarium&lt;br /&gt;
&lt;br /&gt;
For more details, see [[Bzr checkout|the Bazaar checkout instructions]].&lt;br /&gt;
&lt;br /&gt;
If you have already done it once, you have just to update your copy using this bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr pull&lt;br /&gt;
&lt;br /&gt;
=== Time to compile stellarium ===&lt;br /&gt;
&lt;br /&gt;
We setup the build directory&lt;br /&gt;
&lt;br /&gt;
 $ cd stellarium &lt;br /&gt;
 $ mkdir -p builds/macosx&lt;br /&gt;
 $ cd builds/macosx&lt;br /&gt;
&lt;br /&gt;
[[Configuring Build Options|We run cmake]]&amp;lt;ref&amp;gt;If you've installed the Qt Creator dmg instead of the Qt Libraries, cmake will complain that it can't find Qt and you'll have to pass as an option the location of your QtSDK installation, e.g.&lt;br /&gt;
 $ cmake -DQT_QMAKE_EXECUTABLE=~/Development/QtSDK/Desktop/Qt/4.8.2/gcc/bin/qmake ../..&lt;br /&gt;
Other things will later go wrong too, especially when making the application bundle.&lt;br /&gt;
&amp;lt;/ref&amp;gt;...&lt;br /&gt;
&lt;br /&gt;
 $ cmake ../..&lt;br /&gt;
&lt;br /&gt;
... and compile&lt;br /&gt;
&lt;br /&gt;
 $ make&lt;br /&gt;
&lt;br /&gt;
== Packaging ==&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT''': you should delete or move aside the old Stellarium.app before each new build.&lt;br /&gt;
&lt;br /&gt;
 $ make install&lt;br /&gt;
 $ make macosx_bundle&lt;br /&gt;
&lt;br /&gt;
'''Note''' : as of this writing, this last step doesn't work correctly and raise the following error :&lt;br /&gt;
 make[2]: *** No rule to make target `CMakeFiles/install.dir/all', needed by `CMakeFiles/macosx_bundle.dir/all'.  Stop.&lt;br /&gt;
 make[1]: *** [CMakeFiles/macosx_bundle.dir/rule] Error 2&lt;br /&gt;
 make: *** [macosx_bundle] Error 2&lt;br /&gt;
To correct this, you'll have modify file stellarium/builds/macosx/CMakeFiles/Makefile2&amp;lt;ref&amp;gt;Credits to Timothy Reaves, see http://sourceforge.net/mailarchive/message.php?msg_id=29131979&amp;lt;/ref&amp;gt;, changing the line&lt;br /&gt;
 CMakeFiles/macosx_bundle.dir/all: CMakeFiles/install.dir/all&lt;br /&gt;
to&lt;br /&gt;
 CMakeFiles/macosx_bundle.dir/all:&lt;br /&gt;
&lt;br /&gt;
The macosx_bundle target includes a perl script that makes use of otool and install_name_tool to:&lt;br /&gt;
&lt;br /&gt;
# read the link dependencies of Stellarium.app/Contents/MacOS/stellarium&lt;br /&gt;
# copy those dependencies into the app (.frameworks and .dylibs)&lt;br /&gt;
# recurse on those copied-in dependencies, stopping at a point where system libraries are called for&lt;br /&gt;
&lt;br /&gt;
== We recommend Qt Creator ==&lt;br /&gt;
&lt;br /&gt;
The core group of developers of stellarium uses QtCreator as main IDE, its integration with Qt and the possibility of having a consistent tool through different platforms makes it the most suitable option for our goals.&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
All kinds of things might go wrong!  &lt;br /&gt;
&lt;br /&gt;
We will write here the most frequent problems and the possible solutions found by the developers. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/User:Mina</id>
		<title>User:Mina</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/User:Mina"/>
				<updated>2012-08-26T19:25:22Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;User of Stellarium on Mac OS X and of a Digitarium Alpha planetarium projector.&lt;br /&gt;
&lt;br /&gt;
Interested in the [[Compilation on Macosx|compilation of Stellarium on Mac OS X]].&lt;br /&gt;
&lt;br /&gt;
== Some notes to self ==&lt;br /&gt;
&lt;br /&gt;
Everything seems OK under OS X 10.8.1, but getting &amp;quot;Incompatible library version: libintl.8.dylib requires version 8.0.0 or later, but libiconv.2.dylib provides version 7.0.0&amp;quot; error at launch, even after reinstalling completely MacPorts.&lt;br /&gt;
&lt;br /&gt;
Cause: during package building, the OS libiconv.2.dylib file (v7.00) is used instead of MacPorts version.&lt;br /&gt;
&lt;br /&gt;
Manual fix: copy /opt/local/lib/libiconv.2.dylib into the Stellarium.app package, replacing OS X version of it.&lt;br /&gt;
&lt;br /&gt;
This error could certainly be corrected by modifying pkgApp.pl script in the util folder, but I'm unable to do it myself.&lt;br /&gt;
&lt;br /&gt;
'''Update (26.08.2012)''': thanks to fixes by T. Reaves, this problem is now history (as of revision 5556). Thanks Timothy :-)&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/User:Mina</id>
		<title>User:Mina</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/User:Mina"/>
				<updated>2012-08-26T19:24:41Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: /* Some notes to self */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;User of Stellarium on Mac OS X and of a Digitarium Alpha planetarium projector.&lt;br /&gt;
&lt;br /&gt;
Interested in the [[Compilation on Macosx|compilation of Stellarium on Mac OS X]].&lt;br /&gt;
&lt;br /&gt;
== Some notes to self ==&lt;br /&gt;
&lt;br /&gt;
Everything seems OK under OS X 10.8.1, but getting &amp;quot;Incompatible library version: libintl.8.dylib requires version 8.0.0 or later, but libiconv.2.dylib provides version 7.0.0&amp;quot; error at launch, even after reinstalling completely MacPorts.&lt;br /&gt;
&lt;br /&gt;
Cause: during package building, the OS libiconv.2.dylib file (v7.00) is used instead of MacPorts version.&lt;br /&gt;
&lt;br /&gt;
Manual fix: copy /opt/local/lib/libiconv.2.dylib into the Stellarium.app package, replacing OS X version of it.&lt;br /&gt;
&lt;br /&gt;
This error could certainly be corrected by modifying pkgApp.pl script in the util folder, but I'm unable to do it myself.&lt;br /&gt;
&lt;br /&gt;
'''Update (26.08.2012)''': thanks to fixes by T. Reaves, this problem is now history. Thanks Timothy :-)&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Accueil</id>
		<title>Accueil</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Accueil"/>
				<updated>2012-08-26T13:00:35Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: Lien modifié&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
&lt;br /&gt;
==Bienvenue==&lt;br /&gt;
Bienvenue sur le wiki de Stellarium, une base de connaissances sur Stellarium, le planétarium libre pour votre ordinateur. Le wiki permet aux utilisateurs de Stellarium, d'avoir une participation collaborative à la construction de la base de connaissances sur Stellarium. Alors, si vous avez quelques choses à ajouter ou à modifier, inscrivez-vous.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:left; width:29%; margin-right:25px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin-bottom:25px; background-color:#ffffff; padding:7px; border:solid 1px #847f93;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2 style=&amp;quot;color:#000000;&amp;quot;&amp;gt;Pour commencer&amp;lt;/h2&amp;gt;&lt;br /&gt;
* [[Stellarium WIKI: Qu'est ce que c'est ?|Qu'est-ce que Stellarium?]]&lt;br /&gt;
* [[Liste complète des fonctionnalités]]&lt;br /&gt;
* [[Télécharger|Où télécharger Stellarium]]&lt;br /&gt;
* [[Guide d'installation]]&lt;br /&gt;
* [[Guide de démarrage rapide]]&lt;br /&gt;
* [[Raccourcis clavier]]&lt;br /&gt;
* [[Foire Aux Questions]]&lt;br /&gt;
&lt;br /&gt;
===Guide utilisateur===&lt;br /&gt;
* [http://sourceforge.net/projects/stellarium/files/Stellarium-user-guide-fr/0.7.1-1/fr_stellarium_user_guide-0.7.1-1.pdf/download Guide utilisateur PDF]&lt;br /&gt;
* [[Guide utilisateur|Autres langues &amp;amp; liens]]&lt;br /&gt;
* [[User_guide_contributions|Contribution pour écrire le &amp;quot;Guide de l'utilisateur&amp;quot;]] {{an}}&lt;br /&gt;
* [[Glossaire]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin-bottom:25px; background-color:#ffffff; padding:7px; border:solid 1px #847f93;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2 style=&amp;quot;color:#000000;&amp;quot;&amp;gt;En plus&amp;lt;/h2&amp;gt;&lt;br /&gt;
===Fichiers supplémentaires pour Stellarium===&lt;br /&gt;
* [[Etoiles]]&lt;br /&gt;
* [[Paysages]]&lt;br /&gt;
* [[Images_de_nébuleuses|Images de nébuleuses]]&lt;br /&gt;
* [[Scripts]]&lt;br /&gt;
* [[Objets du système solaire]]&lt;br /&gt;
* [[Constellations]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- -------------------------------------------------------- --&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:left; width:29%; margin-right:25px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin-bottom:25px; background-color:#ffffff; padding:7px; border:solid 1px #847f93;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2 style=&amp;quot;color:#000000&amp;quot;&amp;gt;Aidez-nous&amp;lt;/h2&amp;gt;&lt;br /&gt;
===Les efforts en cours===&lt;br /&gt;
* [[Traduction de Stellarium |Traduction de Stellarium dans votre langue]]&lt;br /&gt;
* [[Traduction de la page d'accueil|Traduction de la page d'accueil WEB dans votre langue]]&lt;br /&gt;
* [[Edition du Wiki|Trucs pour l'édition du wiki]]&lt;br /&gt;
&lt;br /&gt;
===Aides spécifiques===&lt;br /&gt;
*[[Emplacement des fichiers de test]]&lt;br /&gt;
*[[Recherche des testeurs|Aidez-nous à tester Stellarium]]&lt;br /&gt;
*[[Nettoyage des catalogues|Aide au nettoyage des catalogues d'étoiles]]&lt;br /&gt;
*[[Sky culture art research|Recherches sur les autres représentations des constellations dans le monde]] {{an}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin-bottom:25px; background-color:#ffffff; padding:7px; border:solid 1px #847f93;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2 style=&amp;quot;color:#000000&amp;quot;&amp;gt;Bogues connus&amp;lt;/h2&amp;gt;&lt;br /&gt;
===Problèmes communs===&lt;br /&gt;
*[[Known issues in Stellarium 0.10.1|Dans la version 0.10.1]] {{an}}&lt;br /&gt;
*[[Known issues in Stellarium 0.10.2|Dans la version 0.10.2]] {{an}}&lt;br /&gt;
*[[Known issues in Stellarium 0.10.3|Dans la version 0.10.3]] {{an}}&lt;br /&gt;
*[[Foire_Aux_Questions|N'oubliez pas de consulter la FAQ]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- -------------------------------------------------------- --&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:left; width:29%; margin-right:25px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin-bottom:25px; background-color:#ffffff; padding:7px; border:solid 1px #847f93;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2 style=&amp;quot;color:#000000&amp;quot;&amp;gt;Sujets avancés&amp;lt;/h2&amp;gt;&lt;br /&gt;
===Projection===&lt;br /&gt;
* [[Construire votre planétarium]]&lt;br /&gt;
===Pilotage de télescope===&lt;br /&gt;
*[[Contrôle_du_téléscope|Piloter votre téléscope avec Stellarium]]&lt;br /&gt;
*[[Compatibilité des télescopes]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin-bottom:25px; background-color:#ffffff; padding:7px; border:solid 1px #847f93;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2 style=&amp;quot;color:#000000&amp;quot;&amp;gt;Développeurs&amp;lt;/h2&amp;gt;&lt;br /&gt;
===Compilation===&lt;br /&gt;
* [[Svn checkout|Extraction d'une version de développement depuis Subversion]] (l'ancienne page CVS est [[Cvs checkout|là]] pour des raisons historiques). {{an}}&lt;br /&gt;
*[[Compilation sous Linux]]&lt;br /&gt;
*[[Windows_Build_Instructions|Construction sous Windows]] {{an}}&lt;br /&gt;
*[[Compilation_on_Mac_OS_X|Compilation sur Mac OS X]] {{an}}&lt;br /&gt;
*[[Développement_plugins|Construire et développer des plugins]]&lt;br /&gt;
&lt;br /&gt;
===Le code===&lt;br /&gt;
*[[Standard du code]]&lt;br /&gt;
*[[Structure des répertoires et fichiers]]&lt;br /&gt;
&lt;br /&gt;
===Liste de diffusion===&lt;br /&gt;
* [http://sourceforge.net/mail/?group_id=48857 Suivez ce qui se passe au développement par la lecture de notre liste de diffusion]. Vous pouvez envoyer un courriel à cette liste, mais il sera modéré avant d'apparaître.&lt;br /&gt;
&lt;br /&gt;
===Calendrier de sortie===&lt;br /&gt;
*[[Calendrier de sortie]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Talk:Compilation_on_Macosx</id>
		<title>Talk:Compilation on Macosx</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Talk:Compilation_on_Macosx"/>
				<updated>2012-08-26T12:58:48Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: moved Talk:Compilation on Macosx to Talk:Compilation on Mac OS X: Typo in the title&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Talk:Compilation on Mac OS X]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Talk:Compilation_on_Mac_OS_X</id>
		<title>Talk:Compilation on Mac OS X</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Talk:Compilation_on_Mac_OS_X"/>
				<updated>2012-08-26T12:58:48Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: moved Talk:Compilation on Macosx to Talk:Compilation on Mac OS X: Typo in the title&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Nigel,&lt;br /&gt;
&lt;br /&gt;
I managed to &amp;quot;make&amp;quot; and &amp;quot;make install&amp;quot; without errors by using&lt;br /&gt;
&lt;br /&gt;
  FreeType2_INCLUDE_DIR:PATH=/usr/X11R6/include/freetype2&lt;br /&gt;
&lt;br /&gt;
instead of&lt;br /&gt;
&lt;br /&gt;
  FreeType2_INCLUDE_DIR:PATH=/usr/X11R6/include&lt;br /&gt;
&lt;br /&gt;
Should I change this in the doc?&lt;br /&gt;
&lt;br /&gt;
I could not get the &amp;quot;make macosx_bundle&amp;quot; work. I get the following message :&lt;br /&gt;
&lt;br /&gt;
  make: *** No rule to make target `macosx_bundle'.  Stop.&lt;br /&gt;
&lt;br /&gt;
Can you help me?&lt;br /&gt;
&lt;br /&gt;
--[[User:Mina|Mina]] 13:42, 3 July 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
I was using an older snapshot (svn 2287) so didn't have the make rules for macosx_bundle. Found them now in recent version.&lt;br /&gt;
&lt;br /&gt;
Thanks for these good compilation instructions ! &lt;br /&gt;
&lt;br /&gt;
--[[User:Mina|Mina]] 23:21, 4 July 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
Hello Mina, I am sorry that i was not paying attention, but you seem to have got the right most recent version, and are on your way.  I take it you've successfully compiled Stellarium, then?  How's it working out?&lt;br /&gt;
--[[User:Nigelkerr|Nigelkerr]] 18:36, 10 July 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
Hi Nigel,&lt;br /&gt;
&lt;br /&gt;
Yes I did it successfully, and it works very correctly. The last rev I built is 2340. As you mentioned it in the TO DO, I had to comment out the MAP_NONBLOCK and MAP_POPULATE code and add manually the icon. Any progress here?&lt;br /&gt;
&lt;br /&gt;
May I change in the doc the point about Freetype2? (see above). &lt;br /&gt;
&lt;br /&gt;
Thanks again for keeping a Mac OS X version in sync with the windows one ;-)&lt;br /&gt;
&lt;br /&gt;
--[[User:Mina|Mina]] 00:39, 11 July 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
Mina, do please by all means add as you see fit, i'm glad your interested!  cheers!&lt;br /&gt;
&lt;br /&gt;
--[[User:Nigelkerr|Nigelkerr]] 13:18, 21 July 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
I'll do so. Thanks again ;-)&lt;br /&gt;
&lt;br /&gt;
--[[User:Mina|Mina]] 02:49, 23 July 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
Hi.&lt;br /&gt;
&lt;br /&gt;
I tried to build the svn version (0.9+) of stellarium and failed with the follwing make goal: &lt;br /&gt;
/Users/Shared/stellarium/builds/macosx $ make macosx_bundle&lt;br /&gt;
make[3]: *** No rule to make target `../../install', needed by `CMakeFiles/macosx_bundle'.  Stop.&lt;br /&gt;
make[2]: *** [CMakeFiles/macosx_bundle.dir/all] Error 2&lt;br /&gt;
make[1]: *** [CMakeFiles/macosx_bundle.dir/rule] Error 2&lt;br /&gt;
make: *** [macosx_bundle] Error 2&lt;br /&gt;
Have I done anything wrong?&lt;br /&gt;
Thanks in advance.&lt;br /&gt;
--[[User:Tbender|Tobias]] 11:37, 18 10  2007&lt;br /&gt;
&lt;br /&gt;
Hallo Tobias,&lt;br /&gt;
&lt;br /&gt;
the message you're seeing puzzles me a bit; i just downloaded fresh svn and started over from scratch here to see if i could duplicate that error, and i'm not getting it.  here are things i'd try:&lt;br /&gt;
&lt;br /&gt;
re-try make install, then follow that with a make macosx_bundle&lt;br /&gt;
&lt;br /&gt;
failing that, try deleting your builds/macosx and start over from making that directory&lt;br /&gt;
&lt;br /&gt;
that's all i have for you at the moment.  anything special or odd about your configuration?&lt;br /&gt;
&lt;br /&gt;
cheers,&lt;br /&gt;
--[[User:Nigelkerr|Nigelkerr]] 08:27, 21 October 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
Hi Nigel, I am using macports and have cmake version 2.4-patch 7 installed. Is there a difference to your version?&lt;br /&gt;
&lt;br /&gt;
Tobias&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
Hi Tobias,&lt;br /&gt;
&lt;br /&gt;
Please don't disturb the flow of the discussion in the Talk pages, so that anyone can still follow the discussions. Thanks in advance.&lt;br /&gt;
&lt;br /&gt;
Did you try the very procedure that Nigel put on the [[Compilation on Macosx]] page, using Fink, etc. ? It could be interesting to see if that works on your machine, so that we could help you more efficiently.&lt;br /&gt;
&lt;br /&gt;
--[[User:Mina|Mina]] 12:27, 23 October 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
Hi. Sorry for confusing the discussion with my edit.&lt;br /&gt;
I have installed all dependencies (qt4, cmake, boost, ...) via macports.&lt;br /&gt;
    cd /Users/Shared/&lt;br /&gt;
    svn co https://stellarium.svn.sourceforge.net/svnroot/stellarium/trunk/stellarium stellarium&lt;br /&gt;
    [...Revision 2567.]&lt;br /&gt;
    cd stellarium &lt;br /&gt;
    mkdir -p builds/macosx&lt;br /&gt;
    cd builds/macosx&lt;br /&gt;
    cmake -G &amp;quot;Unix Makefiles&amp;quot;  ../..&lt;br /&gt;
    make &amp;amp;&amp;amp; make install [... works fine]&lt;br /&gt;
    make macosx_bundle&lt;br /&gt;
    make[3]: *** No rule to make target `../../install', needed by `CMakeFiles/macosx_bundle'.  Stop.&lt;br /&gt;
    make[2]: *** [CMakeFiles/macosx_bundle.dir/all] Error 2&lt;br /&gt;
    make[1]: *** [CMakeFiles/macosx_bundle.dir/rule] Error 2&lt;br /&gt;
    make: *** [macosx_bundle] Error 2&lt;br /&gt;
Can anybody who has made a successful macosx_bundle post his CMakeFiles/macosx_bundle.dir/build.make file? Thanks in advance, Tobias&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
Hi Tobias,&lt;br /&gt;
&lt;br /&gt;
I installed all the dependencies via macports. You're right, it is much much easier to get it work than with Fink. Thanks for the suggestion. Then, in the stellarium dir:&lt;br /&gt;
&lt;br /&gt;
  svn co https://stellarium.svn.sourceforge.net/svnroot/stellarium/trunk/stellarium stellarium&lt;br /&gt;
  cd stellarium &lt;br /&gt;
  cd builds/macosx&lt;br /&gt;
  cmake -G &amp;quot;Unix Makefiles&amp;quot;  ../..&lt;br /&gt;
&lt;br /&gt;
I get here the error &amp;quot;CMake Error: Could not find the FreeType2 library and header files.&amp;quot; and fix it (see [[Compilation on Macosx]]).&lt;br /&gt;
&lt;br /&gt;
  make&lt;br /&gt;
  make install&lt;br /&gt;
  make macosx_bundle&lt;br /&gt;
&lt;br /&gt;
and... success :-D (though the build can only be launched successfully from the command line, but works OK, see here [http://sourceforge.net/mailarchive/message.php?msg_id=A1F2DEC0-865A-4626-9BE5-630498EA5C8D%40bobobeach.com]).&lt;br /&gt;
&lt;br /&gt;
--[[User:Mina|Mina]] 11:49, 24 October 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
== CMake not finding FreeType2 ==&lt;br /&gt;
&lt;br /&gt;
Instead of telling people to edit CMakeCache.txt manually, just pass this flag to the cmake command.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;-DFreeType2_INCLUDE_DIR:PATH=/usr/X11R6/include/freetype2&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
HTH,&lt;br /&gt;
--[[User:Raimue|Raimue]] 16:34, 11 February 2008 (PST)&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Compilation_on_Macosx</id>
		<title>Compilation on Macosx</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Compilation_on_Macosx"/>
				<updated>2012-08-26T12:58:47Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: moved Compilation on Macosx to Compilation on Mac OS X: Typo in the title&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Compilation on Mac OS X]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X</id>
		<title>Compilation on Mac OS X</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X"/>
				<updated>2012-08-26T12:58:47Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: moved Compilation on Macosx to Compilation on Mac OS X: Typo in the title&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This document describes how to build Stellarium from sources on Mac OS X. This process ought to improve over time.&lt;br /&gt;
&lt;br /&gt;
The set of instructions was written for the 0.10.4 release and using an Intel machine with Leopard (10.5). The process has been validated on 10.6, 10.7 and 10.8.x.&lt;br /&gt;
&lt;br /&gt;
== Prepare Mac OS X to build Stellarium ==  &lt;br /&gt;
&lt;br /&gt;
Since Stellarium version 0.10.6, you need a machine with Mac OS X 10.5. These instructions were tested with Mac OS X 10.6 (latest version 10.6.8) or later&amp;lt;ref&amp;gt;If you build Stellarium 0.10.6+ by yourself on Mac OS X 10.4.11 then you need edit info.plist file then change value for LSMinimumSystemVersion key. You'll have to get [ftp://ftp.qt.nokia.com/qt/source/ older versions of Qt (Carbon)] too, if you want to create universal binaries (PPC and Intel).&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
# Install the latest version of Apple's Developer Tools: http://developer.apple.com/technology/xcode.html&lt;br /&gt;
# Install the latest version of cmake: http://www.cmake.org/cmake/resources/software.html&lt;br /&gt;
# Install the latest version of Qt Libraries from the dmg (4.8.2 at the time these instructions were written): http://qt.nokia.com/downloads/downloads#qt-lib&lt;br /&gt;
# Install macports: http://www.macports.org/install.php&lt;br /&gt;
# Install bazaar making use of macports:&lt;br /&gt;
&lt;br /&gt;
   $ sudo port install bzr&lt;br /&gt;
&lt;br /&gt;
== Compiling dependencies to build an universal binary ==&lt;br /&gt;
&lt;br /&gt;
We have to compile the dependencies with special flags to be able to generate an universal binary. If you don't intend to create an universal package you can skip this and going to the next section: [[#Building stellarium itself]]&lt;br /&gt;
&lt;br /&gt;
In case you are compiling in a Leopard or Snow Leopard machine you have to recompile stellarium dependencies making use of the oldest system libraries (in our case those in 10.4 aka Tiger). We need the following compilation flags:&lt;br /&gt;
&lt;br /&gt;
a. We want to generate a single binary for both intel and ppc architectures so:&lt;br /&gt;
&lt;br /&gt;
-arch i386 -arch ppc &lt;br /&gt;
&lt;br /&gt;
b. We want to link with the old framework and system libraries:&lt;br /&gt;
&lt;br /&gt;
-mmacosx-version-min=10.4 &lt;br /&gt;
-isysroot /Developer/SDKs/MacOSX10.4u.sdk/ (Not sure if this is really needed)&lt;br /&gt;
&lt;br /&gt;
=== Compiling dependencies ===&lt;br /&gt;
&lt;br /&gt;
- Libiconv: It's important to compile libiconv in the first place because gettext depends on it. Get the latest release from here: http://www.gnu.org/software/libiconv/ Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure --prefix=/usr CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
- Gettext: Get the latest release from here: http://www.gnu.org/software/gettext/ . Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
At the moment of writing these steps 4.6.2 is the latest version of Qt. Trolltech provides support from MacOS 10.4 to 10.6 so our binaries will be constrained by this. I went through these instructions in a Leopard machine. To compile in Snow Leopard it's necessary to consider the following notes copied from the Qt 4.6.0 changelog:&lt;br /&gt;
&lt;br /&gt;
* Gcc 4.2 is used by default. Configure with -platform macx-g++40 to select 4.0.&lt;br /&gt;
* Using the 10.4u SDK requires gcc 4.0.&lt;br /&gt;
* Configuring for the Cocoa port (-cocoa) produces 64-bit binaries by default. Use the -arch flags to override.&lt;br /&gt;
* Building for ppc64 is no longer supported by the gcc tool chain.&lt;br /&gt;
* Building for ppc is still supported.&lt;br /&gt;
&lt;br /&gt;
I haven't tried to generate universal binaries on a Snow Leopard machine. We have to validate these steps.&lt;br /&gt;
  &lt;br /&gt;
== Building stellarium itself ==&lt;br /&gt;
&lt;br /&gt;
Create a build directory with your favorite shell (the following directory is just an example, you can pick any name and path you want)&lt;br /&gt;
&lt;br /&gt;
 $ mkdir ~/Development&lt;br /&gt;
 $ cd ~/Development&lt;br /&gt;
&lt;br /&gt;
And in that directory checkout the sources with the bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr branch lp:stellarium stellarium&lt;br /&gt;
&lt;br /&gt;
For more details, see [[Bzr checkout|the Bazaar checkout instructions]].&lt;br /&gt;
&lt;br /&gt;
=== Time to compile stellarium ===&lt;br /&gt;
&lt;br /&gt;
We setup the build directory&lt;br /&gt;
&lt;br /&gt;
 $ cd stellarium &lt;br /&gt;
 $ mkdir -p builds/macosx&lt;br /&gt;
 $ cd builds/macosx&lt;br /&gt;
&lt;br /&gt;
[[Configuring Build Options|We run cmake]]&amp;lt;ref&amp;gt;If you've installed the Qt Creator dmg instead of the Qt Libraries, cmake will complain that it can't find Qt and you'll have to pass as an option the location of your QtSDK installation, e.g.&lt;br /&gt;
 $ cmake -DQT_QMAKE_EXECUTABLE=~/Development/QtSDK/Desktop/Qt/4.8.2/gcc/bin/qmake ../..&lt;br /&gt;
Other things will later go wrong too, especially when making the application bundle.&lt;br /&gt;
&amp;lt;/ref&amp;gt;...&lt;br /&gt;
&lt;br /&gt;
 $ cmake ../..&lt;br /&gt;
&lt;br /&gt;
... and compile&lt;br /&gt;
&lt;br /&gt;
 $ make&lt;br /&gt;
&lt;br /&gt;
== Packaging ==&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT''': you should delete or move aside the old Stellarium.app before each new build.&lt;br /&gt;
&lt;br /&gt;
 $ make install&lt;br /&gt;
 $ make macosx_bundle&lt;br /&gt;
&lt;br /&gt;
'''Note''' : as of this writing, this last step doesn't work correctly and raise the following error :&lt;br /&gt;
 make[2]: *** No rule to make target `CMakeFiles/install.dir/all', needed by `CMakeFiles/macosx_bundle.dir/all'.  Stop.&lt;br /&gt;
 make[1]: *** [CMakeFiles/macosx_bundle.dir/rule] Error 2&lt;br /&gt;
 make: *** [macosx_bundle] Error 2&lt;br /&gt;
To correct this, you'll have modify file stellarium/builds/macosx/CMakeFiles/Makefile2&amp;lt;ref&amp;gt;Credits to Timothy Reaves, see http://sourceforge.net/mailarchive/message.php?msg_id=29131979&amp;lt;/ref&amp;gt;, changing the line&lt;br /&gt;
 CMakeFiles/macosx_bundle.dir/all: CMakeFiles/install.dir/all&lt;br /&gt;
to&lt;br /&gt;
 CMakeFiles/macosx_bundle.dir/all:&lt;br /&gt;
&lt;br /&gt;
The macosx_bundle target includes a perl script that makes use of otool and install_name_tool to:&lt;br /&gt;
&lt;br /&gt;
# read the link dependencies of Stellarium.app/Contents/MacOS/stellarium&lt;br /&gt;
# copy those dependencies into the app (.frameworks and .dylibs)&lt;br /&gt;
# recurse on those copied-in dependencies, stopping at a point where system libraries are called for&lt;br /&gt;
&lt;br /&gt;
== We recommend Qt Creator ==&lt;br /&gt;
&lt;br /&gt;
The core group of developers of stellarium uses QtCreator as main IDE, its integration with Qt and the possibility of having a consistent tool through different platforms makes it the most suitable option for our goals.&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
All kinds of things might go wrong!  &lt;br /&gt;
&lt;br /&gt;
We will write here the most frequent problems and the possible solutions found by the developers. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X</id>
		<title>Compilation on Mac OS X</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X"/>
				<updated>2012-08-26T12:57:03Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This document describes how to build Stellarium from sources on Mac OS X. This process ought to improve over time.&lt;br /&gt;
&lt;br /&gt;
The set of instructions was written for the 0.10.4 release and using an Intel machine with Leopard (10.5). The process has been validated on 10.6, 10.7 and 10.8.x.&lt;br /&gt;
&lt;br /&gt;
== Prepare Mac OS X to build Stellarium ==  &lt;br /&gt;
&lt;br /&gt;
Since Stellarium version 0.10.6, you need a machine with Mac OS X 10.5. These instructions were tested with Mac OS X 10.6 (latest version 10.6.8) or later&amp;lt;ref&amp;gt;If you build Stellarium 0.10.6+ by yourself on Mac OS X 10.4.11 then you need edit info.plist file then change value for LSMinimumSystemVersion key. You'll have to get [ftp://ftp.qt.nokia.com/qt/source/ older versions of Qt (Carbon)] too, if you want to create universal binaries (PPC and Intel).&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
# Install the latest version of Apple's Developer Tools: http://developer.apple.com/technology/xcode.html&lt;br /&gt;
# Install the latest version of cmake: http://www.cmake.org/cmake/resources/software.html&lt;br /&gt;
# Install the latest version of Qt Libraries from the dmg (4.8.2 at the time these instructions were written): http://qt.nokia.com/downloads/downloads#qt-lib&lt;br /&gt;
# Install macports: http://www.macports.org/install.php&lt;br /&gt;
# Install bazaar making use of macports:&lt;br /&gt;
&lt;br /&gt;
   $ sudo port install bzr&lt;br /&gt;
&lt;br /&gt;
== Compiling dependencies to build an universal binary ==&lt;br /&gt;
&lt;br /&gt;
We have to compile the dependencies with special flags to be able to generate an universal binary. If you don't intend to create an universal package you can skip this and going to the next section: [[#Building stellarium itself]]&lt;br /&gt;
&lt;br /&gt;
In case you are compiling in a Leopard or Snow Leopard machine you have to recompile stellarium dependencies making use of the oldest system libraries (in our case those in 10.4 aka Tiger). We need the following compilation flags:&lt;br /&gt;
&lt;br /&gt;
a. We want to generate a single binary for both intel and ppc architectures so:&lt;br /&gt;
&lt;br /&gt;
-arch i386 -arch ppc &lt;br /&gt;
&lt;br /&gt;
b. We want to link with the old framework and system libraries:&lt;br /&gt;
&lt;br /&gt;
-mmacosx-version-min=10.4 &lt;br /&gt;
-isysroot /Developer/SDKs/MacOSX10.4u.sdk/ (Not sure if this is really needed)&lt;br /&gt;
&lt;br /&gt;
=== Compiling dependencies ===&lt;br /&gt;
&lt;br /&gt;
- Libiconv: It's important to compile libiconv in the first place because gettext depends on it. Get the latest release from here: http://www.gnu.org/software/libiconv/ Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure --prefix=/usr CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
- Gettext: Get the latest release from here: http://www.gnu.org/software/gettext/ . Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
At the moment of writing these steps 4.6.2 is the latest version of Qt. Trolltech provides support from MacOS 10.4 to 10.6 so our binaries will be constrained by this. I went through these instructions in a Leopard machine. To compile in Snow Leopard it's necessary to consider the following notes copied from the Qt 4.6.0 changelog:&lt;br /&gt;
&lt;br /&gt;
* Gcc 4.2 is used by default. Configure with -platform macx-g++40 to select 4.0.&lt;br /&gt;
* Using the 10.4u SDK requires gcc 4.0.&lt;br /&gt;
* Configuring for the Cocoa port (-cocoa) produces 64-bit binaries by default. Use the -arch flags to override.&lt;br /&gt;
* Building for ppc64 is no longer supported by the gcc tool chain.&lt;br /&gt;
* Building for ppc is still supported.&lt;br /&gt;
&lt;br /&gt;
I haven't tried to generate universal binaries on a Snow Leopard machine. We have to validate these steps.&lt;br /&gt;
  &lt;br /&gt;
== Building stellarium itself ==&lt;br /&gt;
&lt;br /&gt;
Create a build directory with your favorite shell (the following directory is just an example, you can pick any name and path you want)&lt;br /&gt;
&lt;br /&gt;
 $ mkdir ~/Development&lt;br /&gt;
 $ cd ~/Development&lt;br /&gt;
&lt;br /&gt;
And in that directory checkout the sources with the bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr branch lp:stellarium stellarium&lt;br /&gt;
&lt;br /&gt;
For more details, see [[Bzr checkout|the Bazaar checkout instructions]].&lt;br /&gt;
&lt;br /&gt;
=== Time to compile stellarium ===&lt;br /&gt;
&lt;br /&gt;
We setup the build directory&lt;br /&gt;
&lt;br /&gt;
 $ cd stellarium &lt;br /&gt;
 $ mkdir -p builds/macosx&lt;br /&gt;
 $ cd builds/macosx&lt;br /&gt;
&lt;br /&gt;
[[Configuring Build Options|We run cmake]]&amp;lt;ref&amp;gt;If you've installed the Qt Creator dmg instead of the Qt Libraries, cmake will complain that it can't find Qt and you'll have to pass as an option the location of your QtSDK installation, e.g.&lt;br /&gt;
 $ cmake -DQT_QMAKE_EXECUTABLE=~/Development/QtSDK/Desktop/Qt/4.8.2/gcc/bin/qmake ../..&lt;br /&gt;
Other things will later go wrong too, especially when making the application bundle.&lt;br /&gt;
&amp;lt;/ref&amp;gt;...&lt;br /&gt;
&lt;br /&gt;
 $ cmake ../..&lt;br /&gt;
&lt;br /&gt;
... and compile&lt;br /&gt;
&lt;br /&gt;
 $ make&lt;br /&gt;
&lt;br /&gt;
== Packaging ==&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT''': you should delete or move aside the old Stellarium.app before each new build.&lt;br /&gt;
&lt;br /&gt;
 $ make install&lt;br /&gt;
 $ make macosx_bundle&lt;br /&gt;
&lt;br /&gt;
'''Note''' : as of this writing, this last step doesn't work correctly and raise the following error :&lt;br /&gt;
 make[2]: *** No rule to make target `CMakeFiles/install.dir/all', needed by `CMakeFiles/macosx_bundle.dir/all'.  Stop.&lt;br /&gt;
 make[1]: *** [CMakeFiles/macosx_bundle.dir/rule] Error 2&lt;br /&gt;
 make: *** [macosx_bundle] Error 2&lt;br /&gt;
To correct this, you'll have modify file stellarium/builds/macosx/CMakeFiles/Makefile2&amp;lt;ref&amp;gt;Credits to Timothy Reaves, see http://sourceforge.net/mailarchive/message.php?msg_id=29131979&amp;lt;/ref&amp;gt;, changing the line&lt;br /&gt;
 CMakeFiles/macosx_bundle.dir/all: CMakeFiles/install.dir/all&lt;br /&gt;
to&lt;br /&gt;
 CMakeFiles/macosx_bundle.dir/all:&lt;br /&gt;
&lt;br /&gt;
The macosx_bundle target includes a perl script that makes use of otool and install_name_tool to:&lt;br /&gt;
&lt;br /&gt;
# read the link dependencies of Stellarium.app/Contents/MacOS/stellarium&lt;br /&gt;
# copy those dependencies into the app (.frameworks and .dylibs)&lt;br /&gt;
# recurse on those copied-in dependencies, stopping at a point where system libraries are called for&lt;br /&gt;
&lt;br /&gt;
== We recommend Qt Creator ==&lt;br /&gt;
&lt;br /&gt;
The core group of developers of stellarium uses QtCreator as main IDE, its integration with Qt and the possibility of having a consistent tool through different platforms makes it the most suitable option for our goals.&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
All kinds of things might go wrong!  &lt;br /&gt;
&lt;br /&gt;
We will write here the most frequent problems and the possible solutions found by the developers. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X</id>
		<title>Compilation on Mac OS X</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X"/>
				<updated>2012-08-25T14:57:56Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: /* Packaging */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This document attempts to describe how to build Stellarium from sources on MacOSX. This process ought to improve over time. The set of instructions was written for the 0.10.4 release and using an Intel machine with Leopard (10.5). The process has to be validated for other versions.&lt;br /&gt;
&lt;br /&gt;
== Prepare Mac OS X to build Stellarium ==  &lt;br /&gt;
&lt;br /&gt;
Since Stellarium version 0.10.6, you need a machine with Mac OS X 10.5. These instructions were tested with Mac OS X 10.6 (latest version 10.6.8) or later&amp;lt;ref&amp;gt;If you build Stellarium 0.10.6+ by yourself on Mac OS X 10.4.11 then you need edit info.plist file then change value for LSMinimumSystemVersion key. You'll have to get [ftp://ftp.qt.nokia.com/qt/source/ older versions of Qt (Carbon)] too, if you want to create universal binaries (PPC and Intel).&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
# Install the latest version of Apple's Developer Tools: http://developer.apple.com/technology/xcode.html&lt;br /&gt;
# Install the latest version of cmake: http://www.cmake.org/cmake/resources/software.html&lt;br /&gt;
# Install the latest version of Qt Libraries from the dmg (4.8.2 at the time these instructions were written): http://qt.nokia.com/downloads/downloads#qt-lib&lt;br /&gt;
# Install macports: http://www.macports.org/install.php&lt;br /&gt;
# Install bazaar making use of macports:&lt;br /&gt;
&lt;br /&gt;
   $ sudo port install bzr&lt;br /&gt;
&lt;br /&gt;
== Compiling dependencies to build an universal binary ==&lt;br /&gt;
&lt;br /&gt;
We have to compile the dependencies with special flags to be able to generate an universal binary. If you don't intend to create an universal package you can skip this and going to the next section: [[#Building stellarium itself]]&lt;br /&gt;
&lt;br /&gt;
In case you are compiling in a Leopard or Snow Leopard machine you have to recompile stellarium dependencies making use of the oldest system libraries (in our case those in 10.4 aka Tiger). We need the following compilation flags:&lt;br /&gt;
&lt;br /&gt;
a. We want to generate a single binary for both intel and ppc architectures so:&lt;br /&gt;
&lt;br /&gt;
-arch i386 -arch ppc &lt;br /&gt;
&lt;br /&gt;
b. We want to link with the old framework and system libraries:&lt;br /&gt;
&lt;br /&gt;
-mmacosx-version-min=10.4 &lt;br /&gt;
-isysroot /Developer/SDKs/MacOSX10.4u.sdk/ (Not sure if this is really needed)&lt;br /&gt;
&lt;br /&gt;
=== Compiling dependencies ===&lt;br /&gt;
&lt;br /&gt;
- Libiconv: It's important to compile libiconv in the first place because gettext depends on it. Get the latest release from here: http://www.gnu.org/software/libiconv/ Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure --prefix=/usr CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
- Gettext: Get the latest release from here: http://www.gnu.org/software/gettext/ . Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
At the moment of writing these steps 4.6.2 is the latest version of Qt. Trolltech provides support from MacOS 10.4 to 10.6 so our binaries will be constrained by this. I went through these instructions in a Leopard machine. To compile in Snow Leopard it's necessary to consider the following notes copied from the Qt 4.6.0 changelog:&lt;br /&gt;
&lt;br /&gt;
* Gcc 4.2 is used by default. Configure with -platform macx-g++40 to select 4.0.&lt;br /&gt;
* Using the 10.4u SDK requires gcc 4.0.&lt;br /&gt;
* Configuring for the Cocoa port (-cocoa) produces 64-bit binaries by default. Use the -arch flags to override.&lt;br /&gt;
* Building for ppc64 is no longer supported by the gcc tool chain.&lt;br /&gt;
* Building for ppc is still supported.&lt;br /&gt;
&lt;br /&gt;
I haven't tried to generate universal binaries on a Snow Leopard machine. We have to validate these steps.&lt;br /&gt;
  &lt;br /&gt;
== Building stellarium itself ==&lt;br /&gt;
&lt;br /&gt;
Create a build directory with your favorite shell (the following directory is just an example, you can pick any name and path you want)&lt;br /&gt;
&lt;br /&gt;
 $ mkdir ~/Development&lt;br /&gt;
 $ cd ~/Development&lt;br /&gt;
&lt;br /&gt;
And in that directory checkout the sources with the bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr branch lp:stellarium stellarium&lt;br /&gt;
&lt;br /&gt;
For more details, see [[Bzr checkout|the Bazaar checkout instructions]].&lt;br /&gt;
&lt;br /&gt;
=== Time to compile stellarium ===&lt;br /&gt;
&lt;br /&gt;
We setup the build directory&lt;br /&gt;
&lt;br /&gt;
 $ cd stellarium &lt;br /&gt;
 $ mkdir -p builds/macosx&lt;br /&gt;
 $ cd builds/macosx&lt;br /&gt;
&lt;br /&gt;
[[Configuring Build Options|We run cmake]]&amp;lt;ref&amp;gt;If you've installed the Qt Creator dmg instead of the Qt Libraries, cmake will complain that it can't find Qt and you'll have to pass as an option the location of your QtSDK installation, e.g.&lt;br /&gt;
 $ cmake -DQT_QMAKE_EXECUTABLE=~/Development/QtSDK/Desktop/Qt/4.8.2/gcc/bin/qmake ../..&lt;br /&gt;
Other things will later go wrong too, especially when making the application bundle.&lt;br /&gt;
&amp;lt;/ref&amp;gt;...&lt;br /&gt;
&lt;br /&gt;
 $ cmake ../..&lt;br /&gt;
&lt;br /&gt;
... and compile&lt;br /&gt;
&lt;br /&gt;
 $ make&lt;br /&gt;
&lt;br /&gt;
== Packaging ==&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT''': you should delete or move aside the old Stellarium.app before each new build.&lt;br /&gt;
&lt;br /&gt;
 $ make install&lt;br /&gt;
 $ make macosx_bundle&lt;br /&gt;
&lt;br /&gt;
'''Note''' : as of this writing, this last step doesn't work correctly and raise the following error :&lt;br /&gt;
 make[2]: *** No rule to make target `CMakeFiles/install.dir/all', needed by `CMakeFiles/macosx_bundle.dir/all'.  Stop.&lt;br /&gt;
 make[1]: *** [CMakeFiles/macosx_bundle.dir/rule] Error 2&lt;br /&gt;
 make: *** [macosx_bundle] Error 2&lt;br /&gt;
To correct this, you'll have modify file stellarium/builds/macosx/CMakeFiles/Makefile2&amp;lt;ref&amp;gt;Credits to Timothy Reaves, see http://sourceforge.net/mailarchive/message.php?msg_id=29131979&amp;lt;/ref&amp;gt;, changing the line&lt;br /&gt;
 CMakeFiles/macosx_bundle.dir/all: CMakeFiles/install.dir/all&lt;br /&gt;
to&lt;br /&gt;
 CMakeFiles/macosx_bundle.dir/all:&lt;br /&gt;
&lt;br /&gt;
The macosx_bundle target includes a perl script that makes use of otool and install_name_tool to:&lt;br /&gt;
&lt;br /&gt;
# read the link dependencies of Stellarium.app/Contents/MacOS/stellarium&lt;br /&gt;
# copy those dependencies into the app (.frameworks and .dylibs)&lt;br /&gt;
# recurse on those copied-in dependencies, stopping at a point where system libraries are called for&lt;br /&gt;
&lt;br /&gt;
== We recommend Qt Creator ==&lt;br /&gt;
&lt;br /&gt;
The core group of developers of stellarium uses QtCreator as main IDE, its integration with Qt and the possibility of having a consistent tool through different platforms makes it the most suitable option for our goals.&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
All kinds of things might go wrong!  &lt;br /&gt;
&lt;br /&gt;
We will write here the most frequent problems and the possible solutions found by the developers. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X</id>
		<title>Compilation on Mac OS X</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X"/>
				<updated>2012-08-25T14:56:09Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: /* Time to compile stellarium */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This document attempts to describe how to build Stellarium from sources on MacOSX. This process ought to improve over time. The set of instructions was written for the 0.10.4 release and using an Intel machine with Leopard (10.5). The process has to be validated for other versions.&lt;br /&gt;
&lt;br /&gt;
== Prepare Mac OS X to build Stellarium ==  &lt;br /&gt;
&lt;br /&gt;
Since Stellarium version 0.10.6, you need a machine with Mac OS X 10.5. These instructions were tested with Mac OS X 10.6 (latest version 10.6.8) or later&amp;lt;ref&amp;gt;If you build Stellarium 0.10.6+ by yourself on Mac OS X 10.4.11 then you need edit info.plist file then change value for LSMinimumSystemVersion key. You'll have to get [ftp://ftp.qt.nokia.com/qt/source/ older versions of Qt (Carbon)] too, if you want to create universal binaries (PPC and Intel).&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
# Install the latest version of Apple's Developer Tools: http://developer.apple.com/technology/xcode.html&lt;br /&gt;
# Install the latest version of cmake: http://www.cmake.org/cmake/resources/software.html&lt;br /&gt;
# Install the latest version of Qt Libraries from the dmg (4.8.2 at the time these instructions were written): http://qt.nokia.com/downloads/downloads#qt-lib&lt;br /&gt;
# Install macports: http://www.macports.org/install.php&lt;br /&gt;
# Install bazaar making use of macports:&lt;br /&gt;
&lt;br /&gt;
   $ sudo port install bzr&lt;br /&gt;
&lt;br /&gt;
== Compiling dependencies to build an universal binary ==&lt;br /&gt;
&lt;br /&gt;
We have to compile the dependencies with special flags to be able to generate an universal binary. If you don't intend to create an universal package you can skip this and going to the next section: [[#Building stellarium itself]]&lt;br /&gt;
&lt;br /&gt;
In case you are compiling in a Leopard or Snow Leopard machine you have to recompile stellarium dependencies making use of the oldest system libraries (in our case those in 10.4 aka Tiger). We need the following compilation flags:&lt;br /&gt;
&lt;br /&gt;
a. We want to generate a single binary for both intel and ppc architectures so:&lt;br /&gt;
&lt;br /&gt;
-arch i386 -arch ppc &lt;br /&gt;
&lt;br /&gt;
b. We want to link with the old framework and system libraries:&lt;br /&gt;
&lt;br /&gt;
-mmacosx-version-min=10.4 &lt;br /&gt;
-isysroot /Developer/SDKs/MacOSX10.4u.sdk/ (Not sure if this is really needed)&lt;br /&gt;
&lt;br /&gt;
=== Compiling dependencies ===&lt;br /&gt;
&lt;br /&gt;
- Libiconv: It's important to compile libiconv in the first place because gettext depends on it. Get the latest release from here: http://www.gnu.org/software/libiconv/ Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure --prefix=/usr CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
- Gettext: Get the latest release from here: http://www.gnu.org/software/gettext/ . Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
At the moment of writing these steps 4.6.2 is the latest version of Qt. Trolltech provides support from MacOS 10.4 to 10.6 so our binaries will be constrained by this. I went through these instructions in a Leopard machine. To compile in Snow Leopard it's necessary to consider the following notes copied from the Qt 4.6.0 changelog:&lt;br /&gt;
&lt;br /&gt;
* Gcc 4.2 is used by default. Configure with -platform macx-g++40 to select 4.0.&lt;br /&gt;
* Using the 10.4u SDK requires gcc 4.0.&lt;br /&gt;
* Configuring for the Cocoa port (-cocoa) produces 64-bit binaries by default. Use the -arch flags to override.&lt;br /&gt;
* Building for ppc64 is no longer supported by the gcc tool chain.&lt;br /&gt;
* Building for ppc is still supported.&lt;br /&gt;
&lt;br /&gt;
I haven't tried to generate universal binaries on a Snow Leopard machine. We have to validate these steps.&lt;br /&gt;
  &lt;br /&gt;
== Building stellarium itself ==&lt;br /&gt;
&lt;br /&gt;
Create a build directory with your favorite shell (the following directory is just an example, you can pick any name and path you want)&lt;br /&gt;
&lt;br /&gt;
 $ mkdir ~/Development&lt;br /&gt;
 $ cd ~/Development&lt;br /&gt;
&lt;br /&gt;
And in that directory checkout the sources with the bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr branch lp:stellarium stellarium&lt;br /&gt;
&lt;br /&gt;
For more details, see [[Bzr checkout|the Bazaar checkout instructions]].&lt;br /&gt;
&lt;br /&gt;
=== Time to compile stellarium ===&lt;br /&gt;
&lt;br /&gt;
We setup the build directory&lt;br /&gt;
&lt;br /&gt;
 $ cd stellarium &lt;br /&gt;
 $ mkdir -p builds/macosx&lt;br /&gt;
 $ cd builds/macosx&lt;br /&gt;
&lt;br /&gt;
[[Configuring Build Options|We run cmake]]&amp;lt;ref&amp;gt;If you've installed the Qt Creator dmg instead of the Qt Libraries, cmake will complain that it can't find Qt and you'll have to pass as an option the location of your QtSDK installation, e.g.&lt;br /&gt;
 $ cmake -DQT_QMAKE_EXECUTABLE=~/Development/QtSDK/Desktop/Qt/4.8.2/gcc/bin/qmake ../..&lt;br /&gt;
Other things will later go wrong too, especially when making the application bundle.&lt;br /&gt;
&amp;lt;/ref&amp;gt;...&lt;br /&gt;
&lt;br /&gt;
 $ cmake ../..&lt;br /&gt;
&lt;br /&gt;
... and compile&lt;br /&gt;
&lt;br /&gt;
 $ make&lt;br /&gt;
&lt;br /&gt;
== Packaging ==&lt;br /&gt;
&lt;br /&gt;
 $ make install&lt;br /&gt;
 $ make macosx_bundle&lt;br /&gt;
&lt;br /&gt;
'''Note''' : as of this writing, this last step doesn't work correctly and raise the following error :&lt;br /&gt;
 make[2]: *** No rule to make target `CMakeFiles/install.dir/all', needed by `CMakeFiles/macosx_bundle.dir/all'.  Stop.&lt;br /&gt;
 make[1]: *** [CMakeFiles/macosx_bundle.dir/rule] Error 2&lt;br /&gt;
 make: *** [macosx_bundle] Error 2&lt;br /&gt;
To correct this, you'll have modify file stellarium/builds/macosx/CMakeFiles/Makefile2&amp;lt;ref&amp;gt;Credits to Timothy Reaves, see http://sourceforge.net/mailarchive/message.php?msg_id=29131979&amp;lt;/ref&amp;gt;, changing the line&lt;br /&gt;
 CMakeFiles/macosx_bundle.dir/all: CMakeFiles/install.dir/all&lt;br /&gt;
to&lt;br /&gt;
 CMakeFiles/macosx_bundle.dir/all:&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT''': you should delete or move aside the old Stellarium.app before each new build.&lt;br /&gt;
&lt;br /&gt;
The macosx_bundle target includes a perl script that makes use of otool and install_name_tool to:&lt;br /&gt;
&lt;br /&gt;
# read the link dependencies of Stellarium.app/Contents/MacOS/stellarium&lt;br /&gt;
# copy those dependencies into the app (.frameworks and .dylibs)&lt;br /&gt;
# recurse on those copied-in dependencies, stopping at a point where system libraries are called for&lt;br /&gt;
&lt;br /&gt;
== We recommend Qt Creator ==&lt;br /&gt;
&lt;br /&gt;
The core group of developers of stellarium uses QtCreator as main IDE, its integration with Qt and the possibility of having a consistent tool through different platforms makes it the most suitable option for our goals.&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
All kinds of things might go wrong!  &lt;br /&gt;
&lt;br /&gt;
We will write here the most frequent problems and the possible solutions found by the developers. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/User:Mina</id>
		<title>User:Mina</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/User:Mina"/>
				<updated>2012-08-25T14:47:04Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;User of Stellarium on Mac OS X and of a Digitarium Alpha planetarium projector.&lt;br /&gt;
&lt;br /&gt;
Interested in the [[Compilation on Macosx|compilation of Stellarium on Mac OS X]].&lt;br /&gt;
&lt;br /&gt;
== Some notes to self ==&lt;br /&gt;
&lt;br /&gt;
Everything seems OK under OS X 10.8.1, but getting &amp;quot;Incompatible library version: libintl.8.dylib requires version 8.0.0 or later, but libiconv.2.dylib provides version 7.0.0&amp;quot; error at launch, even after reinstalling completely MacPorts.&lt;br /&gt;
&lt;br /&gt;
Cause: during package building, the OS libiconv.2.dylib file (v7.00) is used instead of MacPorts version.&lt;br /&gt;
&lt;br /&gt;
Manual fix: copy /opt/local/lib/libiconv.2.dylib into the Stellarium.app package, replacing OS X version of it.&lt;br /&gt;
&lt;br /&gt;
This error could certainly be corrected by modifying pkgApp.pl script in the util folder, but I'm unable to do it myself.&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/User:Mina</id>
		<title>User:Mina</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/User:Mina"/>
				<updated>2012-08-25T14:30:05Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;User of Stellarium on Mac OS X and of a Digitarium Alpha planetarium projector.&lt;br /&gt;
&lt;br /&gt;
Interested in the [[Compilation on Macosx|compilation of Stellarium on Mac OS X]].&lt;br /&gt;
&lt;br /&gt;
== Some notes to self ==&lt;br /&gt;
&lt;br /&gt;
Everything seems OK under OS X 10.8.1, but getting &amp;quot;Incompatible library version: libintl.8.dylib requires version 8.0.0 or later, but libiconv.2.dylib provides version 7.0.0&amp;quot; error at launch, even after reinstalling completely MacPorts.&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/User:Mina</id>
		<title>User:Mina</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/User:Mina"/>
				<updated>2012-08-25T14:09:49Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;User of Stellarium on Mac OS X and of a Digitarium Alpha planetarium projector.&lt;br /&gt;
&lt;br /&gt;
Interested in the compilation of Stellarium on Mac OS X.&lt;br /&gt;
&lt;br /&gt;
== Some notes to self ==&lt;br /&gt;
&lt;br /&gt;
Everything seems OK under OS X 10.8.1, but getting &amp;quot;Incompatible library version: libintl.8.dylib requires version 8.0.0 or later, but libiconv.2.dylib provides version 7.0.0&amp;quot; error at launch, even after reinstalling completely MacPorts.&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X</id>
		<title>Compilation on Mac OS X</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X"/>
				<updated>2012-08-25T12:02:05Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: /* Packaging */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This document attempts to describe how to build Stellarium from sources on MacOSX. This process ought to improve over time. The set of instructions was written for the 0.10.4 release and using an Intel machine with Leopard (10.5). The process has to be validated for other versions.&lt;br /&gt;
&lt;br /&gt;
== Prepare Mac OS X to build Stellarium ==  &lt;br /&gt;
&lt;br /&gt;
Since Stellarium version 0.10.6, you need a machine with Mac OS X 10.5. These instructions were tested with Mac OS X 10.6 (latest version 10.6.8) or later&amp;lt;ref&amp;gt;If you build Stellarium 0.10.6+ by yourself on Mac OS X 10.4.11 then you need edit info.plist file then change value for LSMinimumSystemVersion key. You'll have to get [ftp://ftp.qt.nokia.com/qt/source/ older versions of Qt (Carbon)] too, if you want to create universal binaries (PPC and Intel).&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
# Install the latest version of Apple's Developer Tools: http://developer.apple.com/technology/xcode.html&lt;br /&gt;
# Install the latest version of cmake: http://www.cmake.org/cmake/resources/software.html&lt;br /&gt;
# Install the latest version of Qt Libraries from the dmg (4.8.2 at the time these instructions were written): http://qt.nokia.com/downloads/downloads#qt-lib&lt;br /&gt;
# Install macports: http://www.macports.org/install.php&lt;br /&gt;
# Install bazaar making use of macports:&lt;br /&gt;
&lt;br /&gt;
   $ sudo port install bzr&lt;br /&gt;
&lt;br /&gt;
== Compiling dependencies to build an universal binary ==&lt;br /&gt;
&lt;br /&gt;
We have to compile the dependencies with special flags to be able to generate an universal binary. If you don't intend to create an universal package you can skip this and going to the next section: [[#Building stellarium itself]]&lt;br /&gt;
&lt;br /&gt;
In case you are compiling in a Leopard or Snow Leopard machine you have to recompile stellarium dependencies making use of the oldest system libraries (in our case those in 10.4 aka Tiger). We need the following compilation flags:&lt;br /&gt;
&lt;br /&gt;
a. We want to generate a single binary for both intel and ppc architectures so:&lt;br /&gt;
&lt;br /&gt;
-arch i386 -arch ppc &lt;br /&gt;
&lt;br /&gt;
b. We want to link with the old framework and system libraries:&lt;br /&gt;
&lt;br /&gt;
-mmacosx-version-min=10.4 &lt;br /&gt;
-isysroot /Developer/SDKs/MacOSX10.4u.sdk/ (Not sure if this is really needed)&lt;br /&gt;
&lt;br /&gt;
=== Compiling dependencies ===&lt;br /&gt;
&lt;br /&gt;
- Libiconv: It's important to compile libiconv in the first place because gettext depends on it. Get the latest release from here: http://www.gnu.org/software/libiconv/ Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure --prefix=/usr CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
- Gettext: Get the latest release from here: http://www.gnu.org/software/gettext/ . Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
At the moment of writing these steps 4.6.2 is the latest version of Qt. Trolltech provides support from MacOS 10.4 to 10.6 so our binaries will be constrained by this. I went through these instructions in a Leopard machine. To compile in Snow Leopard it's necessary to consider the following notes copied from the Qt 4.6.0 changelog:&lt;br /&gt;
&lt;br /&gt;
* Gcc 4.2 is used by default. Configure with -platform macx-g++40 to select 4.0.&lt;br /&gt;
* Using the 10.4u SDK requires gcc 4.0.&lt;br /&gt;
* Configuring for the Cocoa port (-cocoa) produces 64-bit binaries by default. Use the -arch flags to override.&lt;br /&gt;
* Building for ppc64 is no longer supported by the gcc tool chain.&lt;br /&gt;
* Building for ppc is still supported.&lt;br /&gt;
&lt;br /&gt;
I haven't tried to generate universal binaries on a Snow Leopard machine. We have to validate these steps.&lt;br /&gt;
  &lt;br /&gt;
== Building stellarium itself ==&lt;br /&gt;
&lt;br /&gt;
Create a build directory with your favorite shell (the following directory is just an example, you can pick any name and path you want)&lt;br /&gt;
&lt;br /&gt;
 $ mkdir ~/Development&lt;br /&gt;
 $ cd ~/Development&lt;br /&gt;
&lt;br /&gt;
And in that directory checkout the sources with the bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr branch lp:stellarium stellarium&lt;br /&gt;
&lt;br /&gt;
For more details, see [[Bzr checkout|the Bazaar checkout instructions]].&lt;br /&gt;
&lt;br /&gt;
=== Time to compile stellarium ===&lt;br /&gt;
&lt;br /&gt;
We setup the build directory&lt;br /&gt;
&lt;br /&gt;
 $ cd stellarium &lt;br /&gt;
 $ mkdir -p builds/macosx&lt;br /&gt;
 $ cd builds/macosx&lt;br /&gt;
&lt;br /&gt;
[[Configuring Build Options|We run cmake]]&amp;lt;ref&amp;gt;If you've installed the Qt Creator dmg instead of the Qt Libraries, cmake will complain that it can't find Qt and you'll have to pass as an option the location of your QtSDK installation, e.g.&lt;br /&gt;
 $ cmake -DQT_QMAKE_EXECUTABLE=~/Development/QtSDK/Desktop/Qt/4.8.2/gcc/bin/qmake ../..&lt;br /&gt;
&amp;lt;/ref&amp;gt;...&lt;br /&gt;
&lt;br /&gt;
 $ cmake ../..&lt;br /&gt;
&lt;br /&gt;
... and compile&lt;br /&gt;
&lt;br /&gt;
 $ make&lt;br /&gt;
&lt;br /&gt;
== Packaging ==&lt;br /&gt;
&lt;br /&gt;
 $ make install&lt;br /&gt;
 $ make macosx_bundle&lt;br /&gt;
&lt;br /&gt;
'''Note''' : as of this writing, this last step doesn't work correctly and raise the following error :&lt;br /&gt;
 make[2]: *** No rule to make target `CMakeFiles/install.dir/all', needed by `CMakeFiles/macosx_bundle.dir/all'.  Stop.&lt;br /&gt;
 make[1]: *** [CMakeFiles/macosx_bundle.dir/rule] Error 2&lt;br /&gt;
 make: *** [macosx_bundle] Error 2&lt;br /&gt;
To correct this, you'll have modify file stellarium/builds/macosx/CMakeFiles/Makefile2&amp;lt;ref&amp;gt;Credits to Timothy Reaves, see http://sourceforge.net/mailarchive/message.php?msg_id=29131979&amp;lt;/ref&amp;gt;, changing the line&lt;br /&gt;
 CMakeFiles/macosx_bundle.dir/all: CMakeFiles/install.dir/all&lt;br /&gt;
to&lt;br /&gt;
 CMakeFiles/macosx_bundle.dir/all:&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT''': you should delete or move aside the old Stellarium.app before each new build.&lt;br /&gt;
&lt;br /&gt;
The macosx_bundle target includes a perl script that makes use of otool and install_name_tool to:&lt;br /&gt;
&lt;br /&gt;
# read the link dependencies of Stellarium.app/Contents/MacOS/stellarium&lt;br /&gt;
# copy those dependencies into the app (.frameworks and .dylibs)&lt;br /&gt;
# recurse on those copied-in dependencies, stopping at a point where system libraries are called for&lt;br /&gt;
&lt;br /&gt;
== We recommend Qt Creator ==&lt;br /&gt;
&lt;br /&gt;
The core group of developers of stellarium uses QtCreator as main IDE, its integration with Qt and the possibility of having a consistent tool through different platforms makes it the most suitable option for our goals.&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
All kinds of things might go wrong!  &lt;br /&gt;
&lt;br /&gt;
We will write here the most frequent problems and the possible solutions found by the developers. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X</id>
		<title>Compilation on Mac OS X</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X"/>
				<updated>2012-08-25T11:59:03Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: /* Packaging */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This document attempts to describe how to build Stellarium from sources on MacOSX. This process ought to improve over time. The set of instructions was written for the 0.10.4 release and using an Intel machine with Leopard (10.5). The process has to be validated for other versions.&lt;br /&gt;
&lt;br /&gt;
== Prepare Mac OS X to build Stellarium ==  &lt;br /&gt;
&lt;br /&gt;
Since Stellarium version 0.10.6, you need a machine with Mac OS X 10.5. These instructions were tested with Mac OS X 10.6 (latest version 10.6.8) or later&amp;lt;ref&amp;gt;If you build Stellarium 0.10.6+ by yourself on Mac OS X 10.4.11 then you need edit info.plist file then change value for LSMinimumSystemVersion key. You'll have to get [ftp://ftp.qt.nokia.com/qt/source/ older versions of Qt (Carbon)] too, if you want to create universal binaries (PPC and Intel).&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
# Install the latest version of Apple's Developer Tools: http://developer.apple.com/technology/xcode.html&lt;br /&gt;
# Install the latest version of cmake: http://www.cmake.org/cmake/resources/software.html&lt;br /&gt;
# Install the latest version of Qt Libraries from the dmg (4.8.2 at the time these instructions were written): http://qt.nokia.com/downloads/downloads#qt-lib&lt;br /&gt;
# Install macports: http://www.macports.org/install.php&lt;br /&gt;
# Install bazaar making use of macports:&lt;br /&gt;
&lt;br /&gt;
   $ sudo port install bzr&lt;br /&gt;
&lt;br /&gt;
== Compiling dependencies to build an universal binary ==&lt;br /&gt;
&lt;br /&gt;
We have to compile the dependencies with special flags to be able to generate an universal binary. If you don't intend to create an universal package you can skip this and going to the next section: [[#Building stellarium itself]]&lt;br /&gt;
&lt;br /&gt;
In case you are compiling in a Leopard or Snow Leopard machine you have to recompile stellarium dependencies making use of the oldest system libraries (in our case those in 10.4 aka Tiger). We need the following compilation flags:&lt;br /&gt;
&lt;br /&gt;
a. We want to generate a single binary for both intel and ppc architectures so:&lt;br /&gt;
&lt;br /&gt;
-arch i386 -arch ppc &lt;br /&gt;
&lt;br /&gt;
b. We want to link with the old framework and system libraries:&lt;br /&gt;
&lt;br /&gt;
-mmacosx-version-min=10.4 &lt;br /&gt;
-isysroot /Developer/SDKs/MacOSX10.4u.sdk/ (Not sure if this is really needed)&lt;br /&gt;
&lt;br /&gt;
=== Compiling dependencies ===&lt;br /&gt;
&lt;br /&gt;
- Libiconv: It's important to compile libiconv in the first place because gettext depends on it. Get the latest release from here: http://www.gnu.org/software/libiconv/ Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure --prefix=/usr CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
- Gettext: Get the latest release from here: http://www.gnu.org/software/gettext/ . Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
At the moment of writing these steps 4.6.2 is the latest version of Qt. Trolltech provides support from MacOS 10.4 to 10.6 so our binaries will be constrained by this. I went through these instructions in a Leopard machine. To compile in Snow Leopard it's necessary to consider the following notes copied from the Qt 4.6.0 changelog:&lt;br /&gt;
&lt;br /&gt;
* Gcc 4.2 is used by default. Configure with -platform macx-g++40 to select 4.0.&lt;br /&gt;
* Using the 10.4u SDK requires gcc 4.0.&lt;br /&gt;
* Configuring for the Cocoa port (-cocoa) produces 64-bit binaries by default. Use the -arch flags to override.&lt;br /&gt;
* Building for ppc64 is no longer supported by the gcc tool chain.&lt;br /&gt;
* Building for ppc is still supported.&lt;br /&gt;
&lt;br /&gt;
I haven't tried to generate universal binaries on a Snow Leopard machine. We have to validate these steps.&lt;br /&gt;
  &lt;br /&gt;
== Building stellarium itself ==&lt;br /&gt;
&lt;br /&gt;
Create a build directory with your favorite shell (the following directory is just an example, you can pick any name and path you want)&lt;br /&gt;
&lt;br /&gt;
 $ mkdir ~/Development&lt;br /&gt;
 $ cd ~/Development&lt;br /&gt;
&lt;br /&gt;
And in that directory checkout the sources with the bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr branch lp:stellarium stellarium&lt;br /&gt;
&lt;br /&gt;
For more details, see [[Bzr checkout|the Bazaar checkout instructions]].&lt;br /&gt;
&lt;br /&gt;
=== Time to compile stellarium ===&lt;br /&gt;
&lt;br /&gt;
We setup the build directory&lt;br /&gt;
&lt;br /&gt;
 $ cd stellarium &lt;br /&gt;
 $ mkdir -p builds/macosx&lt;br /&gt;
 $ cd builds/macosx&lt;br /&gt;
&lt;br /&gt;
[[Configuring Build Options|We run cmake]]&amp;lt;ref&amp;gt;If you've installed the Qt Creator dmg instead of the Qt Libraries, cmake will complain that it can't find Qt and you'll have to pass as an option the location of your QtSDK installation, e.g.&lt;br /&gt;
 $ cmake -DQT_QMAKE_EXECUTABLE=~/Development/QtSDK/Desktop/Qt/4.8.2/gcc/bin/qmake ../..&lt;br /&gt;
&amp;lt;/ref&amp;gt;...&lt;br /&gt;
&lt;br /&gt;
 $ cmake ../..&lt;br /&gt;
&lt;br /&gt;
... and compile&lt;br /&gt;
&lt;br /&gt;
 $ make&lt;br /&gt;
&lt;br /&gt;
== Packaging ==&lt;br /&gt;
&lt;br /&gt;
 $ make install&lt;br /&gt;
 $ make macosx_bundle&lt;br /&gt;
&lt;br /&gt;
'''Note''' : as of this writing, this last step doesn't work correctly and raise the following error :&lt;br /&gt;
 make[2]: *** No rule to make target `CMakeFiles/install.dir/all', needed by `CMakeFiles/macosx_bundle.dir/all'.  Stop.&lt;br /&gt;
 make[1]: *** [CMakeFiles/macosx_bundle.dir/rule] Error 2&lt;br /&gt;
 make: *** [macosx_bundle] Error 2&lt;br /&gt;
To correct this, you'll have modify file stellarium/builds/macosx/CMakeFiles/Makefile2, changing the line&lt;br /&gt;
 CMakeFiles/macosx_bundle.dir/all: CMakeFiles/install.dir/all&lt;br /&gt;
to&lt;br /&gt;
 CMakeFiles/macosx_bundle.dir/all:&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT''': you should delete or move aside the old Stellarium.app before each new build.&lt;br /&gt;
&lt;br /&gt;
The macosx_bundle target includes a perl script that makes use of otool and install_name_tool to:&lt;br /&gt;
&lt;br /&gt;
# read the link dependencies of Stellarium.app/Contents/MacOS/stellarium&lt;br /&gt;
# copy those dependencies into the app (.frameworks and .dylibs)&lt;br /&gt;
# recurse on those copied-in dependencies, stopping at a point where system libraries are called for&lt;br /&gt;
&lt;br /&gt;
== We recommend Qt Creator ==&lt;br /&gt;
&lt;br /&gt;
The core group of developers of stellarium uses QtCreator as main IDE, its integration with Qt and the possibility of having a consistent tool through different platforms makes it the most suitable option for our goals.&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
All kinds of things might go wrong!  &lt;br /&gt;
&lt;br /&gt;
We will write here the most frequent problems and the possible solutions found by the developers. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X</id>
		<title>Compilation on Mac OS X</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X"/>
				<updated>2012-08-25T11:46:58Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: /* Time to compile stellarium */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This document attempts to describe how to build Stellarium from sources on MacOSX. This process ought to improve over time. The set of instructions was written for the 0.10.4 release and using an Intel machine with Leopard (10.5). The process has to be validated for other versions.&lt;br /&gt;
&lt;br /&gt;
== Prepare Mac OS X to build Stellarium ==  &lt;br /&gt;
&lt;br /&gt;
Since Stellarium version 0.10.6, you need a machine with Mac OS X 10.5. These instructions were tested with Mac OS X 10.6 (latest version 10.6.8) or later&amp;lt;ref&amp;gt;If you build Stellarium 0.10.6+ by yourself on Mac OS X 10.4.11 then you need edit info.plist file then change value for LSMinimumSystemVersion key. You'll have to get [ftp://ftp.qt.nokia.com/qt/source/ older versions of Qt (Carbon)] too, if you want to create universal binaries (PPC and Intel).&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
# Install the latest version of Apple's Developer Tools: http://developer.apple.com/technology/xcode.html&lt;br /&gt;
# Install the latest version of cmake: http://www.cmake.org/cmake/resources/software.html&lt;br /&gt;
# Install the latest version of Qt Libraries from the dmg (4.8.2 at the time these instructions were written): http://qt.nokia.com/downloads/downloads#qt-lib&lt;br /&gt;
# Install macports: http://www.macports.org/install.php&lt;br /&gt;
# Install bazaar making use of macports:&lt;br /&gt;
&lt;br /&gt;
   $ sudo port install bzr&lt;br /&gt;
&lt;br /&gt;
== Compiling dependencies to build an universal binary ==&lt;br /&gt;
&lt;br /&gt;
We have to compile the dependencies with special flags to be able to generate an universal binary. If you don't intend to create an universal package you can skip this and going to the next section: [[#Building stellarium itself]]&lt;br /&gt;
&lt;br /&gt;
In case you are compiling in a Leopard or Snow Leopard machine you have to recompile stellarium dependencies making use of the oldest system libraries (in our case those in 10.4 aka Tiger). We need the following compilation flags:&lt;br /&gt;
&lt;br /&gt;
a. We want to generate a single binary for both intel and ppc architectures so:&lt;br /&gt;
&lt;br /&gt;
-arch i386 -arch ppc &lt;br /&gt;
&lt;br /&gt;
b. We want to link with the old framework and system libraries:&lt;br /&gt;
&lt;br /&gt;
-mmacosx-version-min=10.4 &lt;br /&gt;
-isysroot /Developer/SDKs/MacOSX10.4u.sdk/ (Not sure if this is really needed)&lt;br /&gt;
&lt;br /&gt;
=== Compiling dependencies ===&lt;br /&gt;
&lt;br /&gt;
- Libiconv: It's important to compile libiconv in the first place because gettext depends on it. Get the latest release from here: http://www.gnu.org/software/libiconv/ Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure --prefix=/usr CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
- Gettext: Get the latest release from here: http://www.gnu.org/software/gettext/ . Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
At the moment of writing these steps 4.6.2 is the latest version of Qt. Trolltech provides support from MacOS 10.4 to 10.6 so our binaries will be constrained by this. I went through these instructions in a Leopard machine. To compile in Snow Leopard it's necessary to consider the following notes copied from the Qt 4.6.0 changelog:&lt;br /&gt;
&lt;br /&gt;
* Gcc 4.2 is used by default. Configure with -platform macx-g++40 to select 4.0.&lt;br /&gt;
* Using the 10.4u SDK requires gcc 4.0.&lt;br /&gt;
* Configuring for the Cocoa port (-cocoa) produces 64-bit binaries by default. Use the -arch flags to override.&lt;br /&gt;
* Building for ppc64 is no longer supported by the gcc tool chain.&lt;br /&gt;
* Building for ppc is still supported.&lt;br /&gt;
&lt;br /&gt;
I haven't tried to generate universal binaries on a Snow Leopard machine. We have to validate these steps.&lt;br /&gt;
  &lt;br /&gt;
== Building stellarium itself ==&lt;br /&gt;
&lt;br /&gt;
Create a build directory with your favorite shell (the following directory is just an example, you can pick any name and path you want)&lt;br /&gt;
&lt;br /&gt;
 $ mkdir ~/Development&lt;br /&gt;
 $ cd ~/Development&lt;br /&gt;
&lt;br /&gt;
And in that directory checkout the sources with the bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr branch lp:stellarium stellarium&lt;br /&gt;
&lt;br /&gt;
For more details, see [[Bzr checkout|the Bazaar checkout instructions]].&lt;br /&gt;
&lt;br /&gt;
=== Time to compile stellarium ===&lt;br /&gt;
&lt;br /&gt;
We setup the build directory&lt;br /&gt;
&lt;br /&gt;
 $ cd stellarium &lt;br /&gt;
 $ mkdir -p builds/macosx&lt;br /&gt;
 $ cd builds/macosx&lt;br /&gt;
&lt;br /&gt;
[[Configuring Build Options|We run cmake]]&amp;lt;ref&amp;gt;If you've installed the Qt Creator dmg instead of the Qt Libraries, cmake will complain that it can't find Qt and you'll have to pass as an option the location of your QtSDK installation, e.g.&lt;br /&gt;
 $ cmake -DQT_QMAKE_EXECUTABLE=~/Development/QtSDK/Desktop/Qt/4.8.2/gcc/bin/qmake ../..&lt;br /&gt;
&amp;lt;/ref&amp;gt;...&lt;br /&gt;
&lt;br /&gt;
 $ cmake ../..&lt;br /&gt;
&lt;br /&gt;
... and compile&lt;br /&gt;
&lt;br /&gt;
 $ make&lt;br /&gt;
&lt;br /&gt;
== Packaging ==&lt;br /&gt;
&lt;br /&gt;
 $ make install&lt;br /&gt;
 $ make macosx_bundle&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT''': you should delete or move aside the old /Users/Shared/stellarium/Stellarium.app before each new build.&lt;br /&gt;
&lt;br /&gt;
The macosx_bundle target includes a perl script that makes use of otool and install_name_tool to:&lt;br /&gt;
&lt;br /&gt;
# read the link dependencies of Stellarium.app/Contents/MacOS/stellarium&lt;br /&gt;
# copy those dependencies into the app (.frameworks and .dylibs)&lt;br /&gt;
# recurse on those copied-in dependencies, stopping at a point where system libraries are called for&lt;br /&gt;
&lt;br /&gt;
== We recommend Qt Creator ==&lt;br /&gt;
&lt;br /&gt;
The core group of developers of stellarium uses QtCreator as main IDE, its integration with Qt and the possibility of having a consistent tool through different platforms makes it the most suitable option for our goals.&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
All kinds of things might go wrong!  &lt;br /&gt;
&lt;br /&gt;
We will write here the most frequent problems and the possible solutions found by the developers. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X</id>
		<title>Compilation on Mac OS X</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X"/>
				<updated>2012-08-25T11:44:21Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: /* Prepare Mac OS X to build Stellarium */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This document attempts to describe how to build Stellarium from sources on MacOSX. This process ought to improve over time. The set of instructions was written for the 0.10.4 release and using an Intel machine with Leopard (10.5). The process has to be validated for other versions.&lt;br /&gt;
&lt;br /&gt;
== Prepare Mac OS X to build Stellarium ==  &lt;br /&gt;
&lt;br /&gt;
Since Stellarium version 0.10.6, you need a machine with Mac OS X 10.5. These instructions were tested with Mac OS X 10.6 (latest version 10.6.8) or later&amp;lt;ref&amp;gt;If you build Stellarium 0.10.6+ by yourself on Mac OS X 10.4.11 then you need edit info.plist file then change value for LSMinimumSystemVersion key. You'll have to get [ftp://ftp.qt.nokia.com/qt/source/ older versions of Qt (Carbon)] too, if you want to create universal binaries (PPC and Intel).&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
# Install the latest version of Apple's Developer Tools: http://developer.apple.com/technology/xcode.html&lt;br /&gt;
# Install the latest version of cmake: http://www.cmake.org/cmake/resources/software.html&lt;br /&gt;
# Install the latest version of Qt Libraries from the dmg (4.8.2 at the time these instructions were written): http://qt.nokia.com/downloads/downloads#qt-lib&lt;br /&gt;
# Install macports: http://www.macports.org/install.php&lt;br /&gt;
# Install bazaar making use of macports:&lt;br /&gt;
&lt;br /&gt;
   $ sudo port install bzr&lt;br /&gt;
&lt;br /&gt;
== Compiling dependencies to build an universal binary ==&lt;br /&gt;
&lt;br /&gt;
We have to compile the dependencies with special flags to be able to generate an universal binary. If you don't intend to create an universal package you can skip this and going to the next section: [[#Building stellarium itself]]&lt;br /&gt;
&lt;br /&gt;
In case you are compiling in a Leopard or Snow Leopard machine you have to recompile stellarium dependencies making use of the oldest system libraries (in our case those in 10.4 aka Tiger). We need the following compilation flags:&lt;br /&gt;
&lt;br /&gt;
a. We want to generate a single binary for both intel and ppc architectures so:&lt;br /&gt;
&lt;br /&gt;
-arch i386 -arch ppc &lt;br /&gt;
&lt;br /&gt;
b. We want to link with the old framework and system libraries:&lt;br /&gt;
&lt;br /&gt;
-mmacosx-version-min=10.4 &lt;br /&gt;
-isysroot /Developer/SDKs/MacOSX10.4u.sdk/ (Not sure if this is really needed)&lt;br /&gt;
&lt;br /&gt;
=== Compiling dependencies ===&lt;br /&gt;
&lt;br /&gt;
- Libiconv: It's important to compile libiconv in the first place because gettext depends on it. Get the latest release from here: http://www.gnu.org/software/libiconv/ Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure --prefix=/usr CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
- Gettext: Get the latest release from here: http://www.gnu.org/software/gettext/ . Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
At the moment of writing these steps 4.6.2 is the latest version of Qt. Trolltech provides support from MacOS 10.4 to 10.6 so our binaries will be constrained by this. I went through these instructions in a Leopard machine. To compile in Snow Leopard it's necessary to consider the following notes copied from the Qt 4.6.0 changelog:&lt;br /&gt;
&lt;br /&gt;
* Gcc 4.2 is used by default. Configure with -platform macx-g++40 to select 4.0.&lt;br /&gt;
* Using the 10.4u SDK requires gcc 4.0.&lt;br /&gt;
* Configuring for the Cocoa port (-cocoa) produces 64-bit binaries by default. Use the -arch flags to override.&lt;br /&gt;
* Building for ppc64 is no longer supported by the gcc tool chain.&lt;br /&gt;
* Building for ppc is still supported.&lt;br /&gt;
&lt;br /&gt;
I haven't tried to generate universal binaries on a Snow Leopard machine. We have to validate these steps.&lt;br /&gt;
  &lt;br /&gt;
== Building stellarium itself ==&lt;br /&gt;
&lt;br /&gt;
Create a build directory with your favorite shell (the following directory is just an example, you can pick any name and path you want)&lt;br /&gt;
&lt;br /&gt;
 $ mkdir ~/Development&lt;br /&gt;
 $ cd ~/Development&lt;br /&gt;
&lt;br /&gt;
And in that directory checkout the sources with the bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr branch lp:stellarium stellarium&lt;br /&gt;
&lt;br /&gt;
For more details, see [[Bzr checkout|the Bazaar checkout instructions]].&lt;br /&gt;
&lt;br /&gt;
=== Time to compile stellarium ===&lt;br /&gt;
&lt;br /&gt;
We setup the build directory&lt;br /&gt;
&lt;br /&gt;
 $ cd stellarium &lt;br /&gt;
 $ mkdir -p builds/macosx&lt;br /&gt;
 $ cd builds/macosx&lt;br /&gt;
&lt;br /&gt;
[[Configuring Build Options|We run cmake]]&amp;lt;ref&amp;gt;You'll have to pass location of your QtSDK instllation, e.g.&lt;br /&gt;
&lt;br /&gt;
 $ cmake -DQT_QMAKE_EXECUTABLE=~/Development/QtSDK/Desktop/Qt/4.8.1/gcc/bin/qmake ../..&lt;br /&gt;
&lt;br /&gt;
if your installation complains that it didn't found Qt with such an error message&lt;br /&gt;
&lt;br /&gt;
  CMake Error at /Applications/CMake 2.8-9.app/Contents/share/cmake-2.8/Modules/FindPackageHandleStandardArgs.cmake:97 (MESSAGE):&lt;br /&gt;
    Could NOT find Qt4 (missing: QT_QMAKE_EXECUTABLE QT_MOC_EXECUTABLE&lt;br /&gt;
    QT_RCC_EXECUTABLE QT_UIC_EXECUTABLE QT_INCLUDE_DIR QT_LIBRARY_DIR&lt;br /&gt;
    QT_QTCORE_LIBRARY) (Required is at least version &amp;quot;4.6.2&amp;quot;)&lt;br /&gt;
  Call Stack (most recent call first):&lt;br /&gt;
    /Applications/CMake 2.8-9.app/Contents/share/cmake-2.8/Modules/FindPackageHandleStandardArgs.cmake:288 (_FPHSA_FAILURE_MESSAGE)&lt;br /&gt;
    /Applications/CMake 2.8-9.app/Contents/share/cmake-2.8/Modules/FindQt4.cmake:1200 (FIND_PACKAGE_HANDLE_STANDARD_ARGS)&lt;br /&gt;
    CMakeLists.txt:248 (FIND_PACKAGE)&amp;lt;/ref&amp;gt;...&lt;br /&gt;
&lt;br /&gt;
 $ cmake ../..&lt;br /&gt;
&lt;br /&gt;
... and compile&lt;br /&gt;
&lt;br /&gt;
 $ make&lt;br /&gt;
&lt;br /&gt;
== Packaging ==&lt;br /&gt;
&lt;br /&gt;
 $ make install&lt;br /&gt;
 $ make macosx_bundle&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT''': you should delete or move aside the old /Users/Shared/stellarium/Stellarium.app before each new build.&lt;br /&gt;
&lt;br /&gt;
The macosx_bundle target includes a perl script that makes use of otool and install_name_tool to:&lt;br /&gt;
&lt;br /&gt;
# read the link dependencies of Stellarium.app/Contents/MacOS/stellarium&lt;br /&gt;
# copy those dependencies into the app (.frameworks and .dylibs)&lt;br /&gt;
# recurse on those copied-in dependencies, stopping at a point where system libraries are called for&lt;br /&gt;
&lt;br /&gt;
== We recommend Qt Creator ==&lt;br /&gt;
&lt;br /&gt;
The core group of developers of stellarium uses QtCreator as main IDE, its integration with Qt and the possibility of having a consistent tool through different platforms makes it the most suitable option for our goals.&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
All kinds of things might go wrong!  &lt;br /&gt;
&lt;br /&gt;
We will write here the most frequent problems and the possible solutions found by the developers. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X</id>
		<title>Compilation on Mac OS X</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X"/>
				<updated>2012-08-24T11:33:33Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: /* Prepare Mac OS X to build Stellarium */ Update versions and instructions&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This document attempts to describe how to build Stellarium from sources on MacOSX. This process ought to improve over time. The set of instructions was written for the 0.10.4 release and using an Intel machine with Leopard (10.5). The process has to be validated for other versions.&lt;br /&gt;
&lt;br /&gt;
== Prepare Mac OS X to build Stellarium ==  &lt;br /&gt;
&lt;br /&gt;
Since Stellarium version 0.10.6, you need a machine with Mac OS X 10.5. These instructions were tested with Mac OS X 10.6 (latest version 10.6.8) or later&amp;lt;ref&amp;gt;If you build Stellarium 0.10.6+ by yourself on Mac OS X 10.4.11 then you need edit info.plist file then change value for LSMinimumSystemVersion key. You'll have to get [ftp://ftp.qt.nokia.com/qt/source/ older versions of Qt (Carbon)] too, if you want to create universal binaries (PPC and Intel).&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
# Install the latest version of Apple's Developer Tools: http://developer.apple.com/technology/xcode.html&lt;br /&gt;
# Install the latest version of cmake: http://www.cmake.org/cmake/resources/software.html&lt;br /&gt;
# Install the latest version of Qt: Framework from the dmg (4.8.1 at the time these instructions were written): http://qt.nokia.com/downloads &lt;br /&gt;
# Install macports: http://www.macports.org/install.php&lt;br /&gt;
# Install bazaar making use of macports:&lt;br /&gt;
&lt;br /&gt;
   $ sudo port install bzr&lt;br /&gt;
&lt;br /&gt;
== Compiling dependencies to build an universal binary ==&lt;br /&gt;
&lt;br /&gt;
We have to compile the dependencies with special flags to be able to generate an universal binary. If you don't intend to create an universal package you can skip this and going to the next section: [[#Building stellarium itself]]&lt;br /&gt;
&lt;br /&gt;
In case you are compiling in a Leopard or Snow Leopard machine you have to recompile stellarium dependencies making use of the oldest system libraries (in our case those in 10.4 aka Tiger). We need the following compilation flags:&lt;br /&gt;
&lt;br /&gt;
a. We want to generate a single binary for both intel and ppc architectures so:&lt;br /&gt;
&lt;br /&gt;
-arch i386 -arch ppc &lt;br /&gt;
&lt;br /&gt;
b. We want to link with the old framework and system libraries:&lt;br /&gt;
&lt;br /&gt;
-mmacosx-version-min=10.4 &lt;br /&gt;
-isysroot /Developer/SDKs/MacOSX10.4u.sdk/ (Not sure if this is really needed)&lt;br /&gt;
&lt;br /&gt;
=== Compiling dependencies ===&lt;br /&gt;
&lt;br /&gt;
- Libiconv: It's important to compile libiconv in the first place because gettext depends on it. Get the latest release from here: http://www.gnu.org/software/libiconv/ Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure --prefix=/usr CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
- Gettext: Get the latest release from here: http://www.gnu.org/software/gettext/ . Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
At the moment of writing these steps 4.6.2 is the latest version of Qt. Trolltech provides support from MacOS 10.4 to 10.6 so our binaries will be constrained by this. I went through these instructions in a Leopard machine. To compile in Snow Leopard it's necessary to consider the following notes copied from the Qt 4.6.0 changelog:&lt;br /&gt;
&lt;br /&gt;
* Gcc 4.2 is used by default. Configure with -platform macx-g++40 to select 4.0.&lt;br /&gt;
* Using the 10.4u SDK requires gcc 4.0.&lt;br /&gt;
* Configuring for the Cocoa port (-cocoa) produces 64-bit binaries by default. Use the -arch flags to override.&lt;br /&gt;
* Building for ppc64 is no longer supported by the gcc tool chain.&lt;br /&gt;
* Building for ppc is still supported.&lt;br /&gt;
&lt;br /&gt;
I haven't tried to generate universal binaries on a Snow Leopard machine. We have to validate these steps.&lt;br /&gt;
  &lt;br /&gt;
== Building stellarium itself ==&lt;br /&gt;
&lt;br /&gt;
Create a build directory with your favorite shell (the following directory is just an example, you can pick any name and path you want)&lt;br /&gt;
&lt;br /&gt;
 $ mkdir ~/Development&lt;br /&gt;
 $ cd ~/Development&lt;br /&gt;
&lt;br /&gt;
And in that directory checkout the sources with the bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr branch lp:stellarium stellarium&lt;br /&gt;
&lt;br /&gt;
For more details, see [[Bzr checkout|the Bazaar checkout instructions]].&lt;br /&gt;
&lt;br /&gt;
=== Time to compile stellarium ===&lt;br /&gt;
&lt;br /&gt;
We setup the build directory&lt;br /&gt;
&lt;br /&gt;
 $ cd stellarium &lt;br /&gt;
 $ mkdir -p builds/macosx&lt;br /&gt;
 $ cd builds/macosx&lt;br /&gt;
&lt;br /&gt;
[[Configuring Build Options|We run cmake]]&amp;lt;ref&amp;gt;You'll have to pass location of your QtSDK instllation, e.g.&lt;br /&gt;
&lt;br /&gt;
 $ cmake -DQT_QMAKE_EXECUTABLE=~/Development/QtSDK/Desktop/Qt/4.8.1/gcc/bin/qmake ../..&lt;br /&gt;
&lt;br /&gt;
if your installation complains that it didn't found Qt with such an error message&lt;br /&gt;
&lt;br /&gt;
  CMake Error at /Applications/CMake 2.8-9.app/Contents/share/cmake-2.8/Modules/FindPackageHandleStandardArgs.cmake:97 (MESSAGE):&lt;br /&gt;
    Could NOT find Qt4 (missing: QT_QMAKE_EXECUTABLE QT_MOC_EXECUTABLE&lt;br /&gt;
    QT_RCC_EXECUTABLE QT_UIC_EXECUTABLE QT_INCLUDE_DIR QT_LIBRARY_DIR&lt;br /&gt;
    QT_QTCORE_LIBRARY) (Required is at least version &amp;quot;4.6.2&amp;quot;)&lt;br /&gt;
  Call Stack (most recent call first):&lt;br /&gt;
    /Applications/CMake 2.8-9.app/Contents/share/cmake-2.8/Modules/FindPackageHandleStandardArgs.cmake:288 (_FPHSA_FAILURE_MESSAGE)&lt;br /&gt;
    /Applications/CMake 2.8-9.app/Contents/share/cmake-2.8/Modules/FindQt4.cmake:1200 (FIND_PACKAGE_HANDLE_STANDARD_ARGS)&lt;br /&gt;
    CMakeLists.txt:248 (FIND_PACKAGE)&amp;lt;/ref&amp;gt;...&lt;br /&gt;
&lt;br /&gt;
 $ cmake ../..&lt;br /&gt;
&lt;br /&gt;
... and compile&lt;br /&gt;
&lt;br /&gt;
 $ make&lt;br /&gt;
&lt;br /&gt;
== Packaging ==&lt;br /&gt;
&lt;br /&gt;
 $ make install&lt;br /&gt;
 $ make macosx_bundle&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT''': you should delete or move aside the old /Users/Shared/stellarium/Stellarium.app before each new build.&lt;br /&gt;
&lt;br /&gt;
The macosx_bundle target includes a perl script that makes use of otool and install_name_tool to:&lt;br /&gt;
&lt;br /&gt;
# read the link dependencies of Stellarium.app/Contents/MacOS/stellarium&lt;br /&gt;
# copy those dependencies into the app (.frameworks and .dylibs)&lt;br /&gt;
# recurse on those copied-in dependencies, stopping at a point where system libraries are called for&lt;br /&gt;
&lt;br /&gt;
== We recommend Qt Creator ==&lt;br /&gt;
&lt;br /&gt;
The core group of developers of stellarium uses QtCreator as main IDE, its integration with Qt and the possibility of having a consistent tool through different platforms makes it the most suitable option for our goals.&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
All kinds of things might go wrong!  &lt;br /&gt;
&lt;br /&gt;
We will write here the most frequent problems and the possible solutions found by the developers. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	<entry>
		<id>http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X</id>
		<title>Compilation on Mac OS X</title>
		<link rel="alternate" type="text/html" href="http://stellarium.org/wiki/index.php/Compilation_on_Mac_OS_X"/>
				<updated>2012-08-19T10:38:11Z</updated>
		
		<summary type="html">&lt;p&gt;Mina: /* Time to compile stellarium */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This document attempts to describe how to build Stellarium from sources on MacOSX. This process ought to improve over time. The set of instructions was written for the 0.10.4 release and using an Intel machine with Leopard (10.5). The process has to be validated for other versions.&lt;br /&gt;
&lt;br /&gt;
== Prepare Mac OS X to build Stellarium ==  &lt;br /&gt;
&lt;br /&gt;
You need a machine with Mac OS X 10.4 (latest version 10.4.11) or later&amp;lt;ref&amp;gt;Since version 0.10.6 you need Mac OS X 10.5 or later.&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;If you build Stellarium 0.10.6+ by yourself on Mac OS X 10.4.11 then you need edit info.plist file then change value for LSMinimumSystemVersion key.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
# Install the latest version of Apple's Developer Tools: http://developer.apple.com/technology/xcode.html&lt;br /&gt;
# Install the latest version of cmake: http://www.cmake.org/cmake/resources/software.html&lt;br /&gt;
# Install the latest version of Qt: Framework from the dmg (4.6.2 at the time these instructions were written) http://qt.nokia.com/downloads &lt;br /&gt;
# Install macports: http://www.macports.org/install.php&lt;br /&gt;
# Install bazaar making use of macports:&lt;br /&gt;
&lt;br /&gt;
   $ sudo port install bzr&lt;br /&gt;
&lt;br /&gt;
Note: &lt;br /&gt;
&lt;br /&gt;
For Mac OS X there are two different versions of Qt:&lt;br /&gt;
&lt;br /&gt;
* Carbon version: Default download and recommended option. It works for Mac OS X 10.5/4/3, and both Intel and PPC architectures. Install this one if you want to create universal binaries&lt;br /&gt;
&lt;br /&gt;
* Cocoa version: Exclusively for Intel architecture and Mac OS X 10.5 and later. You can use this if you aren't going to create universal binaries.&lt;br /&gt;
&lt;br /&gt;
== Compiling dependencies to build an universal binary ==&lt;br /&gt;
&lt;br /&gt;
We have to compile the dependencies with special flags to be able to generate an universal binary. If you don't intend to create an universal package you can skip this and going to the next section: [[#Building stellarium itself]]&lt;br /&gt;
&lt;br /&gt;
In case you are compiling in a Leopard or Snow Leopard machine you have to recompile stellarium dependencies making use of the oldest system libraries (in our case those in 10.4 aka Tiger). We need the following compilation flags:&lt;br /&gt;
&lt;br /&gt;
a. We want to generate a single binary for both intel and ppc architectures so:&lt;br /&gt;
&lt;br /&gt;
-arch i386 -arch ppc &lt;br /&gt;
&lt;br /&gt;
b. We want to link with the old framework and system libraries:&lt;br /&gt;
&lt;br /&gt;
-mmacosx-version-min=10.4 &lt;br /&gt;
-isysroot /Developer/SDKs/MacOSX10.4u.sdk/ (Not sure if this is really needed)&lt;br /&gt;
&lt;br /&gt;
=== Compiling dependencies ===&lt;br /&gt;
&lt;br /&gt;
- Libiconv: It's important to compile libiconv in the first place because gettext depends on it. Get the latest release from here: http://www.gnu.org/software/libiconv/ Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure --prefix=/usr CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
- Gettext: Get the latest release from here: http://www.gnu.org/software/gettext/ . Uncompress the file in your favorite directory and configure and compile like this:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure CFLAGS='-arch i386 -arch ppc -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk/'&lt;br /&gt;
  $ make&lt;br /&gt;
  $ make install&lt;br /&gt;
&lt;br /&gt;
At the moment of writing these steps 4.6.2 is the latest version of Qt. Trolltech provides support from MacOS 10.4 to 10.6 so our binaries will be constrained by this. I went through these instructions in a Leopard machine. To compile in Snow Leopard it's necessary to consider the following notes copied from the Qt 4.6.0 changelog:&lt;br /&gt;
&lt;br /&gt;
* Gcc 4.2 is used by default. Configure with -platform macx-g++40 to select 4.0.&lt;br /&gt;
* Using the 10.4u SDK requires gcc 4.0.&lt;br /&gt;
* Configuring for the Cocoa port (-cocoa) produces 64-bit binaries by default. Use the -arch flags to override.&lt;br /&gt;
* Building for ppc64 is no longer supported by the gcc tool chain.&lt;br /&gt;
* Building for ppc is still supported.&lt;br /&gt;
&lt;br /&gt;
I haven't tried to generate universal binaries on a Snow Leopard machine. We have to validate these steps.&lt;br /&gt;
  &lt;br /&gt;
== Building stellarium itself ==&lt;br /&gt;
&lt;br /&gt;
Create a build directory with your favorite shell (the following directory is just an example, you can pick any name and path you want)&lt;br /&gt;
&lt;br /&gt;
 $ mkdir ~/Development&lt;br /&gt;
 $ cd ~/Development&lt;br /&gt;
&lt;br /&gt;
And in that directory checkout the sources with the bzr command&lt;br /&gt;
&lt;br /&gt;
 $ bzr branch lp:stellarium stellarium&lt;br /&gt;
&lt;br /&gt;
For more details, see [[Bzr checkout|the Bazaar checkout instructions]].&lt;br /&gt;
&lt;br /&gt;
=== Time to compile stellarium ===&lt;br /&gt;
&lt;br /&gt;
We setup the build directory&lt;br /&gt;
&lt;br /&gt;
 $ cd stellarium &lt;br /&gt;
 $ mkdir -p builds/macosx&lt;br /&gt;
 $ cd builds/macosx&lt;br /&gt;
&lt;br /&gt;
[[Configuring Build Options|We run cmake]]&amp;lt;ref&amp;gt;You'll have to pass location of your QtSDK instllation, e.g.&lt;br /&gt;
&lt;br /&gt;
 $ cmake -DQT_QMAKE_EXECUTABLE=~/Development/QtSDK/Desktop/Qt/4.8.1/gcc/bin/qmake ../..&lt;br /&gt;
&lt;br /&gt;
if your installation complains that it didn't found Qt with such an error message&lt;br /&gt;
&lt;br /&gt;
  CMake Error at /Applications/CMake 2.8-9.app/Contents/share/cmake-2.8/Modules/FindPackageHandleStandardArgs.cmake:97 (MESSAGE):&lt;br /&gt;
    Could NOT find Qt4 (missing: QT_QMAKE_EXECUTABLE QT_MOC_EXECUTABLE&lt;br /&gt;
    QT_RCC_EXECUTABLE QT_UIC_EXECUTABLE QT_INCLUDE_DIR QT_LIBRARY_DIR&lt;br /&gt;
    QT_QTCORE_LIBRARY) (Required is at least version &amp;quot;4.6.2&amp;quot;)&lt;br /&gt;
  Call Stack (most recent call first):&lt;br /&gt;
    /Applications/CMake 2.8-9.app/Contents/share/cmake-2.8/Modules/FindPackageHandleStandardArgs.cmake:288 (_FPHSA_FAILURE_MESSAGE)&lt;br /&gt;
    /Applications/CMake 2.8-9.app/Contents/share/cmake-2.8/Modules/FindQt4.cmake:1200 (FIND_PACKAGE_HANDLE_STANDARD_ARGS)&lt;br /&gt;
    CMakeLists.txt:248 (FIND_PACKAGE)&amp;lt;/ref&amp;gt;...&lt;br /&gt;
&lt;br /&gt;
 $ cmake ../..&lt;br /&gt;
&lt;br /&gt;
... and compile&lt;br /&gt;
&lt;br /&gt;
 $ make&lt;br /&gt;
&lt;br /&gt;
== Packaging ==&lt;br /&gt;
&lt;br /&gt;
 $ make install&lt;br /&gt;
 $ make macosx_bundle&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT''': you should delete or move aside the old /Users/Shared/stellarium/Stellarium.app before each new build.&lt;br /&gt;
&lt;br /&gt;
The macosx_bundle target includes a perl script that makes use of otool and install_name_tool to:&lt;br /&gt;
&lt;br /&gt;
# read the link dependencies of Stellarium.app/Contents/MacOS/stellarium&lt;br /&gt;
# copy those dependencies into the app (.frameworks and .dylibs)&lt;br /&gt;
# recurse on those copied-in dependencies, stopping at a point where system libraries are called for&lt;br /&gt;
&lt;br /&gt;
== We recommend Qt Creator ==&lt;br /&gt;
&lt;br /&gt;
The core group of developers of stellarium uses QtCreator as main IDE, its integration with Qt and the possibility of having a consistent tool through different platforms makes it the most suitable option for our goals.&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
All kinds of things might go wrong!  &lt;br /&gt;
&lt;br /&gt;
We will write here the most frequent problems and the possible solutions found by the developers. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>Mina</name></author>	</entry>

	</feed>