All documents are available in PDF format in the qgis share/doc subdirectory. If
- you have the Adobe PDF plugin for your browser, you can display the PDF version by
- clicking on the PDF link in the upper
- right corner of each document.
-
-
-
Note
-
This documentation is based on QGIS 0.4 (Baby)
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+ Quantum GIS Documentation
+ Version 0.5 Bandit
+
-This document briefly describes how to build QGIS 0.4 (Baby) from the source distribution. Information on building the GRASS plugin with raster and vector support can be found in the Building QGIS with GRASS Support document, available at http://community.qgis.org/grass_plugin.
-
-
-NOTE - IF YOU PLAN TO BUILD THE GRASS PLUGIN, A PATCHED VERSION OF GDAL MUST BE USED. SEE THE BUILDING QGIS WITH GRASS SUPPORT DOCUMENT BEFORE PROCEEDING.
-
-
-QGIS requires that a number of libraries be installed on your system:
-
-
-
Qt 3.1.2 or higher
-
-
GDAL/OGR
-
-
PostgreSQL/GEOS/PostGIS (Optional)
-
-
-
-
-
-Each of these requirements are discussed below. Note that the information given below is abstracted from the installation documentation for each of the libraries. See the install information for each library to get detailed instructions. In the documentation below, the file names used are examples.
-
-
-
-If you are building QGIS without PostgreSQL, skip to the section on Installing GDAL/OGR.
-
-
- QGIS uses the latest features of PostgreSQL. For this reason, version 7.4.x or higher is recommended with QGIS version 0.4. If you choose to add PostgreSQL, you must also install PostGIS and the GEOS library (see below).
-
-
-
Download PostgreSQL source from www.postgresql.org
-
-
Extract the source
-
- tar -xzf postgresql-7.4.1.tar.gz
-
-
-
-
-
Change to the source directory
-
- cd postgresql-7.4.1
-
-
-
-
-
Configure PostgreSQL:
-
- ./configure --prefix=/usr/local/pgsql
-
-
-
-
-
Build
-
- make
-
-
-
-
-
Install
-
- make install
-
-
-
-
-
As root, create the postgres user and setup the database (following taken from PostgreSQL INSTALL file with modification)
-
-
-
Create the postgres user
-
- adduser postgres
-
-
-
-
-
Create the directory for the PostgreSQL database
-
- mkdir /usr/local/pgsql/data
-
-
-
-
-
Change ownership of the data directory to the postgres user
-
PostgreSQL should now be running. Logon as the postgres user (or use su - postgres). You should be able to connect to the test database and execute a test query with the following commands:
-
-
-
- psql test
- select version();
- version
- -------------------------------------------------------------------------------------
- PostgreSQL 7.4.1 on i686-pc-linux-gnu, compiled by GCC gcc (GCC) 3.3.1 (SuSE Linux)
-(1 row)
-
- \q
-
-QGIS uses GEOS to properly fetch features from the database when doing an
- identify or select. You can still view PostGIS layers without GEOS, but you
- will not be able to create a selection or identify a feature.
-
-
-If you choose to proceed without GEOS support, QGIS will warn you each time you load a layer from the database.
-
-
-NOTE - You must edit the PostGIS Makefile and make sure that USE_GEOS=1 is
- set. Also adjust GEOS_DIR to point to your GEOS installation directory.
-
-
Untar PostGIS into the contrib subdirectory of the postgresql build directory. The contrib subdirectory is located in the directory created in step 3 of the PostgreSQL installation process.
-
-
Change to the postgis subdirectory
-
-
Edit the Makefile to enable GEOS support (see the note above)
-
-
PostGIS provides a manual in the doc/html subdirectory that explains the build process (see the Installation section)
-
-
The quick and dirty steps to install PostGIS are:
-
- cd contrib
- gunzip postgis-0.8.0.tar.gz
- tar xvf postgis-0.8.0.tar
- cd postgis-0.8.0
- make
- make install
- createlang plpgsql yourtestdatabase
- psql -d yourtestdatabase -f postgis.sql
- psql -d yourtestdatabase -f spatial_ref_sys.sql
-
-
-
-
-
The better way is to carefully follow the instructions in the PostGIS manual in the doc/html subdirectory or the online manual at http://postgis.refractions.net/docs
-
- The GDAL and OGR libraries provide support for raster and vector data formats. QGIS makes use of both of these libraries (which come bundled in one distribution).
-
-
-Note: A Linux binary of GDAL is available at http://www.remotesensing.org/gdal. If you choose to install the binary you will also need to download and unpack the source tree since QGIS needs the header files in order to compile.
-
-
-To install GDAL/OGR from source:
-
-
-
Download the GDAL distribution from http://www.remotesensing.org/gdal. You should use version 1.1.9 or higher. Versions prior to 1.1.9 contained a bug that caused problems when a null feature was encountered. If you want to build vector support for GRASS, you must use GDAL 1.2.0 (see note in Section 1).
-
-
-
-
Untar the distribution
-
- tar xfvz /../path/../gdal-x.x.x.tar.gz
-
-
-
-
-
Change to the gdal-x.x.x subdirectory that was created by step 2
-
- cd gdal-x.x.x
-
-
-
-
-
Configure GDAL without PostgreSQL support (necessary):
-
- ./configure --without-pg
-
-
-
-
-
Build and install GDAL:
-
- make
- su
- make install
-
-
-
-
-
In order to run GDAL after installing it is necessary for the shared
- library to be findable. This can often be accomplished by setting
- LD_LIBRARY_PATH to include /usr/local/lib. On Linux, you can add
- /usr/local/lib (or whatever path you used for installing GDAL) to
- /etc/ld.so.conf and run ldconfig as root.
-
-
-
-
Make sure that gdal-config (found in the bin subdirectory where GDAL was installed) is included in the PATH. If necessary, add the path to gdal-config to the PATH environment variable.
-
- Qt 3.1.2 or higher is required in order to compile QGIS. You may already have Qt on your system. If so, check to see if you have version 3.1.2 or later. If not already installed, you will have to install the Qt development package for your distribution. If you are not able to install the required Qt packages, you will have to build from source.
- To install Qt from source:
-
-
-
-After you have installed the required libraries, you are ready to build QGIS. Download and untar the QGIS distribution and change to the QGIS source directory. You have two options for building and installing QGIS: Quick and Dirty and the right way.
-
-
- If you don't need PostgreSQL support and have installed GDAL ,
- you can configure and build QGIS by changing to the distribution directory
- and typing:
-
./configure
- make
- make install
-
- The above assumes that the gdal-config program is in your PATH
- See the next section for the full configuration instructions.
-
-
- The configure script will detect Qt, unless it is installed in a
- non-standard location. Setting the QTDIR environment variable will
- make ensure that the detection succeeds. You can also specify the
- path using the -with-qtdir option.
-
-
- If the gdal-config script is in the PATH, configure will automatically
- detect and configure GDAL support. If not in the path, you can specify
- the full path to gdal-config using the -with-gdal option. For example:
-
- If the pg_config script is in the PATH, configure will automatically
- detect and configure PostgreSQL support. If not, you can use the
- -with-pg option to specify the full path to pg_config. For example:
-
- This will configure QGIS to use both GDAL and PostgreSQL. QGIS will be
- installed in /usr/local/qgis.
-
-
-If QTDIR is set and gdal-config and pg_config are both
- in the PATH, there is no need to use the -with-gdal and -with-pg
- options. The configure script will properly detect and configure
- GDAL and PostgreSQL
-
-
- Once properly configured simply issue the following commands:
-
- make
- make install
-
-NOTE - As of version 0.1, you can no longer run QGIS from the src directory. You must do a make install and start QGIS from the installed location. In the case of the example above, the QGIS binary resides in the bin subdirectory of the directory specified with the prefix option (/usr/local/qgis/bin).
-
-
-The QGIS source distribution contains a number of "core" plugins. These are built along with QGIS using the instructions above. Additional external plugins are available from the QGIS community website at http://community.qgis.org. Instructions for building an external plugin can be found at http://wiki.qgis.org/qgiswiki/StepByStepBuildInstructions. Some external plugins may include instructions on building. If so, follow the instructions provided with the plugin rather than those provided in the wiki.
-
-
-Gary Sherman
-2004-06-28
-
-
-
diff --git a/doc/install.pdf b/doc/install.pdf
index 18786346a6e1..a5c40945f8b7 100644
Binary files a/doc/install.pdf and b/doc/install.pdf differ
diff --git a/doc/install_guide/Makefile.am b/doc/install_guide/Makefile.am
new file mode 100644
index 000000000000..1641179cd5f8
--- /dev/null
+++ b/doc/install_guide/Makefile.am
@@ -0,0 +1,51 @@
+# Copyright (C) 2004 Jens Oberender
+#
+# This file is free software; as a special exception the author gives
+# unlimited permission to copy and/or distribute it, with or without
+# modifications, as long as this notice is preserved.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
+# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+
+docdatadir = $(datadir)/$(PACKAGE)/doc/install_guide
+
+docdata_DATA = \
+ contents.png \
+ index.html \
+ install.css \
+ install.html \
+ internals.pl \
+ labels.pl \
+ next_g.png \
+ next.png \
+ node10.html \
+ node11.html \
+ node12.html \
+ node13.html \
+ node14.html \
+ node15.html \
+ node16.html \
+ node17.html \
+ node18.html \
+ node19.html \
+ node1.html \
+ node20.html \
+ node2.html \
+ node3.html \
+ node4.html \
+ node5.html \
+ node6.html \
+ node7.html \
+ node8.html \
+ node9.html \
+ nx_grp_g.png \
+ prev_g.png \
+ prev.png \
+ up_g.png \
+ up.png \
+ WARNINGS
+
+# generated by ls -1 | sed -e '/CVS/d' -e '/Makefile/d' -e 's#\(.*\)# \1 \\#'
+
+EXTRA_DIST = $(docdata_DATA)
diff --git a/doc/install_guide/WARNINGS b/doc/install_guide/WARNINGS
new file mode 100644
index 000000000000..995fc93713ff
--- /dev/null
+++ b/doc/install_guide/WARNINGS
@@ -0,0 +1,8 @@
+No implementation found for style `graphicx'
+No implementation found for style `colortbl'
+No implementation found for style `setspace'
+No implementation found for style `listings'
+No implementation found for style `hyperref'
+No implementation found for style `ae'
+No implementation found for style `aecompl'
+No implementation found for style `fancyhdr'
diff --git a/doc/install_guide/contents.png b/doc/install_guide/contents.png
new file mode 100644
index 000000000000..0c752c66c876
Binary files /dev/null and b/doc/install_guide/contents.png differ
diff --git a/doc/install_guide/index.html b/doc/install_guide/index.html
new file mode 100644
index 000000000000..11f3ebdec89f
--- /dev/null
+++ b/doc/install_guide/index.html
@@ -0,0 +1,108 @@
+
+
+
+
+
+Building and Installing QGIS
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Next:Contents
+ Contents
+
+
+
+
+
+After you have installed the required libraries, you are ready to build QGIS. Download and untar the QGIS distribution and change to the QGIS source directory. You have two options for building and installing QGIS: Quick and Dirty and the right way.
+
+ If you don't need PostgreSQL support and have installed GDAL ,
+ you can configure and build QGIS by changing to the distribution directory
+ and typing:
+
./configure
+ make
+ make install
+
+ The above assumes that the gdal-config program is in your PATH
+ See the next section for the full configuration instructions.
+
+
+Gary Sherman
+2004-10-01
+
+
+
diff --git a/doc/install_guide/node12.html b/doc/install_guide/node12.html
new file mode 100644
index 000000000000..37b81dc8c034
--- /dev/null
+++ b/doc/install_guide/node12.html
@@ -0,0 +1,99 @@
+
+
+
+
+
+Configuring QGIS the Right Way
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Next:Qt
+ Up:Building QGIS
+ Previous:Quick and Dirty
+ Contents
+
+
+
+
+
+ If the gdal-config script is in the PATH, configure will automatically
+ detect and configure GDAL support. If not in the path, you can specify
+ the full path to gdal-config using the -with-gdal option. For example:
+
+ If the pg_config script is in the PATH, configure will automatically
+ detect and configure PostgreSQL support. If not, you can use the
+ -with-pg option to specify the full path to pg_config. For example:
+
+ This will configure QGIS to use GDAL, GRASS, and PostgreSQL. QGIS will be
+ installed in /usr/local/qgis.
+
+
+If QTDIR is set and gdal-config and pg_config are both
+ in the PATH, there is no need to use the -with-gdal and -with-pg
+ options. The configure script will properly detect and configure
+ GDAL and PostgreSQL. You must still use the -with-grass option if building with GRASS support.
+
+ Once properly configured simply issue the following commands:
+
+ make
+ make install
+
+NOTE - As of version 0.1, you can no longer run QGIS from the src directory. You must do a make install and start QGIS from the installed location. In the case of the example above, the QGIS binary resides in the bin subdirectory of the directory specified with the prefix option (/usr/local/qgis/bin).
+
+
+For information on using QGIS see the QGIS User Guide.
+
+
+The QGIS source distribution contains a number of "core" plugins. These are built along with QGIS using the instructions above. Additional external plugins are available from the QGIS community website at http://community.qgis.org. Instructions for building an external plugin can be found at http://wiki.qgis.org/qgiswiki/StepByStepBuildInstructions. Some external plugins may include instructions on building. If so, follow the instructions provided with the plugin rather than those provided in the wiki.
+
+
+Gary Sherman
+2004-10-01
+
+
+
diff --git a/doc/install_guide/node2.html b/doc/install_guide/node2.html
new file mode 100644
index 000000000000..94babfbf3326
--- /dev/null
+++ b/doc/install_guide/node2.html
@@ -0,0 +1,127 @@
+
+
+
+
+
+Introduction
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Next:Getting QGIS
+ Up:Building and Installing QGIS
+ Previous:Contents
+ Contents
+
+
+
+
+
+
+Introduction
+
+This document briefly describes how to build QGIS 0.5 (Bandit) from the source distribution. These instructions are for Linux/Unix and other POSIX systems which have the required build environment.
+
+
+Installing the Windows version of QGIS is simply a matter of unzipping the WIN32 distribution and creating a shortcut to the application. See the README.WIN32 file for additional information regarding the Windows version of QGIS. At version 0.5, the GRASS plugin is not available in Windows.
+
+
+PostgreSQL/PostGIS support allows you to store spatial data in a PostgreSQL database. GRASS support provides access to GRASS mapsets.
+
+
+NOTE - IF YOU PLAN TO BUILD QGIS WITH GRASS SUPPORT, VERSION 1.2.3 OR HIGHER
+OF GDAL MUST BE USED.
+
+
+Each of the requirements are discussed below. Note that the information given below is abstracted from the installation documentation for each of the libraries. See the install information for each library to get detailed instructions. In the documentation below, the file names and versions used are examples.
+
+
+
+If you are building QGIS without PostgreSQL or GRASS support, skip to the section on Installing GDAL/OGR.
+
+QGIS is available in both source and package format from http://qgis.org.
+
+
+In addition, packages for many Linux distributions are independently maintained in various locations. See
+http://qgis.org/download.php for the latest information on package locations.
+
+
+Packages for most of the software/libraries discussed below can be found for almost all Linux distributions. While it is possible to mix compiling from source and installing packages to meet the requirements for QGIS, sometimes this becomes tricky. Following the steps below will generally ensure a successful installation. If you are using SuSE 9.1, the LinGIS distribution ftp://ftp.lingis.org is a good choice for installing QGIS and its dependencies.
+
+
+ QGIS uses the latest features of PostgreSQL. For this reason, version 7.4.x or higher is recommended with QGIS version 0.5. If you choose to add PostgreSQL, you must also install PostGIS and the GEOS library (see below).
+
+
+
Download PostgreSQL source from www.postgresql.org
+
+
Extract the source
+
+ tar -xzf postgresql-7.4.1.tar.gz
+
+
+
+
+
Change to the source directory
+
+ cd postgresql-7.4.1
+
+
+
+
+
Configure PostgreSQL:
+
+ ./configure --prefix=/usr/local/pgsql
+
+
+
+
+
Build
+
+ make
+
+
+
+
+
Install
+
+ make install
+
+
+
+
+
As root, create the postgres user and setup the database (following taken from PostgreSQL INSTALL file with modification)
+
+
+
Create the postgres user
+
+ adduser postgres
+
+
+
+
+
Create the directory for the PostgreSQL database
+
+ mkdir /usr/local/pgsql/data
+
+
+
+
+
Change ownership of the data directory to the postgres user
+
PostgreSQL should now be running. Logon as the postgres user (or use su - postgres). You should be able to connect to the test database and execute a test query with the following commands:
+
+
+
+ psql test
+ select version();
+ version
+ -------------------------------------------------------------------------------------
+ PostgreSQL 7.4.1 on i686-pc-linux-gnu, compiled by GCC gcc (GCC) 3.3.1 (SuSE Linux)
+(1 row)
+
+ \q
+
+QGIS uses GEOS to properly fetch features from the database when doing an
+ identify or select. You can still view PostGIS layers without GEOS, but you
+ will not be able to create a selection or identify a feature.
+
+
+If you choose to proceed without GEOS support, QGIS will warn you each time you load a layer from the database.
+
+
+NOTE - You must edit the PostGIS Makefile and make sure that USE_GEOS=1 is
+ set. Also adjust GEOS_DIR to point to your GEOS installation directory.
+
+
Untar PostGIS into the contrib subdirectory of the postgresql build directory. The contrib subdirectory is located in the directory created in step 3 of the PostgreSQL installation process.
+
+
Change to the postgis subdirectory
+
+
Edit the Makefile to enable GEOS support (see the note above)
+
+
PostGIS provides a manual in the doc/html subdirectory that explains the build process (see the Installation section)
+
+
The quick and dirty steps to install PostGIS are:
+
+ cd contrib
+ gunzip postgis-0.8.0.tar.gz
+ tar xvf postgis-0.8.0.tar
+ cd postgis-0.8.0
+ make
+ make install
+ createlang plpgsql yourtestdatabase
+ psql -d yourtestdatabase -f postgis.sql
+ psql -d yourtestdatabase -f spatial_ref_sys.sql
+
+
+
+The better way to install PostGIS is to carefully follow the instructions in the PostGIS manual in the doc/html subdirectory or the online manual at http://postgis.refractions.net/docs
+
+If you want QGIS to support GRASS vector and raster layers, you must build GRASS prior to proceeding.
+Follow the directions on the GRASS website carefully to build version 5.7. Additional information and the build instructions can be found at http://grass.itc.it.
+
+
+ The GDAL and OGR libraries provide support for raster and vector data formats. QGIS makes use of both of these libraries (which come bundled in one distribution).
+
+
+Note: A Linux binary of GDAL is available at http://www.remotesensing.org/gdal. If you choose to install the binary you will also need to download and unpack the source tree since QGIS needs the header files in order to compile.
+
+
+To install GDAL/OGR from source:
+
+
+
Download the GDAL distribution from http://www.remotesensing.org/gdal. You should use version 1.1.9 or higher. Versions prior to 1.1.9 contained a bug that caused problems when a null feature was encountered. If you want to build vector support for GRASS, you must use GDAL 1.2.3.
+
+
+
+
Untar the distribution
+
+ tar xfvz /../path/../gdal-x.x.x.tar.gz
+
+
+
+
+
Change to the gdal-x.x.x subdirectory that was created by step 2
+
+ cd gdal-x.x.x
+
+
+
+
+
Configure GDAL
+
+ ./configure
+
+ or if you want GRASS support
+
+ ./configure --with-grass=<full path to grass install>
+
+ Depending on the GDAL version you are building, it may be necessary to specify -without-ogdi when running configure if you don't have the OGDI libary avaiable on your system.
+
+
+
+
Build and install GDAL:
+
+ make
+ su
+ make install
+
+
+
+
+
In order to run GDAL after installing it is necessary for the shared
+ library to be findable. This can often be accomplished by setting
+ LD_LIBRARY_PATH to include /usr/local/lib. On Linux, you can add
+ /usr/local/lib (or whatever path you used for installing GDAL) to
+ /etc/ld.so.conf and run ldconfig as root.
+
+
+
+
Make sure that gdal-config (found in the bin subdirectory where GDAL was installed) is included in the PATH. If necessary, add the path to gdal-config to the PATH environment variable.
+
+ Qt 3.1.2 or higher is required in order to compile QGIS. You may already have Qt on your system. If so, check to see if you have version 3.1.2 or later. You can check the Qt version using the find command:
+
+ If you have the locate utility installed you can do the same more quickly using:
+
+ locate qglobal.h | xargs grep QT_VERSION_STR
+
+ In either case the result should look something like this:
+
+ #define QT_VERSION_STR "3.3.1"
+
+ In the example above, Qt 3.3.1 is installed.
+
+
+If Qt is not installed, you will have to install the Qt development package for your distribution. If you are not able to install the required Qt packages, you will have to build from source.
+
+
Quantum GIS (QGIS) is designed to be a Geographic Information System (GIS)
-built for Linux/Unix. QGIS currently offers basic support for vector, raster, and database formats.
If you do not have any GIS data, you can obtain a dataset for Alaska (which will be used as the
- basis for the examples and screenshots provided in this document) from the
- the QGIS web site
-
-
-
-
-
-
-
-
Starting QGIS
-
-
-
-
-
-
-
-
- Assuming the QGIS is installed in the PATH, you can start QGIS by typing:
- qgis.
-
- In addition, you can start QGIS by specifying one or more datafiles on the commandline. For example,
- assuming you are in your data directory, you could start QGIS with two shapefiles and a raster file set to
- load on startup:
-
-
-qgis ak_shade.tif alaska.shp majrivers.shp
-
-
-
-
-
Note
-
Your window decorations (title bar, etc.) may appear different depending on your operating system
- and window manager
-
-
-
-
-
-
-
-
The QGIS main window
-
-
-
-
-
-
-
-
- When QGIS starts, an empty window is displayed as shown below.
-
-
-
The QGIS main window is divided into five areas:
-
-
-
The menu bar
-
-
The tool bar
-
-
The map legend
-
-
The map view
-
-
The status bar
-
-
-
These five parts of the main QGIS are described in more detail in the following sections
-
-
The QGIS menu bar
-
The menu bar provides access to various QGIS features using a standard windows
- heirachical menu.
-
The File Menu:
-
-
-
- - Open a previously saved project.
-
-
- - Save the current project.
-
-
- - Save project under a new file name.
-
-
- - Export your current project as a mapserver
- map file. Note that not all mapserver features are available in the exported mapfile.
-
-
- - Exit the QGIS application.
-
-
-
The View Menu:
-
-
-
- - Add one or more layers
- stored in a PostgreSQL/Postgis geodatabase to the map view.
-
-
- - Add one or more layers
- stored on disk as shapefiles to the map view.
-
-
- - Add one or more raster layers
- to the map view.
-
-
-
The Tools Menu:
-
-
-
- - This opens a dialog
- that allows you to manage (load and unload) which plugins are used in QGIS.
-
-
- - This option connects
- over the internet to the QGIS server to find out what the latest available version is. No
- personal data is sent to the QGIS server.
-
-
- - Global configuration options
- for the QGIS application.
-
-
-
The Help Menu:
-
-
-
- - This opens the help documentation
- you are reading right now!.
-
-
- - Clicking this menu option will
- take you to the QGIS internet home page using your preferred browser.
-
-
- - This will take you to the Sourceforge.net
- project page for QGIS.
-
-
- - Click here to find out some useful information
- about the current version of QGIS you are using. If you want to frighten yourself silly, take a
- look at the Contributors tab to see all the hardworking elves behind the QGIS effort.
-
-
-
-
The QGIS toolbars
-
QGIS has toolbars that provide quick access to commonly used functions. These are:
-
-
-
- - Start a new QGIS project. If you
- already have a project ope, you will be asked if you would like to save the existing one first.
-
-
- - Open a previously saved project.
-
-
- - Save the current project.
-
-
- - Save project under a new file name.
-
-
- - Add one or more layers
- stored in a PostgreSQL/Postgis geodatabase to the map view.
-
-
- - Add one or more layers
- stored on disk as shapefiles to the map view.
-
-
- - Add one or more raster layers
- to the map view.
-
-
- - Reload the current map view (refreshes display)
-
-
- - Zoom in the map display by dragging a rectangle
-
-
- - Zoom out of the map display by dragging a rectangle.
- Dragging a small rectangle will zoom out a long way, dragging a large rectangle will zoom out a little way.
-
-
- - Zoom out until all features in all map layers
- are visible.
-
-
- - Zoom to fit all selected features in the
- map view.
-
-
- - Pan in the map display area.
-
-
- - Zoom to last extents.
-
-
- - Show information about a feature (applies only to vector data).
-
-
- - Select features in the map display (applies only to vector data).
-
-
- - Show the attribute table for the selected layer (applies only to vector data).
-
-
-
-
The QGIS map legend
-
The map legend area is used to set the visibility and z-ordering of layers.
- Z-ordering means that layers listed nearer the top of the legend are drawn over
- layers listed lower down in the legend. The checkbox in each legend entry can be useed
- to show/hire that layer.
-
-
The QGIS map view
-
This is the 'business end' of QGIS - maps are displayed in this area! The map
- displayed in this window will depend on the vector and raster layers you have chosen
- to load (see sections that follow for more info on this). The map view can be panned (shifting
- to focus of the map display to another region), zoomed in and out, and supports various other
- actions as described in the toolbar description above.
-
The map view and the legend are tightly bound to each other - the maps in view
- reflect changes you make in the legend area.
-
-
The QGIS map status bar
-
The status bar shows you your current position in map coordinate (e.g. meters or decimal
- degress) as the mouse pointer is moved accross the map view.
-
-
-
-
-
-
-
-
-
Working with vector data
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Loading vector data
-
-
-
-
-
-
-
-
To load one or more shapefiles, click on the Add Layer button
- .
-
The Select one or more layers to add dialog box will be displayed.
-
-
Navigate to the directory where the shapefiles reside. Select one or
- more files and click ok to load them.
-
When QGIS loads a layer, it assigns a random color to it as shown
- below.
-
-
-
-
- Obviously QGIS's choice of colors is not very pleasing in this case.
-
-
-
-
-
-
-
-
Changing Symbology
-
-
-
-
-
-
-
-
- To make the layer more appealing, open the Layer Properties
- dialog by right-clicking on a layer name
- in the table of contents (left side of the QGIS window) and
- selecting Properties.
-
-
If you like, change the display name of the layer by editing
- the Display name field.
-
-
-
-
-
Click on the Legend
- tab to display the current symbols used for the layer
-
-
-
-
Click on the Outline color and Fill color
- and select a new color from the color chooser. You can also change the
- line width if desired.
-
-
-
-
-
After making the changes, click Ok to apply the changes to
- the layer. Note that the alaska layer has been renamed to Alaska and the
- color has been changed to a light green:
-
-
-
-
-
-
-
-
-
-
-
Identifying a Feature
-
-
-
-
-
-
-
-
QGIS provides a useful tool ( - the 'identify' tool) that allows you to click on a vector feature (
- point, line or polygon) and view information about that feautre. The information displayed is
- retrieved from the Postgres database (in the case of Postgis layers) or from the .dbf file
- associated with the shapefile you are insecting.
-
-
-
-
-
-
-
-
-
Working with raster data
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
What is raster data?
-
-
-
-
-
-
-
-
Raster data in GIS are matrices of discrete cells that represent features on, above or below the earth's surface. Each
- cell in the raster grid is the same size, and cells are usually rectangular (in QGIS they will always be rectangular.
- Typical raster datasets include 'remote sensing' data (such as aerial photography and satellite imagery) and modelled data
- (such as an elevation matrix).
-
Raster data typically do not have an associated database record for each cell (unlike in vector data where it is normal
- for each feature to have an associated database record).
-
In GIS, a raster layer would have geopositioning data associated with it which will allow it to be positioned
- correctly in the map display to allow other vector and raster data to be overlayed with it. QGIS, can read this
- geopositioning data to facilitate properly displaying map overlays.
-
-
-
-
-
-
-
Raster formats supported in QGIS.
-
-
-
-
-
-
-
-
QGIS supports a number of different raster formats. Currently tested formats include:
-
-
-
Arc/Info Binary Grid
-
-
Arc/Info ASCII Grid
-
-
Grass Raster
-
-
GeoTIFF
-
-
Spatial Data Transfer Standard Grids (with some limitations)
-
-
USGS ASCII DEM
-
-
Erdas Imagine
-
-
-
Because the raster implmentation in QGIS is based on the GDAL abstraction library, orther raster formats implemented
- in GDAL are also likely to work, but have not yet been tested. See
- the GDAL Raster Formats page for more details.
-
-
-
-
-
-
-
Loading raster data in QGIS
-
-
-
-
-
-
-
-
Raster layers are loaded either by clicking on the icon
- or by selecting the View->Add Raster Layer menu option. More than one layer can be loaded at the same time
- by holding down the Control key and clicking on multiple items in the file dialog.
-
-
-
-
-
-
-
Symbolisation and properties for raster layers
-
-
-
-
-
-
-
-
Symbolisation of raster layers is achieved by right clicking on a raster layer legend entry and choosing 'properties':
- on the popup menu that appears:
-
-
-
-
-
On the properties dialog for rasters you will see there are three tabs:
-
-
The general properties tab
-
-
-
-
-
The legend tab displays basic information aboug the selected raster - including its
- dimensions (in pixels) and its display name in the legend.
-
-
The symbology properties tab
-
-
-
-
-
QGIS supports three forms of raster layer:
-
-
-
Single Band Grayscale Rasters
-
-
Palette Based RGB Rasters
-
-
Multiband RGB Rasters
-
-
-
From these three basic layer types, eight forms of symbolised raster display can be used:
-
-
-
Single Band Grayscale
-
-
Single Band Pseudocolor
-
-
Paletted Grayscale (where only the red, green or blue component of the image is displayed)
-
-
Paletted Pseudocolor (where only the red, green or blue component of the image is displayed, but using a pseudocolor algorithm)
-
-
Paletted RGB
-
-
Multiband Grayscale (using only one of the bands to display the image)
-
-
Mulitiband Pseudocolor (using only one of the bands shown in pseudocolor)
-
-
Multiband RGB (using any combination of three bands)
-
-
-
QGIS has the capability to invert the colours in a given layer so that light
- colors become dark (and dark colors become light). Use the 'Invert Color Map' checkbox
- to enable / disable this behaviour.
-
QGIS has the capability to display each raster layer at varying transparency levels. Use
- the transparency slider to indicate to what extent the underlying layers (if any) should
- be visible though the current raster layer.
-
QGIS has the capability to restrict the data displayed to show only cells whose values are
- within a given number of standard diviations of the mean for the layer. This is useful
- when you have one or two cells with abnormally high values in a raster grid that are having a
- negative impact on the rendering of the raster. This option is only available for pseudocolor
- images.
-
-
The raster statistics properties tab
-
-
-
-
-
This tab displays statistics about each band in the current raster layer. Statistics are
- gathered on a 'need to know' basis, so it may well be that a given layer's statistics have
- not yet been collected.
-
Statistics for a layer are gathered when pseudocolor rendering is selected and the 'apply'
- button is pressed.
-
-
Note
-
Gathering statistics for a layer can be time consuming. Please be patient while
- QGIS examines your data!
-
-
-
-
-
-
-
-
-
-
-
Creating a QGIS mime type
-
-
-
-
-
-
-
-
-
-
-
If you are a KDE user, you can create a mime type that associates GIS files with QGIS. This is useful
- because it allows you to click on a shapefile (for example) in konqueror and the file will be loaded in a
- new instance of QGIS.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Acknowledgments
-
-
-
-
-
-
-
-
-
-
-
Hosting for the QGIS project is generously provided by Sourceforge.
-
-
-
-
-
-
-
-
-
Please see the Help->About->Contributors for a list of people who have donated their time to the QGIS project.
-
-
-
diff --git a/doc/userguide.pdf b/doc/userguide.pdf
index b04f3a253a29..b4ef79468322 100644
Binary files a/doc/userguide.pdf and b/doc/userguide.pdf differ
diff --git a/i18n/qgis_de.ts b/i18n/qgis_de.ts
index bb2101ae686e..8f18c410f956 100644
--- a/i18n/qgis_de.ts
+++ b/i18n/qgis_de.ts
@@ -223,7 +223,7 @@
<p>Select a GPX or LOC file and then select the feature types that you want to load.</p>
</body></html>
- <html><head><meta name="qrichtext" content="1" /></head><body style="font-size:12pt;font-family:Arial">
+ <html><head><meta name="qrichtext" content="1" /></head><body style="font-size:12pt;font-family:Arial">
<p style="margin-top:16px"><span style="font-size:17pt;font-weight:600">Beschreibung</span></p>
<p>GPX ist das <a href="http://www.topografix.com/gpx.asp">GPS eXchange Dateiformt</a>, welches verwendet wird, um Informationen über Wegpunkte, Route und Spuren zu speichern. LOC ist das <a href="http://www.geocaching.com">geocaching.com</a> Wegpunkteformat.</p>
<p>Wähle eine GPX oder LOC Datei und dann die Objekttypen zum laden.</p>
@@ -364,7 +364,7 @@
- Lade GPX oder LOC
+ Lade GPX oder LOC
@@ -383,7 +383,7 @@ and a name for the new layer. All file formats can not store waypoints, routes,
tracks, so some feature types may be disabled for some file formats.</p>
</body></html>
- <html><head><meta name="qrichtext" content="1" /></head><body style="font-size:12pt;font-family:Arial">
+ <html><head><meta name="qrichtext" content="1" /></head><body style="font-size:12pt;font-family:Arial">
<p style="margin-top:16px"><span style="font-size:17pt;font-weight:600">Beschreibung</span></p>
<p>QGIS kann selbst nur GPX und LOC Dateien laden, aber viele andere Formate
können mit GPSBabel (<a href="http://gpsbabel.sf.net">http://gpsbabel.sf.net</a>) in GPX
@@ -557,6 +557,34 @@ nicht installierz ist, wo es QGIS finden kann, funktioniert dieses Werkzeug nich
Automatisch auf runden Zahlen einstellen bei Größenänderung
+
+
+
+
+
+
+
+
+
+
+
+ QFileDialog
@@ -568,6 +596,10 @@ nicht installierz ist, wo es QGIS finden kann, funktioniert dieses Werkzeug nich
DateispeichernDialog
+
+
+
+ QObject
@@ -645,7 +677,7 @@ nicht installierz ist, wo es QGIS finden kann, funktioniert dieses Werkzeug nich
- Sourceforge Projekt Seite: http://sourceforge.net/projects/qgis
+ Sourceforge Projekt Seite: http://sourceforge.net/projects/qgis
@@ -857,7 +889,7 @@ nicht installierz ist, wo es QGIS finden kann, funktioniert dieses Werkzeug nich
- Web Page: http://qgis.org
+ Web Page: http://qgis.org
@@ -879,6 +911,18 @@ nicht installierz ist, wo es QGIS finden kann, funktioniert dieses Werkzeug nich
+
+
+
+
+
+
+ Quantum GIS ist unter der GNU General Public License lizenziert
+
+
+
+ http://www.gnu.org/licenses
+ QgisAppBase
@@ -1442,6 +1486,22 @@ nicht installierz ist, wo es QGIS finden kann, funktioniert dieses Werkzeug nich
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ QgsAbout
@@ -1463,7 +1523,7 @@ nicht installierz ist, wo es QGIS finden kann, funktioniert dieses Werkzeug nich
- Quantum GIS (qgis)
+ Quantum GIS (qgis)
@@ -1471,15 +1531,15 @@ nicht installierz ist, wo es QGIS finden kann, funktioniert dieses Werkzeug nich
- Lizenz
+ Lizenz
- http://www.gnu.org/licenses
+ http://www.gnu.org/licenses
- Quantum GIS ist unter der GNU General Public License lizenziert
+ Quantum GIS ist unter der GNU General Public License lizenziert
@@ -1487,7 +1547,7 @@ nicht installierz ist, wo es QGIS finden kann, funktioniert dieses Werkzeug nich
- Plugins
+ Plugins
@@ -1541,6 +1601,27 @@ nicht installierz ist, wo es QGIS finden kann, funktioniert dieses Werkzeug nich
Peter Brewer
+
+
+
+
+
+
+
+
+
+
+ QGIS Homepage
+
+
+
+
+
+
+
+
+ QgsAttributeTableBase
@@ -2044,6 +2125,10 @@ nicht installierz ist, wo es QGIS finden kann, funktioniert dieses Werkzeug nich
+
+
+
+ QgsDlgVectorLayerPropertiesBase
@@ -2139,10 +2224,6 @@ nicht installierz ist, wo es QGIS finden kann, funktioniert dieses Werkzeug nich
Legendentyp:
-
-
-
- Beschriftungen
@@ -2219,44 +2300,44 @@ FaktorQgsGraSyExtensionWidget
- Untere
+ Untere
- Obere
+ Obere
- Beschriftung
+ Beschriftung
- Rand-
+ Rand-
Farbe
- Rand-
+ Rand-
Stil
- Rand-
+ Rand-
Breite
- Füll-
+ Füll-
Farbe
- Füll
+ Füll
Muster
@@ -2626,6 +2707,228 @@ MusterSchließen
+
+ QgsLUDialogBase
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+ OK
+
+
+
+ Abbrechen
+
+
+
+
+
+
+
+ QgsLabelDialogBase
+
+
+ Formular1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Transparenz:
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Platzierung:
+
+
+
+
+
+QgsLayerPropertiesBase
@@ -3927,6 +4230,10 @@ von Objekten zu beheben, ohne sehr nah heranzuzoomen.
Füllen
+
+
+ Beschriftung
+ QgsSpitBase
@@ -4098,6 +4405,21 @@ von Objekten zu beheben, ohne sehr nah heranzuzoomen.
Neuer Eintrag
+
+ QgsUValMaDialogBase
+
+
+ Formular1
+
+
+
+ Klassifizierungsfeld:
+
+
+
+ Neuer Eintrag
+
+QgsVectorLayer
@@ -4141,15 +4463,15 @@ von Objekten zu beheben, ohne sehr nah heranzuzoomen.
QgsVectorLayerProperties
- Einfaches Symbol
+ Einfaches Symbol
- abgestuftes Symbol
+ abgestuftes Symbol
- Fortlaufende Farbe
+ Fortlaufende Farbe
diff --git a/i18n/qgis_fr.ts b/i18n/qgis_fr.ts
index 4dc39fdec741..d8fa3f0eea1b 100644
--- a/i18n/qgis_fr.ts
+++ b/i18n/qgis_fr.ts
@@ -152,15 +152,6 @@
-
-
-
-
@@ -262,29 +253,10 @@
-
-
-
-
-
-
-
-
@@ -419,6 +391,34 @@ have GPSBabel installed where QGIS can find it, this tool will not work.</p&g
+
+
+
+
+
+
+
+
+
+
+
+ QFileDialog
@@ -430,6 +430,10 @@ have GPSBabel installed where QGIS can find it, this tool will not work.</p&g
+
+
+
+ QObject
@@ -501,10 +505,6 @@ have GPSBabel installed where QGIS can find it, this tool will not work.</p&g
-
-
-
-
@@ -701,10 +701,6 @@ have GPSBabel installed where QGIS can find it, this tool will not work.</p&g
-
-
-
-
@@ -725,6 +721,18 @@ have GPSBabel installed where QGIS can find it, this tool will not work.</p&g
+
+
+
+
+
+
+
+
+
+
+
+ QgisAppBase
@@ -1264,53 +1272,49 @@ have GPSBabel installed where QGIS can find it, this tool will not work.</p&g
-
-
- QgsAbout
-
+
-
+
-
+
-
+
+
+
+ QgsAbout
-
+
-
+
-
+
-
+
-
+
-
-
-
-
@@ -1363,6 +1367,27 @@ have GPSBabel installed where QGIS can find it, this tool will not work.</p&g
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ QgsAttributeTableBase
@@ -1829,6 +1854,10 @@ have GPSBabel installed where QGIS can find it, this tool will not work.</p&g
+
+
+
+ QgsDlgVectorLayerPropertiesBase
@@ -1924,10 +1953,6 @@ have GPSBabel installed where QGIS can find it, this tool will not work.</p&g
-
-
-
-
@@ -2001,43 +2026,6 @@ Factor
QgsGraSyExtensionWidget
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- QgsGrassAttributesBase
@@ -2393,6 +2381,228 @@ Pattern
+
+ QgsLUDialogBase
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ QgsLabelDialogBase
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+QgsLegendItemBase
@@ -3528,6 +3738,10 @@ identifying features without zooming in very close.
+
+
+
+ QgsSpitBase
@@ -3675,6 +3889,21 @@ identifying features without zooming in very close.
+
+ QgsUValMaDialogBase
+
+
+
+
+
+
+
+
+
+
+
+
+QgsVectorLayer
@@ -3716,18 +3945,6 @@ identifying features without zooming in very close.
QgsVectorLayerProperties
-
-
-
-
-
-
-
-
-
-
-
- QgsVectorLayerPropertiesBase
diff --git a/i18n/qgis_it.ts b/i18n/qgis_it.ts
index abceb3a6ca9e..8084beca42f0 100644
--- a/i18n/qgis_it.ts
+++ b/i18n/qgis_it.ts
@@ -162,7 +162,7 @@
<p>Select a GPX or LOC file and then select the feature types that you want to load.</p>
</body></html>
- <html><head><meta name="qrichtext" content="1" /></head><body style="font-size:12pt;font-family:Arial">(new line)
+ <html><head><meta name="qrichtext" content="1" /></head><body style="font-size:12pt;font-family:Arial">(new line)
<p style="margin-top:16px"><span style="font-size:17pt;font-weight:600">Descrizione</span></p>(new line)
<p><a href="http://www.topografix.com/gpx.asp">GPX</a> è un formato di scambio di file GPS utilizzato per archiviare informazioni riguardo a punti di passaggio, percorsi e tracciati. LOC è il formato utilizzato da <a href="http://www.geocaching.com">geocaching.com</a> per archiviare i punti di passaggio.</p>
<p>Selezionare un file GPX o LOC e la tipologia di dato da utilizzare</p>
@@ -283,7 +283,7 @@
- Carica GPX o LOC
+ Carica GPX o LOC
@@ -302,7 +302,7 @@ and a name for the new layer. All file formats can not store waypoints, routes,
tracks, so some feature types may be disabled for some file formats.</p>
</body></html>
- <html><head><meta name="qrichtext" content="1" /></head><body style="font-size:12pt;font-family:Arial">
+ <html><head><meta name="qrichtext" content="1" /></head><body style="font-size:12pt;font-family:Arial">
<p style="margin-top:16px"><span style="font-size:17pt;font-weight:600">Descrizione</span></p>
<p> QGIS è in grado gestire i file GPX e LOC, per altri tipi di formato fa uso di GPSBabel (<a href="http://gpsbabel.sf.net">http://gpsbabel.sf.net</a>) convertendo in GPX. pertanto necessario che GPSBabel sia installato in un percorso accessibile da QGIS.</p><p>Selezionare: il formato GPS, il file che si vuole convertire, la tipologia di dato, il nome del file GPX da salvare e convertire, e il nome del nuovo livello. Non tutti i formati sono in grado di gestire punti di passaggio, percorsi e tratti, pertanto alcune tipologie di dato potrebbero essere disabilitate.</p></body></html>
@@ -450,6 +450,34 @@ have GPSBabel installed where QGIS can find it, this tool will not work.</p&g
+
+
+
+
+
+
+
+
+
+
+
+ QFileDialog
@@ -461,6 +489,10 @@ have GPSBabel installed where QGIS can find it, this tool will not work.</p&g
Finestra di selezione per salvare un file
+
+
+
+ QObject
@@ -534,7 +566,7 @@ have GPSBabel installed where QGIS can find it, this tool will not work.</p&g
- Pagina Sourceforge del progetto: http://sourceforge.net/projects/qgis
+ Pagina Sourceforge del progetto: http://sourceforge.net/projects/qgis
@@ -734,7 +766,7 @@ have GPSBabel installed where QGIS can find it, this tool will not work.</p&g
- Pagina web: http://qgis.org
+ Pagina web: http://qgis.org
@@ -756,6 +788,18 @@ have GPSBabel installed where QGIS can find it, this tool will not work.</p&g
+
+
+
+
+
+
+ Quantum GIS è distribuito con la licenza GNU General Public License
+
+
+
+ http://www.gnu.org/licenses
+ QgisAppBase
@@ -1299,6 +1343,22 @@ http://www.remotesensing.org/gdal/formats_list.html
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ QgsAbout
@@ -1320,7 +1380,7 @@ http://www.remotesensing.org/gdal/formats_list.html
- Quantum GIS (qgis)
+ Quantum GIS (qgis)
@@ -1328,15 +1388,15 @@ http://www.remotesensing.org/gdal/formats_list.html
- Licenza
+ Licenza
- http://www.gnu.org/licenses
+ http://www.gnu.org/licenses
- Quantum GIS è distribuito con la licenza GNU General Public License
+ Quantum GIS è distribuito con la licenza GNU General Public License
@@ -1344,7 +1404,7 @@ http://www.remotesensing.org/gdal/formats_list.html
- Plugins
+ Plugins
@@ -1398,6 +1458,27 @@ http://www.remotesensing.org/gdal/formats_list.html
Peter Brewer
+
+
+
+
+
+
+
+
+
+
+ QGIS Home Page
+
+
+
+
+
+
+
+
+ QgsAttributeTableBase
@@ -1871,6 +1952,10 @@ Questo bottone non sarà abilitato fino a quando non sarà inserito il carattere
+
+
+
+ QgsDlgVectorLayerPropertiesBase
@@ -1966,10 +2051,6 @@ Questo bottone non sarà abilitato fino a quando non sarà inserito il carattere
Tipo legenda
-
-
-
-
@@ -2046,44 +2127,44 @@ scala
QgsGraSyExtensionWidget
- Verso il basso
+ Verso il basso
- In alto
+ In alto
- Etichetta
+ Etichetta
- Colore
+ Colore
linea esterna
- Stile
+ Stile
linea esterna
- Dimensioni
+ Dimensioni
linea esterna
- Riempimento
+ Riempimento
colore
- Riempimento
+ Riempimento
a motivo
@@ -2441,6 +2522,228 @@ a motivo
Chiudi
+
+ QgsLUDialogBase
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+ OK
+
+
+
+
+
+
+
+
+
+
+
+ QgsLabelDialogBase
+
+
+ Form1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Trasparenza:
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Posizione:
+
+
+
+
+
+QgsLegendItemBase
@@ -3598,6 +3901,10 @@ Per fare questo occorre avere i diritti di scrittura nella cartella dove sono ca
Riempimento
+
+
+ Etichetta
+ QgsSpitBase
@@ -3745,6 +4052,21 @@ Per fare questo occorre avere i diritti di scrittura nella cartella dove sono ca
Nuovo elemento
+
+ QgsUValMaDialogBase
+
+
+ Form1
+
+
+
+ Campo classificazione:
+
+
+
+ Nuovo elemento
+
+QgsVectorLayer
@@ -3788,15 +4110,15 @@ Per fare questo occorre avere i diritti di scrittura nella cartella dove sono ca
QgsVectorLayerProperties
- simbolo singolo
+ simbolo singolo
- simbolo graduato
+ simbolo graduato
- colore continuo
+ colore continuo
diff --git a/i18n/qgis_nl.ts b/i18n/qgis_nl.ts
index 4dc39fdec741..d8fa3f0eea1b 100644
--- a/i18n/qgis_nl.ts
+++ b/i18n/qgis_nl.ts
@@ -152,15 +152,6 @@
-
-
-
-
@@ -262,29 +253,10 @@
-
-
-
-
-
-
-
-
@@ -419,6 +391,34 @@ have GPSBabel installed where QGIS can find it, this tool will not work.</p&g
+
+
+
+
+
+
+
+
+
+
+
+ QFileDialog
@@ -430,6 +430,10 @@ have GPSBabel installed where QGIS can find it, this tool will not work.</p&g
+
+
+
+ QObject
@@ -501,10 +505,6 @@ have GPSBabel installed where QGIS can find it, this tool will not work.</p&g
-
-
-
-
@@ -701,10 +701,6 @@ have GPSBabel installed where QGIS can find it, this tool will not work.</p&g
-
-
-
-
@@ -725,6 +721,18 @@ have GPSBabel installed where QGIS can find it, this tool will not work.</p&g
+
+
+
+
+
+
+
+
+
+
+
+ QgisAppBase
@@ -1264,53 +1272,49 @@ have GPSBabel installed where QGIS can find it, this tool will not work.</p&g
-
-
- QgsAbout
-
+
-
+
-
+
-
+
+
+
+ QgsAbout
-
+
-
+
-
+
-
+
-
+
-
-
-
-
@@ -1363,6 +1367,27 @@ have GPSBabel installed where QGIS can find it, this tool will not work.</p&g
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ QgsAttributeTableBase
@@ -1829,6 +1854,10 @@ have GPSBabel installed where QGIS can find it, this tool will not work.</p&g
+
+
+
+ QgsDlgVectorLayerPropertiesBase
@@ -1924,10 +1953,6 @@ have GPSBabel installed where QGIS can find it, this tool will not work.</p&g
-
-
-
-
@@ -2001,43 +2026,6 @@ Factor
QgsGraSyExtensionWidget
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- QgsGrassAttributesBase
@@ -2393,6 +2381,228 @@ Pattern
+
+ QgsLUDialogBase
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ QgsLabelDialogBase
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+QgsLegendItemBase
@@ -3528,6 +3738,10 @@ identifying features without zooming in very close.
+
+
+
+ QgsSpitBase
@@ -3675,6 +3889,21 @@ identifying features without zooming in very close.
+
+ QgsUValMaDialogBase
+
+
+
+
+
+
+
+
+
+
+
+
+QgsVectorLayer
@@ -3716,18 +3945,6 @@ identifying features without zooming in very close.
QgsVectorLayerProperties
-
-
-
-
-
-
-
-
-
-
-
- QgsVectorLayerPropertiesBase
diff --git a/i18n/qgis_pt_BR.ts b/i18n/qgis_pt_BR.ts
index 6e073113a7b4..5edc8ea6db9e 100644
--- a/i18n/qgis_pt_BR.ts
+++ b/i18n/qgis_pt_BR.ts
@@ -209,7 +209,7 @@
<p>Select a GPX or LOC file and then select the feature types that you want to load.</p>
</body></html>
- <html><head><meta name="qrichtext" content="1" /></head><body style="font-size:12pt;font-family:Arial">
+ <html><head><meta name="qrichtext" content="1" /></head><body style="font-size:12pt;font-family:Arial">
<p style="margin-top:16px"><span style="font-size:17pt;font-weight:600">Descrição</span></p>
<p>GPX é o <a href="http://www.topografix.com/gpx.asp">formato para troca de dados de GPS</a>, o qual é utilizado para armazenar informações sobre waypoints, rotas e trilhas. LOC é o formato de waypoints do <a href="http://www.geocaching.com">geocaching.com.</a></p>
<p>Selecione um arquivo GPX ou LOC e depois selecione o tipo de feição que deseja carregar.</p>
@@ -370,7 +370,7 @@
- Carregar GPX ou LOC
+ Carregar GPX ou LOC
@@ -389,7 +389,7 @@ and a name for the new layer. All file formats can not store waypoints, routes,
tracks, so some feature types may be disabled for some file formats.</p>
</body></html>
- <html><head><meta name="qrichtext" content="1" /></head><body style="font-size:12pt;font-family:Arial">
+ <html><head><meta name="qrichtext" content="1" /></head><body style="font-size:12pt;font-family:Arial">
<p style="margin-top:16px"><span style="font-size:17pt;font-weight:600">Descrição</span></p>
<p>QGIS pode carregar arquivos GPX e LOC, mas é possível fazer a conversão de outros
formatos para GPX utilizando o GPSBabel (<a href="http://gpsbabel.sf.net">
@@ -648,6 +648,34 @@ nas propriedades do projeto.</p>
Arredondar números automaticamente ao redimensionar
+
+
+
+
+
+
+
+
+
+
+
+ QFileDialog
@@ -659,6 +687,10 @@ nas propriedades do projeto.</p>
Salvar Arquivo
+
+
+
+ QObject
@@ -748,7 +780,7 @@ nas propriedades do projeto.</p>
- Página do Projeto no Sourceforge: http://sourceforge.net/projects/qgis
+ Página do Projeto no Sourceforge: http://sourceforge.net/projects/qgis
@@ -948,7 +980,7 @@ nas propriedades do projeto.</p>
- Site: http://qgis.org
+ Site: http://qgis.org
@@ -970,6 +1002,18 @@ nas propriedades do projeto.</p>
+
+
+
+
+
+
+ Quantum GIS está sob a licença GNU General Public License
+
+
+
+ http://www.gnu.org/licenses
+ QgisAppBase
@@ -1533,6 +1577,22 @@ nas propriedades do projeto.</p>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ QgsAbout
@@ -1554,7 +1614,7 @@ nas propriedades do projeto.</p>
- Quantum GIS (qgis)
+ Quantum GIS (qgis)
@@ -1562,15 +1622,15 @@ nas propriedades do projeto.</p>
- Licença
+ Licença
- http://www.gnu.org/licenses
+ http://www.gnu.org/licenses
- Quantum GIS está sob a licença GNU General Public License
+ Quantum GIS está sob a licença GNU General Public License
@@ -1626,12 +1686,33 @@ nas propriedades do projeto.</p>
- Plugins
+ PluginsPeter Brewer
+
+
+
+
+
+
+
+
+
+
+ Página do QGIS
+
+
+
+
+
+
+
+
+ QgsAttributeTableBase
@@ -2139,6 +2220,10 @@ nas propriedades do projeto.</p>
+
+
+
+ QgsDlgVectorLayerPropertiesBase
@@ -2234,10 +2319,6 @@ nas propriedades do projeto.</p>
Tipo da legenda:
-
-
-
- Labels
@@ -2314,44 +2395,44 @@ de Escala
QgsGraSyExtensionWidget
- Limite inferior
+ Limite inferior
- Limite superior
+ Limite superior
- Identificação
+ Identificação
- Cor da
+ Cor da
borda
- Estilo da
+ Estilo da
Borda
- Largura da
+ Largura da
Borda
- Preencher
+ Preencher
Cor
- Padrão de
+ Padrão de
preenchimento
@@ -2722,6 +2803,228 @@ Ajuda do QGIS
Fechar
+
+ QgsLUDialogBase
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+ OK
+
+
+
+ Cancelar
+
+
+
+
+
+
+
+ QgsLabelDialogBase
+
+
+ Forma1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Transparência:
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Posicionamento:
+
+
+
+
+
+QgsLayerPropertiesBase
@@ -4026,6 +4329,10 @@ feições sem aumentar o zoom na camada.
Preenchimento
+
+
+ Identificação
+ QgsSpitBase
@@ -4197,6 +4504,21 @@ feições sem aumentar o zoom na camada.
Novo Item
+
+ QgsUValMaDialogBase
+
+
+ Forma1
+
+
+
+
+
+
+
+ Novo Item
+
+QgsVectorLayer
@@ -4240,15 +4562,15 @@ feições sem aumentar o zoom na camada.
QgsVectorLayerProperties
- Único Símbolo
+ Único Símbolo
- símbolo graduado
+ símbolo graduado
- cor contínua
+ cor contínua
diff --git a/i18n/qgis_ru.ts b/i18n/qgis_ru.ts
index 46b9bf01369e..3de3d32111a6 100644
--- a/i18n/qgis_ru.ts
+++ b/i18n/qgis_ru.ts
@@ -152,15 +152,6 @@
-
-
-
-
@@ -262,29 +253,10 @@
-
-
-
-
-
-
-
-
@@ -419,6 +391,34 @@ have GPSBabel installed where QGIS can find it, this tool will not work.</p&g
+
+
+
+
+
+
+
+
+
+
+
+ QFileDialog
@@ -430,6 +430,10 @@ have GPSBabel installed where QGIS can find it, this tool will not work.</p&g
+
+
+
+ QObject
@@ -531,7 +535,7 @@ have GPSBabel installed where QGIS can find it, this tool will not work.</p&g
- Веб Страничка Проекта: http://sourceforge.net/projects/qgis
+ Веб Страничка Проекта: http://sourceforge.net/projects/qgis
@@ -741,10 +745,6 @@ have GPSBabel installed where QGIS can find it, this tool will not work.</p&g
-
-
-
-
@@ -765,6 +765,18 @@ have GPSBabel installed where QGIS can find it, this tool will not work.</p&g
+
+
+
+
+
+
+ Данная программа лицнензирована по Универсальной Общественной Лицензии (GNU GPL)
+
+
+
+ http://www.gnu.org/licenses
+ QgisAppBase
@@ -1336,6 +1348,22 @@ have GPSBabel installed where QGIS can find it, this tool will not work.</p&g
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ QgsAbout
@@ -1357,7 +1385,7 @@ have GPSBabel installed where QGIS can find it, this tool will not work.</p&g
- Quantum GIS (qgis)
+ Quantum GIS (qgis)
@@ -1365,15 +1393,15 @@ have GPSBabel installed where QGIS can find it, this tool will not work.</p&g
- Лицензия
+ Лицензия
- http://www.gnu.org/licenses
+ http://www.gnu.org/licenses
- Данная программа лицнензирована по Универсальной Общественной Лицензии (GNU GPL)
+ Данная программа лицнензирована по Универсальной Общественной Лицензии (GNU GPL)
@@ -1411,7 +1439,7 @@ Apologies to anyone not included. Please let the project admin at qgis.sourcefor
- Компоненты (Плагины)
+ Компоненты (Плагины)
@@ -1465,6 +1493,27 @@ Apologies to anyone not included. Please let the project admin at qgis.sourcefor
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ QgsAttributeTableBase
@@ -1931,6 +1980,10 @@ Apologies to anyone not included. Please let the project admin at qgis.sourcefor
+
+
+
+ QgsDlgVectorLayerPropertiesBase
@@ -2026,10 +2079,6 @@ Apologies to anyone not included. Please let the project admin at qgis.sourcefor
-
-
-
-
@@ -2103,43 +2152,6 @@ Factor
QgsGraSyExtensionWidget
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- QgsGrassAttributesBase
@@ -2495,6 +2507,228 @@ Pattern
+
+ QgsLUDialogBase
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ QgsLabelDialogBase
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+QgsLegendItemBase
@@ -3630,6 +3864,10 @@ identifying features without zooming in very close.
+
+
+
+ QgsSpitBase
@@ -3777,6 +4015,21 @@ identifying features without zooming in very close.
+
+ QgsUValMaDialogBase
+
+
+
+
+
+
+
+
+
+
+
+
+QgsVectorLayer
@@ -3818,18 +4071,6 @@ identifying features without zooming in very close.
QgsVectorLayerProperties
-
-
-
-
-
-
-
-
-
-
-
- QgsVectorLayerPropertiesBase
diff --git a/i18n/qgis_se.ts b/i18n/qgis_se.ts
index 8a7dbad4e222..da1d739bf04d 100644
--- a/i18n/qgis_se.ts
+++ b/i18n/qgis_se.ts
@@ -226,7 +226,7 @@
<p>Select a GPX or LOC file and then select the feature types that you want to load.</p>
</body></html>
- <html><head><meta name="qrichtext" content="1" /></head><body style="font-size:12pt;font-family:Arial">
+ <html><head><meta name="qrichtext" content="1" /></head><body style="font-size:12pt;font-family:Arial">
<p style="margin-top:16px"><span style="font-size:17pt;font-weight:600">Beskrivning</span></p>
<p>GPX står för <a href="http://www.topografix.com/gpx.asp">GPS eXchange file format</a>, och används för att lagra information om waypoints, rutter, och spår. LOC används av <a href="http://www.geocaching.com">geocaching.com</a> för att lagra waypoints.</p>
<p>Välj en GPX- eller LOC-fil och välj sedan detaljtyperna som du vill ladda.</p>
@@ -239,7 +239,7 @@
- Detaljtyper:
+ Objekttyper:
@@ -264,8 +264,8 @@
<html><head><meta name="qrichtext" content="1" /></head><body style="font-size:12pt;font-family:Arial">
<p style="margin-top:16px"><span style="font-size:17pt;font-weight:600">Beskrivning</span></p>
<p>Välj GPS-dumpfilen som du vill konvertera till en shapefile så gör detta plugin jobbet åt dig! </p>
-<p>Använd det minimala tidsgapet för att ange vilket tidsintervall som ska användas för att bestämma när en ny detalj påbörjas. </p>
-<p>Använd det minimala avståndsgapet för att ange vilket avståndsintervall som ska användas för att bestämma när en ny detalj påbörjas. </p>
+<p>Använd det minimala tidsgapet för att ange vilket tidsintervall som ska användas för att bestämma när ett nytt objekt påbörjas. </p>
+<p>Använd det minimala avståndsgapet för att ange vilket avståndsintervall som ska användas för att bestämma när ett nytt objekt påbörjas. </p>
</body></html>
@@ -371,7 +371,7 @@
- Ladda GPX / LOC
+ Ladda GPX / LOC
@@ -390,7 +390,7 @@ and a name for the new layer. All file formats can not store waypoints, routes,
tracks, so some feature types may be disabled for some file formats.</p>
</body></html>
- <html><head><meta name="qrichtext" content="1" /></head><body style="font-size:12pt;font-family:Arial">
+ <html><head><meta name="qrichtext" content="1" /></head><body style="font-size:12pt;font-family:Arial">
<p style="margin-top:16px"><span style="font-size:17pt;font-weight:600">Beskrivning</span></p>
<p>QGIS kan bara ladda GPX- och LOC-filer, men många andra format
kan konverteras till GPX med GPSBabel (<a href="http://gpsbabel.sf.net">
@@ -409,7 +409,7 @@ så några detaljtyper är inaktiverade för en del filformat.</p>
- Detaljtyp:
+ Objekttyp:
@@ -438,7 +438,7 @@ don't have GPSBabel installed where QGIS can find it, this tool will not wo
<html><head><meta name="qrichtext" content="1" /></head><body style="font-size:12pt;font-family:Arial">
<p style="margin-top:16px"><span style="font-size:17pt;font-weight:600">Beskrivning</span></p>
<p>Det här verktyget hjälper dig att hämta data från en GPS-enhet.. Välj ditt protokoll,
-porten som din GPS är kopplad till, detaljtypen du vill ladda ner,
+porten som din GPS är kopplad till, typen av objekt du vill ladda ner,
ett namn för ditt nya lager och namnet på den nya GPX-filen där du vill lagra datan.</p>
<p>Detta verktyg använder GPSBabel (<a href="http://gpsbabel.sf.net">http://gpsbabel.sf.net</a>)
för att överföra data. Om du inte har GPSBabel installerat där QGIS kan hitta det så kommer
@@ -559,6 +559,50 @@ av QGIS beroende på zoomnivån. Storleken mäts i de kartenheter som anges i pr
Runda av till vettig storlek
+
+
+ Ladda GPX-fil
+
+
+
+ <html><head><meta name="qrichtext" content="1" /></head><body style="font-size:12pt;font-family:Arial">
+<p style="margin-top:16px"><span style="font-size:17pt;font-weight:600">Description</span></p>
+<p>GPX står för <a href="http://www.topografix.com/gpx.asp">GPS eXchange file format</a> och används för att lagra information om waypoints, rutter och spår.</p>
+<p>Välj en GPX-fil och typen av objekt som du vill ladda.</p>
+</body></html>
+
+
+
+
+ <html><head><meta name="qrichtext" content="1" /></head><body style="font-size:12pt;font-family:Arial">
+<p style="margin-top:16px"><span style="font-size:17pt;font-weight:600">Description</span></p>
+<p>QGIS kan bara ladda GPX-filer, men många andra filformat kan
+konverteras till GPX med GPSBabel (<a href="http://gpsbabel.sf.net">
+http://gpsbabel.sf.net</a>). Det kräver att du har GPSBabel installerat någonstans
+där QGIS kan hitta det.</p>
+<p>Välj ett filformat för GPS-data som du vill importera från, typen av objekt som
+du vill använda, ett filnamn som du vill spara den konverterade GPX-filen som och
+ett namn för det nya lagret. Alla filformat kan inte lagra waypoints, rutter
+och spår, så en del objekttyper är inte tillgängliga för alla filformat.</p>
+</body></html>
+
+ QFileDialog
@@ -570,6 +614,10 @@ av QGIS beroende på zoomnivån. Storleken mäts i de kartenheter som anges i pr
Spara filer-dialog
+
+
+ Öppna en OGR-Stödd Datakälla
+ QObject
@@ -671,7 +719,7 @@ av QGIS beroende på zoomnivån. Storleken mäts i de kartenheter som anges i pr
- Projektsida på Sourceforge: http://sourceforge.net/projects/qgis
+ Projektsida på Sourceforge: http://sourceforge.net/projects/qgis
@@ -887,27 +935,39 @@ av QGIS beroende på zoomnivån. Storleken mäts i de kartenheter som anges i pr
- Websida: http://qgis.org
+ Websida: http://qgis.org
-
+ Problem med att radera objekt
-
+ Ett problem uppstod under radering av objekt
-
+ Inget Vektorlager Markerat
-
+ Radering av objekt fungerar bara på vektorlager
-
+ För att radera ett objekt så måste du markera ett vektorlager i teckenförklaringen
+
+
+
+ QGIS redo
+
+
+
+ Quantum GIS är licensierad under GNU General Public License
+
+
+
+ http://www.gnu.org/licenses
@@ -1006,11 +1066,11 @@ av QGIS beroende på zoomnivån. Storleken mäts i de kartenheter som anges i pr
- Identifiera en detalj i det aktiva lagret
+ Identifiera ett objekt i det aktiva lagret
- markera detaljed
+ markera objekt
@@ -1078,11 +1138,11 @@ av QGIS beroende på zoomnivån. Storleken mäts i de kartenheter som anges i pr
- Visa markerade detaljer
+ Visa markerade objekt
- Visa markerade detaljer i det aktiva lagret
+ Visa markerade objekt i det aktiva lagret
@@ -1166,15 +1226,15 @@ av QGIS beroende på zoomnivån. Storleken mäts i de kartenheter som anges i pr
- Zooma till utsträckningen av de markerade detaljerna i det aktiva lagret. Vyn kommer att zoomas så att alla markerade detaljer blir synliga. Om det inte finns några markerade detaljer så ändras inte vyn.
+ Zooma till utsträckningen av de markerade objekten i det aktiva lagret. Vyn kommer att zoomas så att alla markerade objekt blir synliga. Om det inte finns några markerade objekt så ändras inte vyn.
- Identifiera en detalj i det aktiva lagret (det aktiva lagret är markerat i teckenförklaringen). Identifiera söker efter detaljer nära där musen klickas och visar information om resultaten. Sökradien kan ställas in i QGIS' inställningsfönster.
+ Identifiera ett objekt i det aktiva lagret (det aktiva lagret är markerat i teckenförklaringen). Identifiera söker efter objekt nära där musen klickas och visar information om resultaten. Sökradien kan ställas in i QGIS' inställningsfönster.
- Välj detaljer i det aktiva lagret genom att dra med musen för att skapa en ruta runt de intressanta detaljerna. När musen släpps så markeras detaljerna och ritas i en annan färg (standard är gul)
+ Välj objekt i det aktiva lagret genom att dra med musen för att skapa en ruta runt de intressanta objekten. När musen släpps så markeras objekten och ritas i en annan färg (standard är gul)
@@ -1194,7 +1254,7 @@ av QGIS beroende på zoomnivån. Storleken mäts i de kartenheter som anges i pr
- Öppna inställningsfönstret för att ange QGIS-inställningar som webläsare och sökradie för identifiering av detaljer.
+ Öppna inställningsfönstret för att ange QGIS-inställningar som webläsare och sökradie för identifiering av objekt.
@@ -1478,15 +1538,31 @@ av QGIS beroende på zoomnivån. Storleken mäts i de kartenheter som anges i pr
-
+ Skapa Linje
-
+ Skapa Polygon
-
+ Kartredigeringsverktyg
+
+
+
+ Visa alla lager
+
+
+
+ Lägg till i översikt
+
+
+
+ Skapa Punkter
+
+
+
+ Pluginverktygsrad
@@ -1509,7 +1585,7 @@ av QGIS beroende på zoomnivån. Storleken mäts i de kartenheter som anges i pr
- Quantum GIS (qgis)
+ Quantum GIS (qgis)
@@ -1517,15 +1593,15 @@ av QGIS beroende på zoomnivån. Storleken mäts i de kartenheter som anges i pr
- Licens
+ Licens
- http://www.gnu.org/licenses
+ http://www.gnu.org/licenses
- Quantum GIS är licensierad med GNU General Public License
+ Quantum GIS är licensierad med GNU General Public License
@@ -1561,7 +1637,7 @@ Vi ber om ursäkt om någon har glömts bort. Var vänlig kontakta projektadmini
- Plugins
+ Plugins
@@ -1615,6 +1691,28 @@ Vi ber om ursäkt om någon har glömts bort. Var vänlig kontakta projektadmini
Peter Brewer
+
+
+ <h2>Quantum GIS (qgis)</h2>
+
+
+
+ <p align="center">Quantum GIS är licensierat under GNU General Public License<p>
+<p align="center">http://www.gnu.org/licenses</p>
+
+
+
+ QGIS Hemsida
+
+
+
+ Prenumerera på maillistan QGIS-User
+
+
+
+ Dataplugin
+ QgsAttributeTableBase
@@ -1864,15 +1962,15 @@ Vi ber om ursäkt om någon har glömts bort. Var vänlig kontakta projektadmini
- Typ
+ Typ
- Namn
+ Namn
-
+ Sql
@@ -2062,7 +2160,7 @@ Vi ber om ursäkt om någon har glömts bort. Var vänlig kontakta projektadmini
QgsDlgPgBufferBase
- Bufferdetaljer
+ Spara objekt i buffer
@@ -2110,7 +2208,7 @@ Vi ber om ursäkt om någon har glömts bort. Var vänlig kontakta projektadmini
- Unikt fält att använda som detalj-ID:
+ Unikt fält att använda som objekt-ID:
@@ -2122,14 +2220,14 @@ Vi ber om ursäkt om någon har glömts bort. Var vänlig kontakta projektadmini
- <h2>Buffra detaljer i lager: </h2>
+ <h2>Buffra objekt i lager: </h2>QgsDlgVectorLayerProperties
- Enstaka Symbol
+ Enkel Symbol
@@ -2141,7 +2239,7 @@ Vi ber om ursäkt om någon har glömts bort. Var vänlig kontakta projektadmini
- Enstaka Markör
+ Enkel Markör
@@ -2149,7 +2247,11 @@ Vi ber om ursäkt om någon har glömts bort. Var vänlig kontakta projektadmini
-
+ Unik Symbol
+
+
+
+ Unik Markör
@@ -2204,7 +2306,7 @@ Vi ber om ursäkt om någon har glömts bort. Var vänlig kontakta projektadmini
- Detaljer
+ Objekt
@@ -2246,17 +2348,13 @@ Vi ber om ursäkt om någon har glömts bort. Var vänlig kontakta projektadmini
Typ av teckenförklaring:
-
-
-
-
- Etiketter
+ Etiketter
-
+ Visa etiketter
@@ -2390,285 +2488,285 @@ Faktor
- Nedre
+ Nedre
- Övre
+ Övre
- Etikett
+ Etikett
- Kantfärg
+ Kantfärg
- Kantstil
+ Kantstil
- Kantbredd
+ Kantbredd
- Fyllningsfärg
+ Fyllningsfärg
- Fyllningsmönster
+ FyllningsmönsterQgsGrassAttributesBase
-
+ GRASS-Attribut
-
+ Tab 1
-
+ resultat
-
+ Uppdatera
-
+ Uppdatera databas
- Ny
+ Ny
-
+ Lägg till ny kategory med inställningarna i GRASS
- Radera
+ Radera
-
+ Lägg till ny kategory med inställningarna i GRASS-RedigeringQgsGrassEditBase
-
+ GRASS-Redigering
-
+ Kategori
-
+ Läge
-
+ Fält (lager)
- Inställningar
+ Inställningar
-
+ Snappning i skärmpixlar
- Symbologi
+ Symbologi
-
+ Kolumn 1
- Ny Post
+ Ny Post
-
+ Tabell
-
+ Lägg Till Kolumn
-
+ Skapa / Ändra Tabell
-
+ Verktyg
-
+ Verktygsrad
-
+ Ny rad
- F2
+ F2
- Stäng
+ Stäng
-
+ Ny punkt
- F1
+ F1
-
+ Ny gräns
- F3
+ F3
-
+ Ny centroid
- F4
+ F4
-
+ Flytta nod
- F5
+ F5
-
+ Lägg till nod
- F6
+ F6
-
+ Radera nod
- F7
+ F7
-
+ Dela linje
- F10
+ F10
-
+ Flytta linje
- F9
+ F9
-
+ Radera linje
- F11
+ F11
-
+ Redigera kategorier
-
+ Redigera attributQgsGrassRegionBase
-
+ GRASS Regioninställningar
-
+
-
+
-
+
- S
+ S
-
+
-
+ Rader
-
+ Kolumner
-
+
- Färg
+ Färg
- Bredd
+ Bredd
- OK
+ OK
- Avbryt
+ Avbryt
@@ -2781,7 +2879,7 @@ Pattern
- Detalj
+ Objekt
@@ -2792,6 +2890,228 @@ Pattern
Stäng
+
+ QgsLUDialogBase
+
+
+ Ange begränsningar
+
+
+
+ Lägsta värde
+
+
+
+ -
+
+
+
+ OK
+
+
+
+ Avbryt
+
+
+
+ Högsta värde
+
+
+
+ QgsLabelDialogBase
+
+
+ Formulär1
+
+
+
+ Källa:
+
+
+
+ Fält med etikett:
+
+
+
+ Standardetikett:
+
+
+
+ Förhandsvisning:
+
+
+
+ QGIS Rocks!
+
+
+
+ Standardstil
+
+
+
+ Typsnittsstil
+
+
+
+ Typsnitt
+
+
+
+ Typsnittsenheter är i ...
+
+
+
+ Punkter
+
+
+
+ Kartenheter
+
+
+
+ %
+
+
+
+ Genomskinlighet:
+
+
+
+ Färg
+
+
+
+ Position
+
+
+
+ X-Position (pktr):
+
+
+
+ Y-Position (pktr):
+
+
+
+ Positionsenheter är i ...
+
+
+
+ Bufferinställningar
+
+
+
+ Använd Buffer?
+
+
+
+ Storlek:
+
+
+
+ Bufferstorlek är i ...
+
+
+
+ Storlek är i kartenheter
+
+
+
+ Storlek är i punkter
+
+
+
+ Justering
+
+
+
+ Ovanför
+
+
+
+ Över
+
+
+
+ Vänster
+
+
+
+ Nedanför
+
+
+
+ Höger
+
+
+
+ Ovanför Höger
+
+
+
+ Nedanför Höger
+
+
+
+ Ovanför Vänster
+
+
+
+ Nedanför Vänster
+
+
+
+ Vinkel (grader):
+
+
+
+ °
+
+
+
+ Använd heuristik när etiketter överlappar
+
+
+
+ Datadefinierad stil
+
+
+
+ &Typsnitt:
+
+
+
+ &Kursiv:
+
+
+
+ &Understruken:
+
+
+
+ &Fet:
+
+
+
+ &Storlek:
+
+
+
+ X-Koordinat:
+
+
+
+ Y-Koordinat:
+
+
+
+ Placering:
+
+
+
+ &Färg:
+
+QgsLayerPropertiesBase
@@ -2913,11 +3233,11 @@ Pattern
- För att välja detaljer måste du välja ett aktivt lager genom att klicka på dess namn i teckenförklaringen
+ För att välja objekt måste du välja ett aktivt lager genom att klicka på dess namn i teckenförklaringen
- För att identifiera detaljer måste du välja ett aktivt lager genom att klicka på dess namn i teckenförklaringen
+ För att identifiera objekt måste du välja ett aktivt lager genom att klicka på dess namn i teckenförklaringen
@@ -3250,7 +3570,7 @@ Pattern
- Sökradie för identifiering av detaljer
+ Sökradie för identifiering av objekt
@@ -3322,15 +3642,15 @@ med att identifiera detaljer utan att zooma in väldigt nära.
- Kartbilden kommer att uppdateras efter att såhär många detaljer har lästs från datakällan
+ Kartbilden kommer att uppdateras efter att såhär många objekt har lästs från datakällan
- detaljer
+ objekt
- (Sätt till 0 för att inte uppdatera förrän alla detaljer har lästs)
+ (Sätt till 0 för att inte uppdatera förrän alla objekt har lästs)
@@ -3353,24 +3673,24 @@ identifying features without zooming in very close.
<i>(Kartvyns bredd) * ( Värde/1000.0)</i>
<br>
QGIS använder värdet 5 som standard. Öka värdet om du har problem
-med att identifiera detaljer utan att zooma in väldigt nära.
+med att identifiera objekt utan att zooma in väldigt nära.
</html>
-
+ SVG-Inställningar
-
+ Översamplingsfaktor
-
+ <b>OBS: </b>Ett högt värde ger mjukare SVG-symboler, men kan göra QGIS långsammare
- ...
+ ...
@@ -3460,7 +3780,7 @@ med att identifiera detaljer utan att zooma in väldigt nära.
QgsPgGeoprocessing
- Buffra detaljer i lager %1
+ Buffra objekt i lager %1
@@ -4204,6 +4524,10 @@ med att identifiera detaljer utan att zooma in väldigt nära.
Fyllning
+
+
+ Etikett
+ QgsSpitBase
@@ -4253,11 +4577,11 @@ med att identifiera detaljer utan att zooma in väldigt nära.
- Detaljklass
+ Objektklass
- Detaljer
+ Objekt
@@ -4364,15 +4688,30 @@ med att identifiera detaljer utan att zooma in väldigt nära.
QgsUValDialogBase
- Formulär1
+ Formulär1
+
+
+
+ Klassifikationsfält:
+
+
+
+ Ny Post
+
+
+
+ QgsUValMaDialogBase
+
+
+ Formulär1
- Klassifikationsfält:
+ Klassifikationsfält:
- Ny Post
+ Ny Post
@@ -4422,15 +4761,15 @@ med att identifiera detaljer utan att zooma in väldigt nära.
QgsVectorLayerProperties
- Enstaka symbol
+ Enstaka symbol
- graderad symbol
+ graderad symbol
- kontinuerlig färg
+ kontinuerlig färg
diff --git a/i18n/qgis_zh_CN.ts b/i18n/qgis_zh_CN.ts
index 2cf0c697beb2..5f8f254de177 100644
--- a/i18n/qgis_zh_CN.ts
+++ b/i18n/qgis_zh_CN.ts
@@ -129,19 +129,6 @@
-
-
-
-
-
-
-
-
@@ -389,21 +376,6 @@ have GPSBabel installed where QGIS can find it, this tool will not work.</p&g
-
-
-
-
+
+ Load GPX file
+
+
+
+ <html><head><meta name="qrichtext" content="1" /></head><body style="font-size:12pt;font-family:Arial">
+<p style="margin-top:16px"><span style="font-size:17pt;font-weight:600">Description</span></p>
+<p>GPX is the <a href="http://www.topografix.com/gpx.asp">GPS eXchange file format</a>, which is used to store information about waypoints, routes, and tracks.</p>
+<p>Select a GPX file and then select the feature types that you want to load.</p>
+</body></html>
+
+
+
+
+ <html><head><meta name="qrichtext" content="1" /></head><body style="font-size:12pt;font-family:Arial">
+<p style="margin-top:16px"><span style="font-size:17pt;font-weight:600">Description</span></p>
+<p>QGIS can only load GPX files by itself, but many other formats
+can be converted to GPX using GPSBabel (<a href="http://gpsbabel.sf.net">
+http://gpsbabel.sf.net</a>). This requires that you have GPSBabel installed where
+QGIS can find it.</p>
+<p>Select a GPS file format and the file that you want to import, the feature type
+that you want to use, a GPX filename that you want to save the converted file as,
+and a name for the new layer. All file formats can not store waypoints, routes, and
+tracks, so some feature types may be disabled for some file formats.</p>
+</body></html>
+
+
+ QFileDialog
@@ -430,6 +430,10 @@ don't have GPSBabel installed where QGIS can find it, this tool will not wo
Save file dialog
+
+ Open an OGR Supported Data Source
+
+ QObject
@@ -513,14 +517,6 @@ don't have GPSBabel installed where QGIS can find it, this tool will not wo
(no PostgreSQL support)
-
- Web Page: http://qgis.org
-
-
-
- Sourceforge Project Page: http://sourceforge.net/projects/qgis
-
- Version
@@ -725,6 +721,18 @@ don't have GPSBabel installed where QGIS can find it, this tool will not wo
To delete features, you must select a vector layer in the legend
+
+ QGIS ready
+
+
+
+ Quantum GIS is licensed under the GNU General Public License
+
+
+
+ http://www.gnu.org/licenses
+
+ QgisAppBase
@@ -1264,43 +1272,43 @@ don't have GPSBabel installed where QGIS can find it, this tool will not wo
Map Edit Tools
-
-
- QgsAbout
- About Quantum GIS
+ Show all layers
- Ok
+ Add to overview
- About
+ Capture points
- Version
+ Plugins Toolbar
+
+
+ QgsAbout
- Quantum GIS (qgis)
+ About Quantum GIS
- What's New
+ Ok
- License
+ About
- http://www.gnu.org/licenses
+ Version
- Quantum GIS is licensed under the GNU General Public License
+ What's New
@@ -1361,7 +1369,28 @@ don't have GPSBabel installed where QGIS can find it, this tool will not wo
Plugins
- 插件
+ 插件
+
+
+ <h2>Quantum GIS (qgis)</h2>
+
+
+
+ <p align="center">Quantum GIS is licensed under the GNU General Public License<p>
+<p align="center">http://www.gnu.org/licenses</p>
+
+
+
+ QGIS Home Page
+ QGIS主页
+
+
+ Subscribe to the QGIS-User mailing list
+
+
+
+ Providers
+
@@ -1829,6 +1858,10 @@ don't have GPSBabel installed where QGIS can find it, this tool will not wo
Unique Value
+
+ Unique Value Marker
+
+ QgsDlgVectorLayerPropertiesBase
@@ -1924,10 +1957,6 @@ don't have GPSBabel installed where QGIS can find it, this tool will not wo
Lower left
-
- Display/label field
-
- Labels
@@ -2001,43 +2030,6 @@ Factor
QgsGraSyExtensionWidget
-
- Lower
-
-
-
- Upper
-
-
-
- Label
-
-
-
- Outline
-Color
-
-
-
- Outline
-Style
-
-
-
- Outline
-Width
-
-
-
- Fill
-Color
-
-
-
- Fill
-Pattern
-
- QgsGrassAttributesBase
@@ -2393,6 +2385,228 @@ Pattern
+
+ QgsLUDialogBase
+
+ Enter class bounds
+
+
+
+ Lower value
+
+
+
+ -
+
+
+
+ OK
+
+
+
+ Cancel
+
+
+
+ Upper value
+
+
+
+
+ QgsLabelDialogBase
+
+ Form1
+
+
+
+ Source:
+
+
+
+ Field containing label:
+
+
+
+ Default label:
+
+
+
+ Preview:
+
+
+
+ QGIS Rocks!
+
+
+
+ Default Style
+
+
+
+ Font Style
+
+
+
+ Font
+
+
+
+ Font size units are in ...
+
+
+
+ Points
+
+
+
+ Map units
+
+
+
+ %
+
+
+
+ Transparency:
+
+
+
+ Colour
+
+
+
+ Position
+
+
+
+ X Offset (pts):
+
+
+
+ Y Offset (pts):
+
+
+
+ Offset units are in ...
+
+
+
+ Buffer Settings
+
+
+
+ Buffer Labels?
+
+
+
+ Size:
+
+
+
+ Buffer size is in ...
+
+
+
+ Size is in map units
+
+
+
+ Size is in points
+
+
+
+ Alignment
+
+
+
+ Above
+
+
+
+ Over
+
+
+
+ Left
+
+
+
+ Below
+
+
+
+ Right
+
+
+
+ Above Right
+
+
+
+ Below Right
+
+
+
+ Above Left
+
+
+
+ Below Left
+
+
+
+ Angle (deg):
+
+
+
+ °
+
+
+
+ Use best judgement when labels collide
+
+
+
+ Data Defined Style
+
+
+
+ &Font family:
+
+
+
+ &Italic:
+
+
+
+ &Underline:
+
+
+
+ &Bold:
+
+
+
+ &Size:
+
+
+
+ X Coordinate:
+
+
+
+ Y Coordinate:
+
+
+
+ Placement:
+
+
+
+ &Colour:
+
+
+QgsLegendItemBase
@@ -3528,6 +3742,10 @@ identifying features without zooming in very close.
Pattern
+
+ Label
+
+ QgsSpitBase
@@ -3675,6 +3893,21 @@ identifying features without zooming in very close.
+
+ QgsUValMaDialogBase
+
+ Form1
+
+
+
+ Classification Field:
+
+
+
+ New Item
+
+
+QgsVectorLayer
@@ -3716,18 +3949,6 @@ identifying features without zooming in very close.
QgsVectorLayerProperties
-
- single symbol
-
-
-
- graduated symbol
-
-
-
- continuous color
-
- QgsVectorLayerPropertiesBase
diff --git a/plugins/copyright_label/plugin.cpp b/plugins/copyright_label/plugin.cpp
index a36bda118410..28fcd194df56 100644
--- a/plugins/copyright_label/plugin.cpp
+++ b/plugins/copyright_label/plugin.cpp
@@ -24,7 +24,6 @@ email : tim@linfiniti.com
#include
#include
-#include
#include "plugin.h"
diff --git a/plugins/copyright_label/plugin.h b/plugins/copyright_label/plugin.h
index c071b9f7878d..3d399a5da992 100644
--- a/plugins/copyright_label/plugin.h
+++ b/plugins/copyright_label/plugin.h
@@ -83,8 +83,6 @@ class Plugin:public QObject, public QgisPlugin
int pluginType;
//! Id of the plugin's menu. Used for unloading
int menuIdInt;
- //! Pointer to our toolbar
- QToolBar *toolBarPointer;
//! Pointer to our menu
QMenuBar *menuBarPointer;
//! Pionter to QGIS main application object
diff --git a/plugins/delimited_text/qgsdelimitedtextplugin.h b/plugins/delimited_text/qgsdelimitedtextplugin.h
index a52ea0a7d948..6a7c9b7be1d1 100644
--- a/plugins/delimited_text/qgsdelimitedtextplugin.h
+++ b/plugins/delimited_text/qgsdelimitedtextplugin.h
@@ -82,8 +82,6 @@ class QgsDelimitedTextPlugin:public QObject, public QgisPlugin
int pluginType;
//! Id of the plugin's menu. Used for unloading
int menuIdInt;
- //! Pointer to our toolbar
- QToolBar *toolBarPointer;
//! Pointer to our menu
QMenuBar *menuBarPointer;
//! Pionter to QGIS main application object
diff --git a/plugins/geoprocessing/qgspggeoprocessing.h b/plugins/geoprocessing/qgspggeoprocessing.h
index 3d859de8e00b..95204b5c6e00 100644
--- a/plugins/geoprocessing/qgspggeoprocessing.h
+++ b/plugins/geoprocessing/qgspggeoprocessing.h
@@ -81,8 +81,6 @@ class QgsPgGeoprocessing:public QObject, public QgisPlugin
//! Id of the plugin's menu. Used for unloading
int menuId;
- //! Pointer to our toolbar
- QToolBar *toolBar;
//! Pointer to our menu
QMenuBar *menu;
//! Pionter to QGIS main application object
diff --git a/plugins/gps_importer/plugin.cpp b/plugins/gps_importer/plugin.cpp
index d39bf4f3e4fc..54261e28f36e 100644
--- a/plugins/gps_importer/plugin.cpp
+++ b/plugins/gps_importer/plugin.cpp
@@ -25,7 +25,6 @@ email : tim@linfiniti.com
#include "../../src/qgsmaplayerregistry.h"
#include "../../src/qgsmaplayer.h"
#include "../../src/qgsvectorlayer.h"
-#include "../../src/qgsrasterlayer.h"
#include "../../src/qgsdataprovider.h"
#include "plugin.h"
diff --git a/plugins/gps_importer/plugin.h b/plugins/gps_importer/plugin.h
index 17adf4f0f782..7c7e76b6d017 100644
--- a/plugins/gps_importer/plugin.h
+++ b/plugins/gps_importer/plugin.h
@@ -104,8 +104,6 @@ class Plugin:public QObject, public QgisPlugin
int pluginType;
//! Id of the plugin's menu. Used for unloading
int menuIdInt;
- //! Pointer to our toolbar
- QToolBar *toolBarPointer;
//! Pointer to our menu
QMenuBar *menuBarPointer;
//! Pionter to QGIS main application object
diff --git a/plugins/grass/Makefile.am b/plugins/grass/Makefile.am
index 2669ad9104c3..b911294fd6b3 100644
--- a/plugins/grass/Makefile.am
+++ b/plugins/grass/Makefile.am
@@ -48,8 +48,7 @@ plugin_UIC = qgsgrassselectbase.ui \
qgsgrasseditbase.ui.h \
qgsgrassattributesbase.ui \
qgsgrassattributesbase.ui.h \
- qgsgrassaregionbase.ui \
- qgsgrassaregionbase.ui.h
+ qgsgrassregionbase.ui
grassplugin_la_SOURCES = qgsgrassplugin.cpp \
qgsgrassplugin.h \
diff --git a/plugins/grid_maker/plugin.cpp b/plugins/grid_maker/plugin.cpp
index db33d090ed44..08214a1f734e 100644
--- a/plugins/grid_maker/plugin.cpp
+++ b/plugins/grid_maker/plugin.cpp
@@ -24,7 +24,6 @@ email : tim@linfiniti.com
#include "../../src/qgisapp.h"
#include "../../src/qgsmaplayer.h"
-#include "../../src/qgsrasterlayer.h"
#include "plugin.h"
diff --git a/plugins/grid_maker/plugin.h b/plugins/grid_maker/plugin.h
index b91dd1adb63f..84788423bef6 100644
--- a/plugins/grid_maker/plugin.h
+++ b/plugins/grid_maker/plugin.h
@@ -83,8 +83,6 @@ class Plugin:public QObject, public QgisPlugin
int pluginType;
//! Id of the plugin's menu. Used for unloading
int menuIdInt;
- //! Pointer to our toolbar
- QToolBar *toolBarPointer;
//! Pointer to our menu
QMenuBar *menuBarPointer;
//! Pionter to QGIS main application object
diff --git a/plugins/north_arrow/plugin.cpp b/plugins/north_arrow/plugin.cpp
index 84748d8506a6..2946a6e54830 100644
--- a/plugins/north_arrow/plugin.cpp
+++ b/plugins/north_arrow/plugin.cpp
@@ -24,7 +24,6 @@ email : tim@linfiniti.com
#include
#include
-#include
#include "plugin.h"
diff --git a/plugins/scale_bar/plugin.cpp b/plugins/scale_bar/plugin.cpp
index be46cf29d0cc..25057ab36465 100644
--- a/plugins/scale_bar/plugin.cpp
+++ b/plugins/scale_bar/plugin.cpp
@@ -29,7 +29,6 @@ email : sbr00pwb@users.sourceforge.net
#include
#include
-#include
#include "plugin.h"
diff --git a/src/qgisapp.cpp b/src/qgisapp.cpp
index 40c0fb2ba62f..e738ccc072f8 100644
--- a/src/qgisapp.cpp
+++ b/src/qgisapp.cpp
@@ -266,7 +266,7 @@ QgisApp::QgisApp(QWidget * parent, const char *name, WFlags fl):QgisAppBase(pare
// Splash screen global is declared in qgisapp.h header
//
QSettings settings;
- bool myHideSplashFlag = false;
+ myHideSplashFlag = false;
myHideSplashFlag = settings.readBoolEntry("/qgis/hideSplash");
if (!myHideSplashFlag)
@@ -274,6 +274,10 @@ QgisApp::QgisApp(QWidget * parent, const char *name, WFlags fl):QgisAppBase(pare
gSplashScreen = new SplashScreen(); //this is supposed to be instantiated in main.cpp but we get segfaults...
gSplashScreen->setStatus(tr("Loading QGIS..."));
qApp->processEvents();
+ // Set up the timer so the splash screen stays up for
+ // another 5 seconds, then kill it.
+ QTimer::singleShot( 5000, this, SLOT(killSplashScreen()) );
+ // gSplashScreen->setStatus(tr("QGIS ready"));
}
// register all GDAL and OGR plug-ins
@@ -453,6 +457,10 @@ QgisApp::QgisApp(QWidget * parent, const char *name, WFlags fl):QgisAppBase(pare
connect(mapLayerRegistry, SIGNAL(layerWillBeRemoved(QString)), mOverviewCanvas, SLOT(remove(QString)));
+ if (! myHideSplashFlag)
+ {
+ gSplashScreen->setStatus(tr("Setting theme..."));
+ }
// get the users theme preference from the settings
QString themeName = settings.readEntry("/qgis/theme","default");
@@ -460,16 +468,13 @@ QgisApp::QgisApp(QWidget * parent, const char *name, WFlags fl):QgisAppBase(pare
setTheme(themeName);
setupToolbarPopups(themeName);
+ if (! myHideSplashFlag)
+ {
+ gSplashScreen->setStatus(tr("QGIS Ready"));
+ }
// set the focus to the map canvase
mMapCanvas->setFocus();
- if (!myHideSplashFlag)
- {
- // Set up the timer so the splash screen stays up for
- // another 5 seconds, then kill it.
- QTimer::singleShot( 5000, this, SLOT(killSplashScreen()) );
- gSplashScreen->setStatus(tr("QGIS ready"));
- }
} // QgisApp ctor
@@ -493,27 +498,28 @@ void QgisApp::about()
#endif
#ifdef WIN32
// special version stuff for windows (if required)
- versionString += "\nThis is a Windows preview release - not for production use";
+// versionString += "\nThis is a Windows preview release - not for production use";
#endif
abt->setVersion(versionString);
- QString urls = tr("Web Page: http://qgis.org") +
- "\n" + tr("Sourceforge Project Page: http://sourceforge.net/projects/qgis");
+ QString urls = "
" +
+ tr("Quantum GIS is licensed under the GNU General Public License") +
+ "