CoordinateCapture
Coordinate Capture
Click on the map to view coordinates and capture to clipboard.
&Coordinate Capture
Click to select the CRS to use for coordinate display
Coordinate in your selected CRS
Coordinate in map canvas coordinate reference system
Copy to clipboard
Click to enable mouse tracking. Click the canvas to stop
Start capture
Click to enable coordinate capture
CoordinateCaptureGui
Coordinate Capture Plugin
CoordinateCaptureGuiBase
QGIS Plugin Template
Plugin Template
Dialog
fTools About
fTools
Version x.x-xxxxxx
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;">
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html>
Help
Web
Close
Extract Nodes
Input line or polygon vector layer
Tolerance
Unique ID field
Output point shapefile
Browse
Geoprocessing
Input vector layer
Intersect layer
Buffer distance
Buffer distance field
Dissolve field
Dissolve buffer results
Output shapefile
Locate Line Intersections
Input line layer
Input unique ID field
Intersect line layer
Intersect unique ID field
Output Shapefile
Join Attributes
Target vector layer
Target join field
Join data
Join vector layer
Join dbf table
Join field
Output table
Only keep matching records
Keep all records (includeing non-matching target records)
Generate Centroids
Weight field
Number of standard deviations
Std. Dev.
Create Distance Matrix
Input point layer
Target point layer
Target unique ID field
Output matrix type
Linear (N*k x 3) distance matrix
Standard (N x T) distance matrix
Summary distance matrix (mean, std. dev., min, max)
Use only the nearest (k) target points:
Output distance matrix
Count Points In Polygons
Input polygon vector layer
Input point vector layer
Output count field name
PNTCNT
Generate Random Points
Input Boundary Layer
Minimum distance between points
Sample Size
Unstratified Sampling Design (Entire layer)
Use this number of points
Stratified Sampling Design (Individual polygons)
Use this density of points
Use value from input field
Random Selection Tool
Input Vector Layer
Randomly Select
Number of Features
Percentage of Features
%
Projection Management Tool
Input spatial reference system
Output spatial reference system
Use predefined spatial reference system
Choose
Import spatial reference system from existing layer
Import spatial reference system:
Generate Regular Points
Input Coordinates
X Min
Y Min
X Max
Y Max
Grid Spacing
Use this point spacing
Apply random offset to point spacing
Initial inset from corner (LH side)
Spatial Join
Attribute Summary
Take attributes of first located feature
Take summary of intersecting features
Mean
Min
Max
Sum
Output Shapefile:
Random Selection From Within Subsets
Input subset field (unique ID field)
Sum Line Length In Polygons
Output summed length field name
LENGTH
Input line vector layer
Grid extent
Update extents from layer
Update extents from canvas
Parameters
X
Lock 1:1 ratio
Y
Output grid as polygons
Output grid as lines
Vector Split
Output folder
List Unique Values
Target field
Unique values list
Unique value count
Connect
OGR Converter
Could not establish connection to: '%1'
Open OGR file
OGR File Data Source (*.*)
Open Directory
Input OGR dataset is missing!
Input OGR layer name is missing!
Target OGR format not selected!
Output OGR dataset is missing!
Output OGR layer name is missing!
Successfully translated layer '%1'
Failed to translate layer '%1'
Successfully connected to: '%1'
Choose a file name to save to
Use only selected features
creating new selection
adding to current selection
removing from current selection
Select by location
Select features in:
that intersect features in:
Modify current selection by:
Please specify input layer
Please specify select layer
Distance matrix
Created output matrix:
Points in polygon
Created output Shapefile:
Vector layer is not valid
Sum line lengths
GeometryDialog
Merge all
Please specify input vector layer
Please specify output shapefile
Please specify valid tolerance value
Please specify valid UID field
Singleparts to multipart
Output shapefile
Multipart to singleparts
Extract nodes
Polygons to lines
Input polygon vector layer
Export/Add geometry columns
Input vector layer
Simplify geometries
Polygon centroids
Output point shapefile
Delaunay triangulation
Input point vector layer
Polygon from layer extent
Input layer
Output polygon shapefile
Unable to delete existing shapefile.
Error processing specified tolerance!
Please choose larger tolerance...
Unable to delete incomplete shapefile.
Created output shapefile:
Would you like to add the new layer to the TOC?
Error writing output shapefile.
GeoprocessingDialog
Dissolve all
Please specify an input layer
Please specify a difference/intersect/union layer
Please specify valid buffer value
Please specify dissolve field
Please specify output shapefile
No features selected, please uncheck 'Use selected' or make a selection
Buffer(s)
Create single minimum convex hull
Create convex hulls based on input field
Convex hull(s)
Dissolve
Difference layer
Difference
Intersect layer
Intersect
Symetrical difference
Clip layer
Clip
Union layer
Union
Unable to delete existing shapefile.
Warnings:
Some output geometries may be missing or invalid.
Would you like to add the new layer anyway?
Would you like to add the new layer to the TOC?
Input CRS error: Different input coordinate reference systems detected, results may not be as expected.
Feature geometry error: One or more output features ignored due to invalid geometry.
GEOS geoprocessing error: One or more input features have invalid geometry.
Created output shapefile:
Gui
Welcome to your automatically generated plugin!
This is just a starting point. You now need to modify the code to make it do something useful....read on for a more information to get yourself started.
Documentation:
You really need to read the QGIS API Documentation now at:
In particular look at the following classes:
QgsPlugin is an ABC that defines required behaviour your plugin must provide. See below for more details.
What are all the files in my generated plugin directory for?
This is the generated CMake file that builds the plugin. You should add you application specific dependencies and source files to this file.
This is the class that provides the 'glue' between your custom application logic and the QGIS application. You will see that a number of methods are already implemented for you - including some examples of how to add a raster or vector layer to the main application map canvas. This class is a concrete instance of the QgisPlugin interface which defines required behaviour for a plugin. In particular, a plugin has a number of static methods and members so that the QgsPluginManager and plugin loader logic can identify each plugin, create an appropriate menu entry for it etc. Note there is nothing stopping you creating multiple toolbar icons and menu entries for a single plugin. By default though a single menu entry and toolbar button is created and its pre-configured to call the run() method in this class when selected. This default implementation provided for you by the plugin builder is well documented, so please refer to the code for further advice.
This is a Qt designer 'ui' file. It defines the look of the default plugin dialog without implementing any application logic. You can modify this form to suite your needs or completely remove it if your plugin does not need to display a user form (e.g. for custom MapTools).
This is the concrete class where application logic for the above mentioned dialog should go. The world is your oyster here really....
This is the Qt4 resources file for your plugin. The Makefile generated for your plugin is all set up to compile the resource file so all you need to do is add your additional icons etc using the simple xml file format. Note the namespace used for all your resources e.g. (':/Homann/'). It is important to use this prefix for all your resources. We suggest you include any other images and run time data in this resurce file too.
This is the icon that will be used for your plugin menu entry and toolbar icon. Simply replace this icon with your own icon to make your plugin disctinctive from the rest.
This file contains the documentation you are reading now!
Getting developer help:
For Questions and Comments regarding the plugin builder template and creating your features in QGIS using the plugin interface please contact us via:
<li> the QGIS developers mailing list, or </li><li> IRC (#qgis on freenode.net)</li>
QGIS is distributed under the Gnu Public License. If you create a useful plugin please consider contributing it back to the community.
Have fun and thank you for choosing QGIS.
MapCoordsDialogBase
Enter map coordinates
Enter X and Y coordinates which correspond with the selected point on the image. Alternatively, click the button with icon of a pencil and then click a corresponding point on map canvas of QGIS to fill in coordinates of that point.
X:
Y:
from map canvas
&Cancel
&OK
OgrConverterGuiBase
OGR Layer Converter
Source
Format
File
Directory
Remote source
Dataset
Browse
Layer
Target
OgrPlugin
Run OGR Layer Converter
Translates vector layers between formats supported by OGR library
OG&R Converter
OracleConnectGuiBase
Create Oracle Connection
OK
Cancel
Connection Information
Name
Database instance
Username
Password
Name of the new connection
Save Password
OsmAddRelationDlg
Create OSM relation
Relation type:
...
Properties
Members
Create
Cancel
OSM Information
OsmDownloadDlg
OSM Download
Unable to save the file %1: %2.
Waiting for OpenStreetMap server ...
Download process failed. OpenStreetMap server response: %1 - %2
OSM Download Error
Download failed: %1.
Getting data
The OpenStreetMap server you are downloading OSM data from (~ api.openstreetmap.org) has fixed limitations of how much data you can get. As written at <http://wiki.openstreetmap.org/wiki/Getting_Data> neither latitude nor longitude extent of downloaded region can be larger than 0.25 degrees. Note that Quantum GIS allows you to specify any extent you want, but OpenStreetMap server will reject all request that won't satisfy downloading limitations.
Both extents are too large!
Latitude extent is too large!
Longitude extent is too large!
OK! Area is probably acceptable to server.
Download OSM data
Extent
Latitude:
From
To
Longitude:
<nothing>
...
Download to:
Open data automatically after download
Replace current data (current layer will be removed)
Use custom renderer
Download
Cancel
OsmFeatureDW
OSM Feature
...
Identify object
Move object
Create point
Create line
Create polygon
Create relation
Undo
Redo
Show/Hide OSM Edit History
Feature:
TYPE, ID:
CREATED:
USER:
unknown
Remove feature
Properties
Remove selected tags
Relations
Add relation
Edit relation
Remove relation
Relation tags:
1
Relation members:
OSM Plugin
The 'Create OSM Relation' dialog was closed automatically because current OSM database was changed.
OSM Feature Dock Widget
Choose OSM feature first.
Choose relation for editing first.
Property '%1' cannot be added twice.
OsmImportDlg
Import data to OSM
In this dialog you can import a layer loaded in QGIS into active OSM data.
Layer
Import only current selection
OsmLoadDlg
Load OSM
OpenStreetMap file to load:
...
Add columns for tags:
Use custom renderer
Replace current data (current layers will be removed)
OsmSaveDlg
Save OSM to file
Unable to save the file %1: %2.
Initializing...
Saving nodes...
Saving lines...
Saving polygons...
Saving relations...
Save OSM
Where to save:
...
Features to save:
Points
Lines
Polygons
Relations
Tags
OsmUndoRedoDW
OSM Edit History
Clear all
...
Undo
Redo
OsmUploadDlg
Upload OSM data
Ready for upload
1
2
3
4
5
Comment on your changes:
OSM account
Username:
Password:
Show password
Save password
OSM Upload
Uploading data...
QFileDialog
Load layer properties from style file (.qml)
Save layer properties as style file (.qml)
Save experiment report to portable document format (.pdf)
QObject
Where is '%1' (original location: %2)?
Error Loading Plugin
There was an error loading a plugin.The following diagnostic information may help the QGIS developers resolve the issue:
%1.
Python error
Error when reading metadata of plugin %1
SQLite DB (*.sqlite);;All files (*.*)
Caught a coordinate system exception while trying to transform a point. Unable to calculate line length.
Caught a coordinate system exception while trying to transform a point. Unable to calculate polygon area.
km2
ha
m2
m
km
mm
cm
sq mile
sq ft
mile
foot
feet
sq.deg.
degree
degrees
unknown
Label
No QGIS data provider plugins found in:
%1
No vector layers can be loaded. Check your QGIS installation
No Data Providers
No data provider plugins are available. No vector layers can be loaded
Regular expressions on numeric values don't make sense. Use comparison instead.
Referenced column wasn't found: %1
Division by zero.
Coordinate Capture
Capture mouse coordinates in different CRS
Version 0.1
CopyrightLabel
Draws copyright information
Version 0.2
Loads and displays delimited text files containing x,y coordinates
Add Delimited Text Layer
Dxf2Shp Converter
Converts from dxf to shp file format
PostgreSQL Geoprocessing
Geoprocessing functions for working with PostgreSQL/PostGIS layers
Georeferencer GDAL
Adding projection info to rasters using GDAL
Fit to a linear transform requires at least 2 points.
Fit to a Helmert transform requires at least 2 points.
Fit to an affine transform requires at least 4 points.
GPS Tools
Tools for loading and importing GPS data
Location: %1
Location: %1<br>Mapset: %2
<b>Raster</b>
Cannot open raster header
Rows
Columns
N-S resolution
E-W resolution
North
South
East
West
Format
Minimum value
Maximum value
Data source
Data description
Comments
Categories
<b>Vector</b>
Points
Lines
Boundaries
Centroids
Faces
Kernels
Areas
Islands
Top
Bottom
yes
no
History<br>
<b>Layer</b>
Features
Driver
Database
Table
Key column
GRASS
GRASS layer
Interpolating...
Abort
Interpolation plugin
A plugin for interpolation based on vertices of a vector layer
Version 0.001
NorthArrow
Displays a north arrow overlayed onto the map
OGR Layer Converter
Translates vector layers between formats supported by OGR library
Oracle Spatial GeoRaster
Access Oracle Spatial GeoRaster
[menuitemname]
[plugindescription]
Quick Print
Quick Print is a plugin to quickly print a map with minimal effort.
ScaleBar
Draws a scale bar
SPIT
Shapefile to PostgreSQL/PostGIS Import Tool
WFS plugin
Adds WFS layers to the QGIS canvas
Couldn't open the data source: %1
Parse error at line %1 : %2
GPS eXchange format provider
GRASS plugin
QGIS couldn't find your GRASS installation.
Would you like to specify path (GISBASE) to your GRASS installation?
Choose GRASS installation path (GISBASE)
GRASS data won't be available if GISBASE is not specified.
Uncatched fatal GRASS error
GISBASE is not set.
%1 is not a GRASS mapset.
Mapset is already in use.
Cannot start %1/etc/lock
Temporary directory %1 exists but is not writable
Cannot create temporary directory %1
Cannot create %1
Cannot remove mapset lock: %1
Warning
Cannot read raster map region
Cannot read vector map region
Cannot read region
Couldn't load SIP module.
Python support will be disabled.
Couldn't load PyQt4.
Couldn't load PyQGIS.
An error has occured while executing Python code:
Python version:
Python path:
An error occured during execution of following code:
Couldn't load plugin %1
%1 due an error when calling its classFactory() method
%1 due an error when calling its initGui() method
Error while unloading plugin %1
Deleted vertices
Moved vertices
<b>Region</b>
Cannot open region header
XY
UTM
SP
LL
Other
Projection Type
Zone
3D Cols
3D Rows
Depths
E-W 3D resolution
N-S 3D resolution
eVis
An event visualization tool - view images associated with vector features
Version 1.1.0
This tool only supports vector data
No active layers found
Building triangulation...
Generated CRS
A CRS automatically generated from layer info get this prefix for description
QgisApp
Quantum GIS - %1
Multiple Instances of QgisApp
Multiple instances of Quantum GIS application object detected.
Please contact the developers.
Checking database
Reading settings
Setting up the GUI
Quantum GIS - %1 ('%2')
Checking provider plugins
Starting Python
Restoring loaded plugins
Initializing file filters
Restoring window state
QGIS Ready!
&New Project
Ctrl+N
New Project
New Project
&Open Project...
Ctrl+O
Open a Project
Open a Project
&Save Project
Ctrl+S
Save Project
Save Project
Save Project &As...
Shift+Ctrl+S
Save Project under a new name
Save Project under a new name
Save as Image...
Save map as image
&Print Composer
Ctrl+P
Print Composer
Print Composer
Exit
Ctrl+Q
Exit QGIS
Exit QGIS
&Undo
Ctrl+Z
Undo the last operation
Cu&t
Ctrl+X
Cut the current selection's contents to the clipboard
&Copy
Ctrl+C
Copy the current selection's contents to the clipboard
&Paste
Ctrl+V
Paste the clipboard's contents into the current selection
Cut Features
Cut selected features
Copy Features
Copy selected features
Paste Features
Paste selected features
Capture Point
Capture Points
Capture Line
Capture Lines
Capture Polygon
Capture Polygons
Move Feature
Split Features
Delete Selected
Add Vertex
Move Vertex
Delete Vertex
Add Ring
Add Island
Add Island to multipolygon
Simplify Feature
Delete Ring
Delete Part
Pan Map
Pan the map
Zoom In
Ctrl++
Zoom In
Zoom Out
Ctrl+-
Zoom Out
Select Features
Identify Features
Click on features to identify them
Measure Line
Measure a Line
Measure Area
Measure an Area
Zoom Full
Zoom to Full Extents
Zoom to Layer
Zoom to Selection
Ctrl+J
Zoom to Selection
Zoom Last
Zoom to Last Extent
Zoom Next
Zoom to Forward Extent
Zoom Actual Size
Zoom to Actual Size
Map Tips
Show information about a feature when the mouse is hovered over it
New Bookmark...
Ctrl+B
New Bookmark
New Bookmark
Show Bookmarks
Refresh
Ctrl+R
Refresh Map
Refresh Map
New Vector Layer...
Create a New Vector Layer
Add Vector Layer...
Add a Vector Layer
Add Raster Layer...
Add a Raster Layer
Add PostGIS Layer...
Add a PostGIS Layer
Add SpatiaLite Layer...
Add a SpatiaLite Layer
Add WMS Layer...
Add a Web Mapping Server Layer
Open Attribute Table
Toggle editing
Toggles the editing state of the current layer
Save as Shapefile...
Save the current layer as a shapefile
Save Selection as Shapefile...
Save the selection as a shapefile
Remove Layer
Ctrl+D
Remove a Layer
Remove a Layer
Properties...
Set properties of the current layer
Add to Overview
Add current layer to overview map
Add All to Overview
Show all layers in the overview map
Remove All From Overview
Remove all layers from overview map
Show All Layers
Show all layers
Hide All Layers
Hide all layers
Manage Plugins...
Open the plugin manager
Toggle Full Screen Mode
Ctrl-F
Toggle fullscreen mode
Toggle fullscreen mode
Project Properties...
Set project properties
Options...
Change various QGIS options
Custom CRS...
Manage custom coordinate reference systems
Configure shortcuts...
Configure shortcuts
Minimize
Ctrl+M
Minimize Window
Minimizes the active window to the dock
Zoom
Toggles between a predefined size and the window size set by the user
Bring All to Front
Bring forward all open windows
Help Contents
Ctrl+?
Help Documentation (Mac)
F1
Help Documentation
Help Documentation
QGIS Home Page
Ctrl+H
QGIS Home Page
Check Qgis Version
Check if your QGIS version is up to date (requires internet access)
About
About QGIS
&File
&Open Recent Projects
&Edit
Panels
Toolbars
&View
&Layer
&Settings
&Plugins
&Window
&Help
File
Manage Layers
Digitizing
Advanced Digitizing
Map Navigation
Attributes
Plugins
Help
Progress bar that displays the status of rendering layers and other time-intensive operations
Toggle extents and mouse position display
Shows the map coordinates at the current cursor position. The display is continuously updated as the mouse is moved.
Scale
Current map scale
Displays the current map scale
Current map scale (formatted as x:y)
Stop map rendering
Render
When checked, the map layers are rendered in response to map navigation commands and other events. When not checked, no rendering is done. This allows you to add a large number of layers and symbolize them before rendering.
Toggle map rendering
Resource Location Error
Error reading icon resources from:
%1
Quitting...
This icon shows whether on the fly coordinate reference system transformation is enabled or not. Click the icon to bring up the project properties dialog to alter this behaviour.
CRS status - Click to open coordinate reference system dialog
Ready
Map canvas. This is where raster and vector layers are displayed when added to the map
Map overview canvas. This canvas can be used to display a locator map that shows the current extent of the map canvas. The current extent is shown as a red rectangle. Any layer on the map can be added to the overview canvas.
Overview
Map legend that displays all the layers currently on the map canvas. Click on the check box to turn a layer on or off. Double click on a layer in the legend to customize its appearance and set other properties.
Layers
You are using QGIS version %1 built against code revision %2.
This copy of QGIS has been built with PostgreSQL support.
This copy of QGIS has been built without PostgreSQL support.
This copy of QGIS has been built with SpatiaLite support.
This copy of QGIS has been built without SpatiaLite support.
This binary was compiled against Qt %1,and is currently running against Qt %2
Version
%1 is not a valid or recognized data source
Invalid Data Source
Invalid Layer
%1 is an invalid layer and cannot be loaded.
Save As
Choose a QGIS project file to open
QGis files (*.qgs)
QGIS Project Read Error
%1
Try to find missing layers?
Unable to open project
Choose a QGIS project file
Saved project to: %1
Unable to save project
Unable to save project to %1
Unable to save project %1
Choose a file name to save the QGIS project file as
QGIS: Unable to load project
Unable to load project %1
Choose a file name to save the map image as
Saved map image to %1
No Layer Selected
To delete features, you must select a vector layer in the legend
No Vector Layer Selected
Deleting features only works on vector layers
Provider does not support deletion
Data provider does not support deleting features
Layer not editable
The current layer is not editable. Choose 'Start editing' in the digitizing toolbar.
Delete features
Delete %n feature(s)?
number of features to delete
Problem deleting features
A problem occured during deletion of features
Start editing failed
Provider cannot be opened for editing
Stop editing
Do you want to save the changes to layer %1?
Error
Could not commit changes to layer %1
Errors: %2
Problems during roll back
Invalid scale
Python Console
There is a new version of QGIS available
You are running a development version of QGIS
You are running the current version of QGIS
Would you like more information?
QGIS Version Information
QGIS - Changes in SVN since last release
Unable to get current version information from server
Connection refused - server may be down
QGIS server was not found
Network error while communicating with server
Unknown network socket error
Unable to communicate with QGIS Version server
%1
Layer is not valid
The layer is not a valid layer and can not be added to the map
Save?
Do you want to save the current project?
Map coordinates for the current view extents
Map coordinates at mouse cursor position
Extents: %1
Maptips require an active layer
Open a GDAL Supported Raster Data Source
%1 is not a valid or recognized raster data source
%1 is not a supported raster data source
Unsupported Data Source
Enter a name for the new bookmark:
Unable to create the bookmark. Your user database may be missing or corrupted
Project file is older
<p>This project file was saved by an older version of QGIS. When saving this project file, QGIS will update it to the latest version, possibly rendering it useless for older versions of QGIS.<p>Even though QGIS developers try to maintain backwards compatibility, some of the information from the old project file might be lost. To improve the quality of QGIS, we appreciate if you file a bug report at %3. Be sure to include the old project file, and state the version of QGIS you used to discover the error.<p>To remove this warning when opening an older project file, uncheck the box '%5' in the %4 menu.<p>Version of the project file: %1<br>Current version of QGIS: %2
<tt>Settings:Options:General</tt>
Menu path to setting options
Warn me when opening a project file saved with an older version of QGIS
&Redo
Ctrl+Shift+Z
Redo the last operation
Merge selected features
Node Tool
Features deleted
Merging features...
Abort
No active layer
No active layer found. Please select a layer in the layer list
Active layer is not vector
The merge features tool only works on vector layers. Please select a vector layer from the layer list
Merging features can only be done for layers in editing mode. To use the merge tool, go to Layer->Toggle editing
The merge tool requires at least two selected features
The union operation would result in a geometry type that is not compatible with the current layer and therefore is canceled
Merged features
Features cut
Features pasted
Whats new in Version 1.2.0?
Please note that this is a release in our 'cutting edge' release series. As such it contains new features and extends the programmatic interface over QGIS 1.0.x and QGIS 1.1.0. If stability and long term support is more important to you then cool new and untested features, we recommend that you use a copy of QGIS from our stable 1.0.x release series.
This release includes over 140 bug fixes and enhancements over the QGIS 1.1.0 release. In addition we have added the following new features:
Editing:
Editing functionality in QGIS has had a major update in this release. This
includes the addition of new vector editing tools:
- delete part of multipart feature
- delete hole from polygon
- simplify feature
- Added a new node tool (in advanced digitizing toolbar).
- New functionality for merging features
- Added undo/redo functionality for vector layer editing.
- Added option to show only markers of selected features in editing mode.
- Change layer's icon in legend to reflext that the layer is editable.
In addition, there are undo/redo actions in Edit menu, in Advanced digitizing toolbar
and there is a new dock widget displaying undo stack of active layer.
About the node tool: It resembles a tool for editing paths by nodes that is
present in every vector editor. How does it work (in QGIS)? Click on a
feature, its nodes will be marked by small rectangles. Clicking and dragging a
node moves it. Double clicking a segment will add a new node. Pressing delete
key will remove active node. It's possible to select more active nodes at
once: by clicking and dragging a rectangle. It's possible to select a segment's
adjacent nodes by clicking on the segment. It's possible to add/remove active
nodes by using Ctrl when clicking a node or dragging a rectangle
We recommend that you turn off vertex markers in QGIS options when working with
this tool: the redraws are much faster and the map is not cluttered with
markers.
Keyboard shortcuts:
New feature: configure shortcuts for actions within main window of qgis!
See menu Setting->Configure shortcuts
Map Composer:
It is now possible to lock/unlock composer item positions by right mouse click.
The width and height of the composer map will now remain fixed if user sets the
composer map extent to the map canvas extent. possibility to display
current date in composer label by typing (d 'June' yyyy) or similar.
It is now possible to keep the current layers in a composer map even if further
layers are added to the main map. Export to PDF in composer is now possible.
Attribute tables:
It is now possible to search the attribute table within selected records only.
General speedups have been made on the attribute table. Setting of field width
and precision when adding attributes is now possible. Handling of attribute
types in WFS provider has bee improved.
Attribute aliases for vector layers are now available. The aliases are shown
instead of the original field names in the info tool and attribute table to
make things easier for end users. There is now a GUI for setting edit widgets
for layer attributes. A new dialog allows loading a value map from a layer
(could be non-spatial table too!). The edit widgets settings will also now
be respected in the attribute table.
Plugins:
- The order of layers in the WMS dialog can now be changed.
- The eVis plugin, version 1.1.0, has been added to the QGIS project and
included as a standard plugin. More information about eVis can be found here:
http://biodiversityinformatics.amnh.org/open_source/evis/documentation.php .
- The interpolation plugin now has the ability to use line layers as constrains
for triangulation in interpolation plugin. You can also now save the
triangulation to shape file.
- An new OpenStreetMap provider and plugin have been added to QGIS.
Projects Management:
QGIS now includes support for project relative position of file data sources
and svgs. The saving of relative paths of file data sources is optional.
PostGIS & the PostgreSQL Provider:
You can now select the SSL mode when adding a new DB connection. Turning off
SSL encryption can greatly improve performance of PostGIS data loading where
connection security is not required. Support has been added for more native
types and for setting of column comments.
Symbology enhancements:
- allow refresh of symbols via popup menu on the renderer's symbol selection
- add support for data defined symbol(name)s
- add support for font symbol markers (only data defined - no gui yet)
- add symbol size in map units (ie. symbols that keep the size in mapunits
independant of the mapscale)
Command line arguments:
Added command line argument support on windows.
Enhancement of command line arguments:
- allow given snapshot sizes
- allow suppression of splash screen
- capture map decorations from plugins on snapshots
Grass:
There is a new GRASS shell. Also there have been many cleanups and consistency
updates.
Ctrl+.
Capture Points
Ctrl+/
Capture Lines
Ctrl+Shift+/
Capture Polygons
Ctrl+Shift+I
Click on features to identify them
Ctrl+Shift+M
Measure a Line
Ctrl+Shift+J
Measure an Area
Ctrl+Shift+F
Zoom to Full Extents
Ctrl+Shift+B
Show Bookmarks
Ctrl+Shift+N
Create a New Vector Layer
Ctrl+Shift+V
Add a Vector Layer
Ctrl+Shift+R
Add a Raster Layer
Ctrl+Shift+D
Add a PostGIS Layer
Ctrl+Shift+L
Add a SpatiaLite Layer
Ctrl+Shift+W
Add a Web Mapping Server Layer
Ctrl+Shift+O
Add current layer to overview map
Ctrl+Shift+U
Show all layers
Ctrl+Shift+H
Hide all layers
Ctrl+Shift+P
Set project properties
QgisAppBase
QGIS
QgsAbout
Name
Website
<p>The following have contributed to QGIS by translating the user interface or documentation</p>
Language
Names
Available QGIS Data Provider Plugins
Available Qt Database Plugins
Available Qt Image Plugins
About Quantum GIS
About
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;">
<p style=" margin-top:16px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:x-large; font-weight:600;"><span style=" font-size:x-large;">Quantum GIS (QGIS)</span></p></body></html>
Version
Quantum GIS is licensed under the GNU General Public License
http://www.gnu.org/licenses
QGIS Home Page
Join our user mailing list
What's New
Developers
Providers
Sponsors
Translators
Ok
<p>QGIS sponsorship programme:contribute to QGIS development</p>
<p>The following individuals and institutions have contributed money to fund QGIS development and other project costs</p>
Donors
QgsAddAttrDialogBase
Add Attribute
Name:
Type:
Comment:
Width
Precision
QgsApplication
Exception
QgsAttributeActionDialog
Select an action
File dialog window title
Missing Information
To create an attribute action, you must provide both a name and the action to perform.
QgsAttributeActionDialogBase
Attribute Actions
Action properties
Enter the name of an action here. The name should be unique (qgis will make it unique if necessary).
Name
Enter the action name here
Action
Enter the action command here
Browse for action
Click to browse for an action
Clicking the button will let you select an application to use as the action
...
The valid attribute names for this layer
Inserts the selected field into the action, prepended with a %
Insert field
Captures any output from the action
Captures the standard output or error generated by the action and displays it in a dialog box
Capture output
This list contains all actions that have been defined for the current layer. Add actions by entering the details in the controls below and then pressing the Insert action button. Actions can be edited here by double clicking on the item.
Capture
Inserts the action into the list above
Insert action
Update the selected action
Update action
Move the selected action up
Move up
Move the selected action down
Move down
Remove the selected action
Remove
Enter the action here. This can be any program, script or command that is available on your system. When the action is invoked any set of characters that start with a % and then have the name of a field will be replaced by the value of that field. The special characters %% will be replaced by the value of the field that was selected. Double quote marks group text into single arguments to the program, script or command. Double quotes will be ignored if prefixed with a backslash
QgsAttributeDialog
(int)
(dbl)
(txt)
QgsAttributeDialogBase
Enter Attribute Values
QgsAttributeEditor
Select a file
...
QgsAttributeLoadValues
Load values from layer
Layer
Description
Value
Select data from attributes in selected layer.
View All
QgsAttributeTableDialog
Attribute table - %1
Search string parsing error
Search results
You've supplied an empty search string.
Error during search
Found %d matching features.
No matching features found.
Attribute Table
Remove selection
Move selected to top
Ctrl+T
Invert selection
Ctrl+S
Copy selected rows to clipboard (Ctrl+C)
Copies the selected rows to the clipboard
Ctrl+C
Zoom map to the selected rows (Ctrl-J)
Zoom map to the selected rows
Ctrl+J
Toggle editing mode
Click to toggle table editing
Look for
in
&Search
Show selected records only
Search selected records only
Advanced search
...
QgsAttributeTableMemoryModel
Attribute changed
QgsAttributeTableModel
Attribute changed
QgsAttributeTypeDialog
Current minimum for this value is %1 and current maximum is %2.
Attribute has no integer or real type, therefore range is not usable.
Enumeration is not available for this attribute
Attribute Edit Dialog
Line edit
Classification
Range
Unique values
File name
Value map
Enumeration
Immutable
Simple edit box. This is the default editation widget.
Displays combo box containing values of attribute used for classification.
Allows to set numeric values from a specified range. The edit widget can be either a slider or a spin box.
Minimum
Maximum
Step
Slider
Editable
Local minimum/maximum = 0/0
The user can select one of the values already used in the attribute. If editable, a line edit is shown with autocompletion support, otherwise a combo box is used.
Simplifies file selection by adding a file chooser dialog.
Combo box with predefined items. Value is stored in the attribute, description is shown in the combo box.
Load Data from layer
Value
Description
Remove Selected
Combo box with values that can be used within the column's type. Must be supported by the provider.
Immutable attribute is read-only - user is not able to modify the contents.
QgsBookmarks
&Delete
&Zoom to
Really Delete?
Are you sure you want to delete the %1 bookmark?
Error deleting bookmark
Failed to delete the %1 bookmark from the database. The database said:
%2
QgsBookmarksBase
Geospatial Bookmarks
Name
Project
Extent
Id
QgsComposer
QGIS - print composer
QGIS
File
Close
Ctrl+W
Edit
&Undo
Ctrl+Z
Cu&t
Ctrl+X
&Copy
Ctrl+C
&Paste
Ctrl+V
Delete
View
Layout
Map 1
Big image
To create image %1 x %2 requires circa %3 MB of memory
%1 format (*.%2 *.%3)
Choose a file name to save the map image as
SVG warning
Don't show this message again
<p>The SVG export function in Qgis has several problems due to bugs and deficiencies in the
Qt4 svg code. Of note, text does not appear in the SVG file and there are problems with the map bounding box clipping other items such as the legend or scale bar.</p>
Qt4 svg code. In particular, there are problems with layers not being clipped to the map bounding box.</p>
If you require a vector-based output file from Qgis it is suggested that you try printing to PostScript if the SVG output is not satisfactory.</p>
Choose a file name to save the map as
SVG Format
save template
Save error
Error, could not save file
Load template
Read error
Error, could not read file
Content of template file is not valid
Project contains WMS layers
Some WMS servers (e.g. UMN mapserver) have a limit for the WIDTH and HEIGHT parameter. Printing layers from such servers may exceed this limit. If this is the case, the WMS layer will not be printed
PDF Format
QgsComposerBase
MainWindow
General
Composition
Item
Help
Close
&Print...
Zoom Full
Zoom In
Zoom Out
Add Map
Add new map
Add Label
Add new label
Add Vector Legend
Add new vect legend
Move Item
Select/Move item
Export as Image...
Export as SVG...
Add Scalebar
Add new scalebar
Refresh
Refresh view
Add Image
Move Content
Move item content
Group
Group items
Ungroup
Ungroup items
Raise
Raise selected items
Lower
Lower selected items
Bring to Front
Move selected items to top
Send to Back
Move selected items to bottom
Load From template
Save as template
Align left
Align selected items left
Align center
Align center horizontal
Align right
Align selected items right
Align top
Align selected items to top
Align center vertical
Align bottom
Align selected items bottom
Export as PDF...
QgsComposerItemWidgetBase
Form
Composer item properties
Color:
Frame...
Background...
Opacity:
Outline width:
Position...
Frame
QgsComposerLabelWidgetBase
Label Options
Font
Margin (mm):
QgsComposerLegend
Legend
QgsComposerLegendItemDialogBase
Legend item properties
Item text:
QgsComposerLegendWidgetBase
Barscale Options
General
Title:
Font:
Title...
Layer...
Item...
Symbol width:
Symbol height:
Layer space:
Symbol space:
Icon label space:
Box space:
Legend items
down
up
remove
edit...
update
update all
QgsComposerMap
Map %1
Map will be printed here
QgsComposerMapWidget
Cache
Render
Rectangle
QgsComposerMapWidgetBase
Map options
<b>Map</b>
Width
Height
Scale:
1:
Map extent
X min:
Y min:
X max:
Y max:
set to map canvas extent
Preview
Update preview
Keep layer list
QgsComposerPictureWidget
Select svg or image file
Select new preview directory
Creating icon for file %1
QgsComposerPictureWidgetBase
Picture Options
Search directories
Add...
Remove
Preview
Browse...
Width:
Height:
Rotation:
QgsComposerScaleBarWidget
Single Box
Double Box
Line Ticks Middle
Line Ticks Down
Line Ticks Up
Numeric
Map %1
QgsComposerScaleBarWidgetBase
Barscale Options
Segment size (map units):
Map units per bar unit:
Number of segments:
Segments left:
Style:
Map:
Height (mm):
Line width:
Label space:
Box space:
Unit label:
Font...
Color...
QgsComposerVectorLegendBase
Vector Legend Options
Preview
Map
Title
Layers
Group
ID
Box
Font
QgsCompositionBase
Composition
Paper
Orientation
Height
Width
Units
Size
QgsCompositionWidget
Landscape
Portrait
Solid
Dots
Crosses
Custom
A5 (148x210 mm)
A4 (210x297 mm)
A3 (297x420 mm)
A2 (420x594 mm)
A1 (594x841 mm)
A0 (841x1189 mm)
B5 (176 x 250 mm)
B4 (250 x 353 mm)
B3 (353 x 500 mm)
B2 (500 x 707 mm)
B1 (707 x 1000 mm)
B0 (1000 x 1414 mm)
Legal (8.5x14 inches)
mm
inch
ANSI A (Letter; 8.5x11 inches)
ANSI B (Tabloid; 11x17 inches)
ANSI C (17x22 inches)
ANSI D (22x34 inches)
ANSI E (34x44 inches)
Arch A (9x12 inches)
Arch B (12x18 inches)
Arch C (18x24 inches)
Arch D (24x36 inches)
Arch E (36x48 inches)
Arch E1 (30x42 inches)
QgsCompositionWidgetBase
Composition
Paper
Orientation
Height
Width
Units
Size
Snapping
Snap to grid
Grid resolution:
Offset x:
Offset y:
Pen width:
Grid color:
Grid style:
Print quality (dpi)
Print as raster
QgsConfigureShortcutsDialog
None
Set default (%1)
Input:
Change
Shortcut conflict
This shortcut is already assigned to action %1. Reassign?
Configure shortcuts
Action
Shortcut
Set none
Set default
QgsContinuousColorDialogBase
Continuous color
Maximum Value:
Outline Width:
Minimum Value:
Classification Field:
Draw polygon outline
QgsCoordinateTransform
The source spatial reference system (CRS) is not valid.
The coordinates can not be reprojected. The CRS is: %1
The destination spatial reference system (CRS) is not valid.
Failed
transform of
with error:
QgsCopyrightLabelPlugin
Bottom Left
Top Left
Top Right
Bottom Right
&Copyright Label
Creates a copyright label that is displayed on the map canvas.
&Decorations
QgsCopyrightLabelPluginGuiBase
Copyright Label Plugin
Color
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'Verdana'; font-size:10pt; font-weight:400; font-style:normal;">
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;"><span style=" font-size:12pt;">Description</span></p>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;"></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;">Enter your copyright label below. This plugin supports basic html markup tags for formatting the label. For example:</p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;"><span style=" font-weight:600;"><B> Bold text </B> </span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt; font-weight:600;"><span style=" font-weight:400; font-style:italic;"><I> Italics </I></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt; font-style:italic;"><span style=" font-style:normal;">(note: &copy; gives a copyright symbol)</span></p></body></html>
Enable Copyright Label
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'Verdana'; font-size:10pt; font-weight:400; font-style:normal;">
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© QGIS 2009</p></body></html>
Placement
Bottom Left
Top Left
Bottom Right
Top Right
Orientation
Horizontal
Vertical
QgsCustomProjectionDialog
Delete Projection Definition?
Deleting a projection definition is not reversable. Do you want to delete it?
Abort
New
QGIS Custom Projection
This proj4 projection definition is not valid.
Please give the projection a name before pressing save.
Please add the parameters before pressing save.
Please add a proj= clause before pressing save.
This proj4 ellipsoid definition is not valid. Please add a ellips= clause before pressing save.
COMMENTED OUT
Please correct before pressing save.
Northing and Easthing must be in decimal form.
Internal Error (source projection invalid?)
QgsCustomProjectionDialogBase
Custom Coordinate Reference System Definition
Define
You can define your own custom Coordinate Reference System (CRS) here. The definition must conform to the proj4 format for specifying a CRS.
Name
Parameters
|<
<
1 of 1
>
>|
*
S
X
Test
Use the text boxes below to test the CRS definition you are creating. Enter a coordinate where both the lat/long and the transformed result are known (for example by reading off a map). Then press the calculate button to see if the CRS definition you are creating is accurate.
Geographic / WGS84
Destination CRS
North
East
Calculate
QgsDbSourceSelect
Wildcard
RegExp
All
Schema
Table
Type
Geometry column
Sql
Are you sure you want to remove the %1 connection and all associated settings?
Confirm Delete
Select Table
You must select a table in order to add a layer.
Password for
Please enter your password:
Connection failed
Connection to %1 on %2 failed. Either the database is down or your settings are incorrect.
Check your username and password and try again.
The database said:
%3
Accessible tables could not be determined
Database connection was successful, but the accessible tables could not be determined.
The error message from the database was:
%1
No accessible tables found
Database connection was successful, but no accessible tables were found.
Please verify that you have SELECT privilege on a table carrying PostGIS
geometry.
QgsDbSourceSelectBase
Add PostGIS Table(s)
PostgreSQL Connections
Delete
Edit
New
Connect
Help
F1
Add
Close
Search:
Search mode:
Search in columns:
Search options...
Build query
QgsDbTableModel
Schema
Table
Type
Geometry column
Sql
Point
Multipoint
Line
Multiline
Polygon
Multipolygon
QgsDelAttrDialogBase
Delete Attributes
QgsDelimitedTextPlugin
DelimitedTextLayer
&Add Delimited Text Layer
Add a delimited text file as a map layer. The file must have a header row containing the field names. X and Y fields are required and must contain coordinates in decimal units.
&Delimited text
QgsDelimitedTextPluginGui
Parse
Description
Select a delimited text file containing a header row and one or more rows of x and y coordinates that you would like to use as a point layer and this plugin will do the job for you!
Use the layer name box to specify the legend name for the new layer. Use the delimiter box to specify what delimeter is used in your file (e.g. space, comma, tab or a regular expression in Perl style). After choosing a delimiter, press the parse button and select the columns containing the x and y values for the layer.
No layer name
Please enter a layer name before adding the layer to the map
No delimiter
Please specify a delimiter prior to parsing the file
Choose a delimited text file to open
QgsDelimitedTextPluginGuiBase
Create a Layer from a Delimited Text File
Delimited Text Layer
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'Verdana'; font-size:10pt; font-weight:400; font-style:normal;">
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html>
<p align="right">X field</p>
Name of the field containing x values
Name of the field containing x values. Choose a field from the list. The list is generated by parsing the header row of the delimited text file.
<p align="right">Y field</p>
Name of the field containing y values
Name of the field containing y values. Choose a field from the list. The list is generated by parsing the header row of the delimited text file.
Delimited text file
Full path to the delimited text file
Full path to the delimited text file. In order to properly parse the fields in the file, the delimiter must be defined prior to entering the file name. Use the Browse button to the right of this field to choose the input file.
Browse to find the delimited text file to be processed
Use this button to browse to the location of the delimited text file. This button will not be enabled until a delimiter has been entered in the <i>Delimiter</i> box. Once a file is chosen, the X and Y field drop-down boxes will be populated with the fields from the delimited text file.
Browse...
Layer name
Name to display in the map legend
Name displayed in the map legend
Sample text
Delimiter
Delimiter to use when splitting fields in the text file. The delimiter can be more than one character.
Delimiter to use when splitting fields in the delimited text file. The delimiter can be 1 or more characters in length.
The delimiter is taken as is
Plain characters
The delimiter is a regular expression
Regular expression
QgsDelimitedTextProvider
Error
Note: the following lines were not loaded because Qgis was unable to determine values for the x and y coordinates:
QgsDetailedItemWidgetBase
Form
Heading Label
Detail label
QgsDiagramDialog
Pie chart
Bar chart
Proportional SVG symbols
QgsDiagramDialogBase
Dialog
Display diagrams
Diagram type:
Classification attribute:
Classification type:
QgsDlgPgBufferBase
Buffer features
Parameters
Geometry column:
Add the buffered layer to the map?
Spatial reference ID:
Schema:
Unique field to use as feature id:
Table name for the buffered layer:
Create unique object id
public
Buffer distance in map units:
<h2>Buffer the features in layer: </h2>
QgsEncodingFileDialog
Encoding:
QgsGPSDeviceDialog
New device %1
Are you sure?
Are you sure that you want to delete this device?
QgsGPSDeviceDialogBase
GPS Device Editor
New device
Delete device
Update device
Device name
This is the name of the device as it will appear in the lists
Commands
Track download:
Route upload:
Waypoint download:
The command that is used to download routes from the device
Route download:
The command that is used to upload waypoints to the device
Track upload:
The command that is used to download tracks from the device
The command that is used to upload routes to the device
The command that is used to download waypoints from the device
The command that is used to upload tracks to the device
Waypoint upload:
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'Verdana'; font-size:10pt; font-weight:400; font-style:normal;">
<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;">In the download and upload commands there can be special words that will be replaced by QGIS when the commands are used. These words are:<span style=" font-style:italic;">%babel</span> - the path to GPSBabel<br /><span style=" font-style:italic;">%in</span> - the GPX filename when uploading or the port when downloading<br /><span style=" font-style:italic;">%out</span> - the port when uploading or the GPX filename when downloading</p></body></html>
QgsGPSPlugin
&Gps Tools
&Create new GPX layer
Creates a new GPX layer and displays it on the map canvas
&Gps
Save new GPX file as...
GPS eXchange file (*.gpx)
Could not create file
Unable to create a GPX file with the given name.
Try again with another name or in another
directory.
GPX Loader
Unable to read the selected file.
Please reselect a valid file.
Could not start process
Could not start GPSBabel!
Importing data...
Cancel
Could not import data from %1!
Error importing data
Could not convert data from %1!
Error converting data
Not supported
This device does not support downloading of %1.
Downloading data...
Could not download data from GPS!
Error downloading data
This device does not support uploading of %1.
Uploading data...
Error while uploading data to GPS!
Error uploading data
QgsGPSPluginGui
Waypoints
Routes
Tracks
Choose a file name to save under
GPS eXchange format (*.gpx)
Select GPX file
Select file and format to import
GPX is the %1, which is used to store information about waypoints, routes, and tracks.
GPS eXchange file format
Select a GPX file and then select the feature types that you want to load.
This tool will help you download data from a GPS device.
Choose your GPS device, the port it is connected to, the feature type you want to download, a name for your new layer, and the GPX file where you want to store the data.
If your device isn't listed, or if you want to change some settings, you can also edit the devices.
This tool uses the program GPSBabel (%1) to transfer the data.
This requires that you have GPSBabel installed where QGIS can find it.
This tool will help you upload data from a GPX layer to a GPS device.
Choose the layer you want to upload, the device you want to upload it to, and the port your device is connected to.
QGIS can only load GPX files by itself, but many other formats can be converted to GPX using GPSBabel (%1).
Select a GPS file format and the file that you want to import, the feature type that you want to use, a GPX file name 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.
QGIS can perform conversions of GPX files, by using GPSBabel (%1) to perform the conversions.
Select a GPX input file name, the type of conversion you want to perform, a GPX file name that you want to save the converted file as, and a name for the new layer created from the result.
QgsGPSPluginGuiBase
GPS Tools
Load GPX file
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'Verdana'; font-size:10pt; font-weight:400; font-style:normal;">
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;"></p></body></html>
File:
Browse...
Feature types:
Waypoints
Routes
Tracks
Import other file
Layer name:
Save As...
GPX output file:
Feature type:
(Note: Selecting correct file type in browser dialog important!)
File to import:
Download from GPS
GPS device:
Edit devices...
Port:
Refresh
Output file:
Upload to GPS
Edit devices
Data layer:
GPX Conversions
Conversion:
GPX input file:
QgsGPXProvider
Bad URI - you need to specify the feature type.
GPS eXchange file
Digitized in QGIS
QgsGenericProjectionSelector
Define this layer's coordinate reference system:
This layer appears to have no projection specification.
By default, this layer will now have its projection set to that of the project, but you may override this by selecting a different projection below.
QgsGenericProjectionSelectorBase
Coordinate Reference System Selector
QgsGeomTypeDialog
String
Integer
Real
QgsGeomTypeDialogBase
New Vector Layer
File format
Type
Point
Line
Polygon
Attributes
Name
Width
Precision
Delete selected attribute
...
Add attribute
QgsGeorefDescriptionDialogBase
Description georeferencer
QgsGeorefPlugin
&Georeferencer
<b>Georeferencer GDAL</b>
Based on original Georeferencer Plugin
<b>Developers:</b>
Lars Luthman (original Georeferencer)
<b>Links:</b>
QgsGeorefWarpOptionsDialogBase
Warp options
Compression:
Resampling method:
Nearest neighbour
Linear
Cubic
Use 0 for transparency when needed
OK
QgsGraduatedSymbolDialog
Equal Interval
Quantiles
Empty
QgsGraduatedSymbolDialogBase
graduated Symbol
Classification field
Mode
Number of classes
Classify
Delete class
QgsGrassAttributes
Column
Value
Type
Layer
Warning
ERROR
OK
QgsGrassAttributesBase
GRASS Attributes
Tab 1
result
Update database record
Update
Add new category using settings in GRASS Edit toolbox
New
Delete selected category
Delete
QgsGrassBrowser
Tools
Add selected map to canvas
Copy selected map
Rename selected map
Delete selected map
Set current region to selected map
Refresh
New name
Warning
Cannot copy map %1@%2
<br>command: %1 %2<br>%3<br>%4
Cannot rename map %1
Cannot delete map %1
Cannot write new region
New name for layer "%1"
Question
Are you sure you want to delete %n selected layer(s)?
number of layers to delete
QgsGrassEdit
Warning
You are not owner of the mapset, cannot open the vector for editing.
Cannot open vector for update.
Edit tools
New point
New line
New boundary
New centroid
Move vertex
Add vertex
Delete vertex
Move element
Split line
Delete element
Edit attributes
Close
Background
Highlight
Dynamic
Point
Line
Boundary (no area)
Boundary (1 area)
Boundary (2 areas)
Centroid (in area)
Centroid (outside area)
Centroid (duplicate in area)
Node (1 line)
Node (2 lines)
Next not used
Manual entry
No category
Info
The table was created
Tool not yet implemented.
Cannot check orphan record: %1
Orphan record was left in attribute table. <br>Delete the record?
Cannot delete orphan record:
Cannot describe table for field %1
Left: %1
Middle: %1
Right: %1
QgsGrassEditAddVertex
Select line segment
New vertex position
Release
QgsGrassEditAttributes
Select element
QgsGrassEditBase
GRASS Edit
Category
Mode
Layer
Settings
Snapping in screen pixels
Symbology
Line width
Marker size
Disp
Color
Type
Index
Table
Column
Length
Add Column
Create / Alter Table
QgsGrassEditDeleteLine
Select element
Delete selected / select next
Release selected
QgsGrassEditDeleteVertex
Select vertex
Delete vertex
Release vertex
QgsGrassEditMoveLine
Select element
New location
Release selected
QgsGrassEditMoveVertex
Select vertex
Select new position
QgsGrassEditNewLine
New vertex
New point
Undo last point
Close line
QgsGrassEditNewPoint
New centroid
New point
QgsGrassEditSplitLine
Select position on line
Split the line
Release the line
Select point on line
QgsGrassElementDialog
Cancel
Ok
<font color='red'>Enter a name!</font>
<font color='red'>This is name of the source!</font>
<font color='red'>Exists!</font>
Overwrite
QgsGrassMapcalc
Mapcalc tools
Add map
Add constant value
Add operator or function
Add connection
Select item
Delete selected item
Open
Save
Save as
Addition
Subtraction
Multiplication
Division
Modulus
Exponentiation
Equal
Not equal
Greater than
Greater than or equal
Less than
Less than or equal
And
Or
Absolute value of x
Inverse tangent of x (result is in degrees)
Inverse tangent of y/x (result is in degrees)
Current column of moving window (starts with 1)
Cosine of x (x is in degrees)
Convert x to double-precision floating point
Current east-west resolution
Exponential function of x
x to the power y
Convert x to single-precision floating point
Decision: 1 if x not zero, 0 otherwise
Decision: a if x not zero, 0 otherwise
Decision: a if x not zero, b otherwise
Decision: a if x > 0, b if x is zero, c if x < 0
Convert x to integer [ truncates ]
Check if x = NULL
Natural log of x
Log of x base b
Largest value
Median value
Smallest value
Mode value
1 if x is zero, 0 otherwise
Current north-south resolution
NULL value
Random value between a and b
Round x to nearest integer
Current row of moving window (Starts with 1)
Sine of x (x is in degrees)
sin(x)
Square root of x
sqrt(x)
Tangent of x (x is in degrees)
tan(x)
Current x-coordinate of moving window
Current y-coordinate of moving window
Output
Warning
Cannot get current region
Cannot check region of map %1
Cannot get region of map %1
No GRASS raster maps currently in QGIS
Cannot create 'mapcalc' directory in current mapset.
New mapcalc
Enter new mapcalc name:
Enter vector name
The file already exists. Overwrite?
Save mapcalc
File name empty
Cannot open mapcalc file
The mapcalc schema (%1) not found.
Cannot open mapcalc schema (%1)
Cannot read mapcalc schema (%1):
%1
at line %2 column %3
QgsGrassMapcalcBase
MainWindow
Output
QgsGrassModule
Module: %1
Warning
The module file (%1) not found.
Cannot open module file (%1)
Cannot read module file (%1)
%1
at line %2 column %3
Module %1 not found
Cannot find man page %1
Please ensure you have the GRASS documentation installed.
Not available, description not found (%1)
Not available, cannot open description (%1)
Not available, incorrect description (%1)
Run
Cannot get input region
Input %1 outside current region!
Use Input Region
Output %1 exists! Overwrite?
Cannot find module %1
Cannot start module: %1
Stop
<B>Successfully finished</B>
<B>Finished with error</B>
<B>Module crashed or killed</B>
QgsGrassModuleBase
GRASS Module
Options
Output
Manual
TextLabel
Run
View output
Close
QgsGrassModuleField
Attribute field
QgsGrassModuleFile
File
%1: missing value
%1: directory does not exist
QgsGrassModuleGdalInput
Warning
Cannot find layeroption %1
Cannot find whereoption %1
PostGIS driver in OGR does not support schemas!<br>Only the table name will be used.<br>It can result in wrong input if more tables of the same name<br>are present in the database.
%1: no input
Select a layer
QgsGrassModuleInput
Input
Warning
Cannot find typeoption %1
Cannot find values for typeoption %1
Cannot find layeroption %1
GRASS element %1 not supported
Use region of this map
%1: no input
Select a layer
QgsGrassModuleOption
%1: missing value
QgsGrassModuleSelection
Selected categories
QgsGrassModuleStandardOptions
Warning
Cannot find module %1
Cannot start module %1
<br>command: %1 %2<br>%3<br>%4
Cannot read module description (%1):
%1
at line %2 column %3
Cannot find key %1
Item with id %1 not found
Cannot get current region
Cannot check region of map %1
Cannot set region of map %1
QgsGrassNewMapset
Database
Location 1
System mapset
User's mapset
Location 2
Enter path to GRASS database
The directory doesn't exist!
No writable locations, the database is not writable!
Enter location name!
The location exists!
Selected projection is not supported by GRASS!
Warning
Cannot create projection.
Cannot reproject previously set region, default region set.
North must be greater than south
East must be greater than west
Regions file (%1) not found.
Cannot open locations file (%1)
Cannot read locations file (%1):
%1
at line %2 column %3
Cannot create QgsCoordinateReferenceSystem
Cannot reproject selected region.
Cannot reproject region
Enter mapset name.
The mapset already exists
Database:
Location:
Mapset:
Create location
Cannot create new location: %1
Create mapset
Cannot create new mapset directory
Cannot open DEFAULT_WIND
Cannot open WIND
New mapset
New mapset successfully created, but cannot be opened: %1
New mapset successfully created and set as current working mapset.
QgsGrassNewMapsetBase
New Mapset
GRASS Database
Tree
Comment
Example directory tree:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;">
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;">GRASS data are stored in tree directory structure. The GRASS database is the top-level directory in this tree structure.</p></body></html>
Database Error
Database:
Browse...
Select existing directory or create a new one:
GRASS Location
Location
Select location
Create new location
Location Error
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;">
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;">The GRASS location is a collection of maps for a particular territory or project.</p></body></html>
Projection
Projection Error
Coordinate system
Not defined
Default GRASS Region
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;">
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;">The GRASS region defines a workspace for raster modules. The default region is valid for one location. It is possible to set a different region in each mapset. It is possible to change the default location region later.</p></body></html>
Set current QGIS extent
Set
Region Error
S
W
E
N
Mapset
New mapset:
Mapset Error
<p align="center">Existing masets</p>
Owner
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;">
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;">The GRASS mapset is a collection of maps used by one user. A user can read maps from all mapsets in the location but he can open for writing only his mapset (owned by user).</p></body></html>
Create New Mapset
Location:
Mapset:
QgsGrassPlugin
GrassVector
0.1
GRASS layer
Open mapset
New mapset
Close mapset
Add GRASS vector layer
Add GRASS raster layer
Open GRASS tools
Display Current Grass Region
Edit Current Grass Region
Edit Grass Vector layer
Create new Grass Vector
Adds a GRASS vector layer to the map canvas
Adds a GRASS raster layer to the map canvas
Displays the current GRASS region as a rectangle on the map canvas
Edit the current GRASS region
Edit the currently selected GRASS vector layer.
&GRASS
GRASS
Warning
Cannot open GRASS vector:
%1
GRASS Edit is already running.
New vector name
Cannot create new vector: %1
New vector created but cannot be opened by data provider.
Cannot start editing.
Cannot open vector for update.
GISDBASE, LOCATION_NAME or MAPSET is not set, cannot display current region.
Cannot read current region: %1
Cannot open the mapset. %1
Cannot close mapset. %1
Cannot close current mapset. %1
Cannot open GRASS mapset. %1
QgsGrassRegion
Warning
GISDBASE, LOCATION_NAME or MAPSET is not set, cannot display current region.
Cannot read current region: %1
Cannot write region
QgsGrassRegionBase
GRASS Region Settings
N
W
E
S
N-S Res
Rows
Cols
E-W Res
Color
Width
OK
Cancel
QgsGrassSelect
Select GRASS Vector Layer
Select GRASS Raster Layer
Select GRASS mapcalc schema
Select GRASS Mapset
Warning
Cannot open vector on level 2 (topology not available).
Choose existing GISDBASE
Wrong GISDBASE, no locations available.
Wrong GISDBASE
Select a map.
No map
No layer
No layers available in this map
QgsGrassSelectBase
Add GRASS Layer
Gisdbase
Location
Mapset
Select or type map name (wildcards '*' and '?' accepted for rasters)
Map name
Layer
Browse
Cancel
OK
QgsGrassShell
Ctrl+Shift+V
Ctrl+Shift+C
Warning
Cannot rename the lock file %1
QgsGrassTools
GRASS Tools
GRASS Tools: %1/%2
Browser
Cannot start command shell (%1)
Warning
GRASS Shell is not compiled.
The config file (%1) not found.
Cannot open config file (%1).
Cannot read config file (%1):
%1
at line %2 column %3
QgsGrassToolsBase
Grass Tools
Modules Tree
1
Modules List
QgsHelpViewer
This help file does not exist for your language:<p><b>%1</b><p>If you would like to create it, contact the QGIS development team
Quantum GIS Help
Quantum GIS Help - %1
Error
Failed to get the help text from the database:
%1
The QGIS help database is not installed
QgsHelpViewerBase
QGIS Help
&Close
Alt+C
&Home
Alt+H
&Forward
Alt+F
&Back
Alt+B
QgsHttpTransaction
WMS Server responded unexpectedly with HTTP Status Code %1 (%2)
Received %1 of %2 bytes
Received %1 bytes (total unknown)
HTTP response completed, however there was an error: %1
HTTP transaction completed, however there was an error: %1
Not connected
Looking up '%1'
Connecting to '%1'
Sending request '%1'
Receiving reply
Response is complete
Closing down connection
Network timed out after %n second(s) of inactivity.
This may be a problem in your network connection or at the WMS server.
inactivity timeout
QgsIDWInterpolatorDialogBase
Dialog
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'Sans Serif'; font-size:12pt; font-weight:400; font-style:normal;">
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Inverse Distance Weighting</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">The only parameter for the IDW interpolation method is the coefficient that describes the decrease of weights with distance.</span></p></body></html>
Distance coefficient P:
QgsIdentifyResults
Feature
Value
(Derived)
Run action
Identify Results - %1
Copy attribute value
Copy feature attributes
QgsIdentifyResultsBase
Identify Results
Help
F1
Close
QgsInterpolationDialog
Triangular interpolation (TIN)
Inverse Distance Weighting (IDW)
No input data for interpolation
Please add one or more input layers
Output file name invalid
Please enter a valid output file name
Break lines
Structure lines
Points
Save interpolated raster as...
QgsInterpolationDialogBase
Interpolation plugin
Input
Use z-Coordinate for interpolation
Output
Interpolation method
...
Number of columns
Number of rows
Output file
Vector layers:
Interpolation attribute:
Add
Remove
Vector layer
Attribute
Type
QgsInterpolationPlugin
&Interpolation
QgsItemPositionDialogBase
Set item position
Item reference point
Coordinates
x:
y:
Set Position
Close
QgsLUDialogBase
Enter class bounds
Lower value
Upper value
-
QgsLabelDialog
Auto
QgsLabelDialogBase
Form1
Field containing label
Default label
General
Buffer
Position
Data defined style
Data defined alignment
Data defined buffer
Data defined position
Preview:
QGIS Rocks!
Font
%
Color
Angle (deg)
°
Placement
Below Right
Right
Below
Over
Above
Left
Below Left
Above Right
Above Left
Font size units
Points
Map units
Use scale dependent rendering
Maximum
Minimum
Minimum scale at which this layer will be displayed.
Maximum scale at which this layer will be displayed.
Multiline labels?
Buffer labels?
Buffer size
Transparency
Buffer size units
Size is in points
Size is in map units
X Offset (pts)
Y Offset (pts)
Offset units
&Font family
&Bold
&Italic
&Underline
&Size
Size units
&Color
Transparency:
Size:
X Coordinate
Y Coordinate
Font size
QgsLegend
group
&Make to toplevel item
&Remove
Re&name
&Add group
&Expand all
&Collapse all
Show file groups
No Layer Selected
To open an attribute table, you must select a vector layer in the legend
Stop editing
Do you want to save the changes to layer %1?
QgsLegendLayer
&Zoom to layer extent
&Zoom to best scale (100%)
&Show in overview
&Remove
&Open attribute table
Save as shapefile...
Save selection as shapefile...
&Properties
Multiple layers
This item contains multiple layers. Displaying multiple layers in the table is not supported.
QgsLegendLayerFile
Save layer as...
Select the coordinate reference system for the saved shapefile. The data points will be transformed from the layer coordinate reference system.
Saving done
Export to Shapefile has been completed
Driver not found
ESRI Shapefile driver is not available
Error creating shapefile
The shapefile could not be created (%1)
Error
Layer creation failed
Layer attribute table contains unsupported datatype(s)
&Zoom to layer extent
&Show in overview
&Remove
&Open attribute table
Save as shapefile...
Save selection as shapefile...
&Properties
Creation of an attribute failed
QgsLinearlyScalingDialog
Millimeter
Map units
QgsLinearlyScalingDialogBase
Form
Scale linearly between 0 and the following attribute value/ diagram size:
find maximum Value:
Size:
Size unit:
QgsMapCanvas
Could not draw %1 because:
%2
COMMENTED OUT
Could not draw %1 because:
%2
QgsMapLayer
%1 at line %2 column %3
style not found in database
Loading style file %1 failed because:
%2
Could not save symbology because:
%1
The directory containing your dataset needs to be writeable!
Created default style file as %1
ERROR: Failed to created default style file as %1. Check file permissions and retry.
User database could not be opened.
The style table could not be created.
The style %1 was saved to database
The style %1 was updated in the database.
The style %1 could not be updated in the database.
The style %1 could not be inserted into database.
QgsMapToolAddFeature
Not a vector layer
The current layer is not a vector layer
2.5D shape type not supported
Adding features to 2.5D shapetypes is not supported yet
Layer cannot be added to
The data provider for this layer does not support the addition of features.
Layer not editable
Cannot edit the vector layer. To make it editable, go to the file item of the layer, right click and check 'Allow Editing'.
Wrong editing tool
Cannot apply the 'capture point' tool on this vector layer
Coordinate transform error
Cannot transform the point to the layers coordinate system
Cannot apply the 'capture line' tool on this vector layer
Cannot apply the 'capture polygon' tool on this vector layer
Error
Cannot add feature. Unknown WKB type
Could not remove polygon intersection
Feature added
QgsMapToolAddIsland
Not a vector layer
The current layer is not a vector layer
Layer not editable
Cannot edit the vector layer. To make it editable, go to the file item of the layer, right click and check 'Allow Editing'.
Error, could not add island
Coordinate transform error
Cannot transform the point to the layers coordinate system
Island added
QgsMapToolAddRing
Not a vector layer
The current layer is not a vector layer
Layer not editable
Cannot edit the vector layer. To make it editable, go to the file item of the layer, right click and check 'Allow Editing'.
Coordinate transform error
Cannot transform the point to the layers coordinate system
A problem with geometry type occured
The inserted Ring is not closed
The inserted Ring is not a valid geometry
The inserted Ring crosses existing rings
The inserted Ring is not contained in a feature
An unknown error occured
Error, could not add ring
Ring added
QgsMapToolAddVertex
Added vertex
QgsMapToolDeletePart
Delete part
This isn't a multipart geometry.
Couldn't remove the selected part.
Part of multipart feature deleted
QgsMapToolDeleteRing
Ring deleted
QgsMapToolDeleteVertex
Vertex deleted
QgsMapToolIdentify
No active layer
To identify features, you must choose an active layer by clicking on its name in the legend
Band
(clicked coordinate)
WMS identify result for %1:
%2
Length
Area
action
No features found
No features were found in the active layer at the point you clicked
%1 - %n feature(s) found
Identify results window title
Could not draw %1 because:
%2
COMMENTED OUT
Could not identify objects on %1 because:
%2
Attribute changed
firstX
attributes get sorted; translation for lastX should be lexically larger than this one
firstY
lastX
attributes get sorted; translation for firstX should be lexically smaller than this one
lastY
QgsMapToolMoveFeature
Layer not editable
Cannot edit the vector layer. To make it editable, go to the file item of the layer, right click and check 'Allow Editing'.
Feature moved
QgsMapToolMoveVertex
Vertex moved
QgsMapToolNodeTool
Node tool
Feature was deleted on background.
Inserted vertex
QgsMapToolSelect
No active layer
To select features, you must choose a vector layer by clicking on its name in the legend
CRS Exception
Selection extends beyond layer's coordinate system.
QgsMapToolSimplify
Unsupported operation
Multipart features are not supported for simplification.
Geometry simplified
This feature cannot be simplified. Check if feature has enough vertices to be simplified.
QgsMapToolSplitFeatures
Not a vector layer
The current layer is not a vector layer
Layer not editable
Cannot edit the vector layer. To make it editable, go to the file item of the layer, right click and check 'Allow Editing'.
Coordinate transform error
Cannot transform the point to the layers coordinate system
No feature split done
If there are selected features, the split tool only applies to the selected ones. If you like to split all features under the split line, clear the selection
Split error
An error occured during feature splitting
Features split
QgsMapToolVertexEdit
Snap tolerance
Don't show this message again
Could not snap segment.
Have you set the tolerance in Settings > Project Properties > General?
QgsMapserverExport
Overwrite File?
%1 exists.
Do you want to overwrite it?
QgsMapserverExportBase
Export to Mapserver
Web Interface Definition
Template
Path to the MapServer template file
Browse...
Header
Footer
Map
Units
Image type
gif
gtiff
jpeg
png
swf
userdefined
wbmp
Width
Height
Name
Prefix attached to map, scalebar and legend GIF filenames created using this MapFile
Map file
Name for the map file to be created from the QGIS project file
Full path to the QGIS project file to export to MapServer map format
QGIS project file
Save As...
If checked, only the layer information will be processed
Export LAYER information only
&Help
F1
&OK
&Cancel
...
MinScale
MaxScale
Prefix attached to map, scalebar and legend GIF filenames created using this MapFile. It should be kept short.
QgsMeasureBase
Measure
Total:
Segments
Help
New
Cl&ose
QgsMeasureDialog
Segments (in meters)
Segments (in feet)
Segments (in degrees)
Segments
QgsMeasureTool
Incorrect measure results
<p>This map is defined with a geographic coordinate system (latitude/longitude) but the map extents suggests that it is actually a projected coordinate system (e.g., Mercator). If so, the results from line or area measurements will be incorrect.</p><p>To fix this, explicitly set an appropriate map coordinate system using the <tt>Settings:Project Properties</tt> menu.
QgsMergeAttributesDialog
Id
Merge
feature %1
Minimum
Maximum
Median
Concatenation
Mean
QgsMergeAttributesDialogBase
Merge feature attributes
Take attributes from selected feature
Remove feature from selection
QgsMessageViewer
QGIS Message
Don't show this message again
Close
QgsNewConnection
prefer
require
allow
disable
Test connection
Connection to %1 was successful
Connection failed - Check settings and try again.
Extended error information:
%1
QgsNewConnectionBase
Create a New PostGIS connection
Connection Information
Restrict the search to the public schema for spatial tables not in the geometry_columns table
When searching for spatial tables that are not in the geometry_columns tables, restrict the search to tables that are in the public schema (for some databases this can save lots of time)
Only look in the 'public' schema
Restrict the displayed tables to those that are in the geometry_columns table
Restricts the displayed tables to those that are in the geometry_columns table. This can speed up the initial display of spatial tables.
Only look in the geometry_columns table
Save Password
Test Connect
Name
Host
Database
Port
Username
Password
SSL mode
Name of the new connection
5432
OK
Cancel
Help
F1
QgsNewHttpConnectionBase
Create a new WMS connection
Connection details
Name
Name of the new connection
URL
HTTP address of the Web Map Server
If the WMS requires basic authentication, enter a user name and optional password
User name
Password
QgsNewOgrConnection
Test connection
Connection failed - Check settings and try again.
Extended error information:
%1
Connection to %1 was successful
QgsNewOgrConnectionBase
Create a New OGR Database connection
Connection Information
Save Password
Test Connect
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;">
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Type</span></p></body></html>
Name
Host
Database
Port
Username
Password
Name of the new connection
OK
Cancel
Help
F1
QgsNorthArrowPlugin
Bottom Left
Top Left
Top Right
Bottom Right
&North Arrow
Creates a north arrow that is displayed on the map canvas
&Decorations
North arrow pixmap not found
QgsNorthArrowPluginGui
Pixmap not found
QgsNorthArrowPluginGuiBase
North Arrow Plugin
Properties
Angle
Placement
Set direction automatically
Enable North Arrow
Placement on screen
Top Left
Top Right
Bottom Left
Bottom Right
Preview of north arrow
Icon
Browse...
QgsOGRSublayersDialogBase
Select OGR layers to load
Sub layers list
1
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'DejaVu Sans'; font-size:9pt; font-weight:400; font-style:normal;">
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif';">This is the list of all layers available in the datasource of the active layer. You can select the layers to load. The layers will be loaded when you press "OK".</p>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif';"></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif';">The layer name is format dependent. Consult the OGR documentation or the documentation of your data format to determine the nature of the included information.</p>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif';"></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif';"><span style=" font-weight:600;">Be advised: </span>selecting an already opened layer will not generate an error message and the layer will end up loaded twice!</p></body></html>
QgsOSMDataProvider
Open Street Map format
QgsOgrProvider
Integer
Real
String
QgsOpenVectorLayerDialog
Open an OGR Supported Vector Layer
Open Directory
Are you sure you want to remove the %1 connection and all associated settings?
Confirm Delete
Password for
Please enter your password:
QgsOpenVectorLayerDialogBase
Add vector layer
Source type
File
Directory
Database
Protocol
Encoding :
BIG5
BIG5-HKSCS
EUCJP
EUCKR
GB2312
GBK
GB18030
JIS7
SHIFT-JIS
TSCII
UTF-8
UTF-16
KOI8-R
KOI8-U
ISO8859-1
ISO8859-2
ISO8859-3
ISO8859-4
ISO8859-5
ISO8859-6
ISO8859-7
ISO8859-8
ISO8859-8-I
ISO8859-9
ISO8859-10
ISO8859-11
ISO8859-12
ISO8859-13
ISO8859-14
ISO8859-15
IBM 850
IBM 866
CP874
CP1250
CP1251
CP1252
CP1253
CP1254
CP1255
CP1256
CP1257
CP1258
Apple Roman
TIS-620
Type
URI
Source
Dataset
Browse
Connections
New
Edit
Delete
QgsOptions
Detected active locale on your system: %1
to vertex
to segment
to vertex and segment
map units
pixels
Semi transparent circle
Cross
None
Central point (fastest)
Chain (fast)
Popmusic tabu chain (slow)
Popmusic tabu (slow)
Popmusic chain (very slow)
QgsOptionsBase
QGIS Options
&General
Project files
Prompt to save project changes when required
Warn when opening a project file saved with an older version of QGIS
Default Map Appearance (overridden by project properties)
Selection color
Background color
&Application
Icon theme
<b>Note: </b>Theme changes take effect the next time QGIS is started
Capitalise layer names in legend
Display classification attribute names in legend
Hide splash screen at startup
Open attribute table in a dock window
&Rendering
Rendering behavior
By default new la&yers added to the map should be displayed
Number of features to draw before updating the display
Map display will be updated (drawn) after this many features have been read from the data source
<b>Note:</b> Use zero to prevent display updates until all features have been rendered
Rendering quality
Make lines appear less jagged at the expense of some drawing performance
Selecting this will unselect the 'make lines less' jagged toggle
Fix problems with incorrectly filled polygons
&Map tools
Panning and zooming
Zoom
Zoom and recenter
Zoom to mouse cursor
Nothing
Zoom factor
Mouse wheel action
Measure tool
Rubberband color
Ellipsoid for distance calculations
Search radius
<b>Note:</b> Specify the search radius as a percentage of the map width
Search radius for identifying features and displaying map tips
%
Overlay
Position
Placement algorithm:
Digitizing
Rubberband
Line width
Line width in pixels
Line colour
Snapping
Default snap mode
Default snapping tolerance in layer units
Search radius for vertex edits in layer units
map units
pixels
Vertex markers
Marker style
Enter attribute values
Suppress attributes pop-up windows after each created feature
CRS
Select Global Default ...
When layer is loaded that has no coordinate reference system (CRS)
Prompt for CRS
Project wide default CRS will be used
Global default CRS displa&yed below will be used
Locale
Override system locale
Locale to use instead
<b>Note:</b> Enabling / changing overide on local requires an application restart
Additional Info
Detected active locale on your system:
Proxy
Use proxy for web access
Host
Port
User
Leave this blank if no proxy username / password are required
Password
Proxy type
Exclude URLs:
Add
Remove
Show markers only for selected features
Add PostGIS layers with double click and select in extended mode
Preferred measurements units
Meters
Feet
QgsOraclePlugin
Select GeoRaster
Open a Oracle Spatial GeoRaster
&Oracle Spatial
QgsOracleSelectGeoraster
Are you sure you want to remove the %1 connection and all associated settings?
Confirm Delete
Password for %1/<password>@%2
Please enter your password:
Open failed
The connection to %1 failed. Please verify your connection parameters. Make sure you have the GDAL GeoRaster plugin installed.
QgsPasteTransformationsBase
Paste Transformations
<b>Note: This function is not useful yet!</b>
Source
Destination
&Help
F1
Add New Transfer
&OK
&Cancel
QgsPgGeoprocessing
&Buffer features
Create a buffer for a PostgreSQL layer. A new layer is created in the database with the buffered features.
&Geoprocessing
Buffer features in layer %1
Unable to add geometry column
Unable to add geometry column to the output table %1-%2
Unable to create table
Failed to create the output table %1
Error connecting to the database
No GEOS support
Buffer function requires GEOS support in PostGIS
Not a PostgreSQL/PostGIS Layer
%1 is not a PostgreSQL/PostGIS layer.
Geoprocessing functions are only available for PostgreSQL/PostGIS Layers
No Active Layer
You must select a layer in the legend to buffer
QgsPgQueryBuilder
Table <b>%1</b> in database <b>%2</b> on host <b>%3</b>, user <b>%4</b>
Connection Failed
Connection to the database failed:
%1
Database error
<p>Failed to get sample of field values using SQL:</p><p>%1</p><p>Error message was: %2</p>
No Query
You must create a query before you can test it
Query Result
The where clause returned %n row(s).
returned test rows
Query Failed
An error occurred when executing the query:
%1
Error in Query
No Records
The query you specified results in zero records being returned. Valid PostgreSQL layers must have at least one feature.
QgsPgQueryBuilderBase
PostgreSQL Query Builder
Datasource
Fields
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;">
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">List of fields in this vector file</p></body></html>
Values
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;">
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">List of values for the current field.</p></body></html>
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;">
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Take a <span style=" font-weight:600;">sample</span> of records in the vector file</p></body></html>
Sample
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;">
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Retrieve <span style=" font-weight:600;">all</span> the record in the vector file (<span style=" font-style:italic;">if the table is big, the operation can consume some time</span>)</p></body></html>
All
Operators
=
<
NOT
OR
AND
%
IN
NOT IN
!=
>
LIKE
ILIKE
>=
<=
SQL where clause
Clear
Test
Ok
Cancel
QgsPluginInstaller
Nothing to remove! Plugin directory doesn't exist:
Failed to remove the directory:
Check permissions or remove it manually
Couldn't parse output from the repository
Couldn't open the local plugin directory
Fetch Python Plugins...
Install more plugins from remote repositories
Looking for new plugins...
QGIS Plugin Conflict:
The Plugin Installer has detected an obsolete plugin which masks a newer version shipped with this QGIS version. This is likely due to files associated with a previous installation of QGIS. Please use the Plugin Installer to remove that older plugin in order to unmask the newer version shipped with this copy of QGIS.
There is a new plugin available
There is a plugin update available
QGIS Python Plugin Installer
Error reading repository:
QgsPluginInstallerDialog
QGIS Python Plugin Installer
Error reading repository:
all repositories
connected
This repository is connected
unavailable
This repository is enabled, but unavailable
disabled
This repository is disabled
This repository is blocked due to incompatibility with your Quantum GIS version
orphans
any status
not installed
installed
upgradeable and news
This plugin is not installed
This plugin is installed
This plugin is installed, but there is an updated version available
This plugin is installed, but I can't find it in any enabled repository
This plugin is not installed and is seen for the first time
This plugin is installed and is newer than its version available in a repository
This plugin is incompatible with your Quantum GIS version and probably won't work.
The required Python module is not installed.
For more information, please visit its homepage and Quantum GIS wiki.
This plugin seems to be broken.
It has been installed but can't be loaded.
Here is the error message:
upgradeable
new!
invalid
Note that it's an uninstallable core plugin
installed version
available version
That's the newest available version
There is no version available for download
This plugin is broken
This plugin requires a newer version of Quantum GIS
at least
This plugin requires a missing module
only locally available
Install plugin
Reinstall plugin
Upgrade plugin
Install/upgrade plugin
Downgrade plugin
Are you sure you want to downgrade the plugin to the latest available version? The installed one is newer!
Plugin installation failed
Plugin has disappeared
The plugin seems to have been installed but I don't know where. Probably the plugin package contained a wrong named directory.
Please search the list of installed plugins. I'm nearly sure you'll find the plugin there, but I just can't determine which of them it is. It also means that I won't be able to determine if this plugin is installed and inform you about available updates. However the plugin may work. Please contact the plugin author and submit this issue.
Plugin installed successfully
Python plugin installed.
Now you need to enable it in Plugin Manager.
Plugin reinstalled successfully
Python plugin reinstalled.
You need to restart Quantum GIS in order to reload it.
The plugin is designed for a newer version of Quantum GIS. The minimum required version is:
The plugin depends on some components missing on your system. You need to install the following Python module in order to enable it:
The plugin is broken. Python said:
Plugin uninstall failed
Are you sure you want to uninstall the following plugin?
Warning: this plugin isn't available in any accessible repository!
Plugin uninstalled successfully
Python plugin uninstalled. Note that you may need to restart Quantum GIS in order to remove it completely.
You are about to add several plugin repositories that are neither authorized nor supported by the Quantum GIS team. Plugin authors generally make efforts to ensure that their work is useful and safe, however, we can assume no responsibility for them.
Unable to add another repository with the same URL!
Are you sure you want to remove the following repository?
QgsPluginInstallerDialogBase
QGIS Python Plugin Installer
The plugins will be installed to ~/.qgis/python/plugins
Close the Installer window
Close
Plugins
List of available and installed plugins
Filter:
Display only plugins containing this word in their metadata
Display only plugins from given repository
all repositories
Display only plugins with matching status
Status
Name
Version
Description
Author
Repository
Install, reinstall or upgrade the selected plugin
Install/upgrade plugin
Uninstall the selected plugin
Uninstall plugin
Repositories
List of plugin repositories
URL
Add third party plugin repositories to the list
Add 3rd party repositories
Add a new plugin repository
Add...
Edit the selected repository
Edit...
Remove the selected repository
Delete
Options
Configuration of the plugin installer
Check for updates on startup
every time QGIS starts
once a day
every 3 days
every week
every 2 weeks
every month
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'DejaVu Sans'; font-size:9pt; font-weight:400; font-style:normal;">
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note:</span> If this function is enabled, Quantum GIS will inform you whenever a new plugin or plugin update is available. Otherwise, fetching repositories will be performed during opening of the Plugin Installer window.</p></body></html>
Allowed plugins
Only show plugins from the official repository
Show all plugins except those marked as experimental
Show all plugins, even those marked as experimental
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'DejaVu Sans'; font-size:9pt; font-weight:400; font-style:normal;">
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note:</span> Experimental plugins are generally unsuitable for production use. These plugins are in early stages of development, and should be considered 'incomplete' or 'proof of concept' tools. QGIS does not recommend installing these plugins unless you intend to use them for testing purposes.</p></body></html>
QgsPluginInstallerFetchingDialog
Success
Resolving host name...
Connecting...
Host connected. Sending request...
Downloading data...
Idle
Closing connection...
Error
QgsPluginInstallerFetchingDialogBase
Fetching repositories
Overall progress:
Abort fetching
Repository
State
QgsPluginInstallerInstallingDialog
Installing...
Resolving host name...
Connecting...
Host connected. Sending request...
Downloading data...
Idle
Closing connection...
Error
Failed to unzip the plugin package. Probably it's broken or missing from the repository. You may also want to make sure that you have write permission to the plugin directory:
Aborted by user
QgsPluginInstallerInstallingDialogBase
QGIS Python Plugin Installer
Installing plugin:
Connecting...
QgsPluginInstallerPluginErrorDialog
no error message received
QgsPluginInstallerPluginErrorDialogBase
Error loading plugin
The plugin seems to be invalid or have unfulfilled dependencies. It has been installed, but can't be loaded. If you really need this plugin, you can contact its author or <a href="http://lists.osgeo.org/mailman/listinfo/qgis-user">QGIS users group</a> and try to solve the problem. If not, you can just uninstall it. Here is the error message below:
Do you want to uninstall this plugin now? If you're unsure, probably you would like to do this.
QgsPluginInstallerRepositoryDetailsDialogBase
Repository details
Name:
Enter a name for the repository
URL:
Enter the repository URL, beginning with "http://"
Enable or disable the repository (disabled repositories will be omitted)
Enabled
QgsPluginManager
&Select All
&Clear All
[ incompatible ]
No Plugins
No QGIS plugins found in %1
Error
Failed to open plugin installer!
QgsPluginManagerBase
QGIS Plugin Manager
To enable / disable a plugin, click its checkbox or description
&Filter
Plugin Directory:
Directory
Plugin Installer
QgsPointDialog
Choose a name for the world file
Select GCPs file
GCPs points (*.points)
Information
GCPs was not loaded.
Linear
-modified
Georeferencer:QgsPointDialog.cpp - used to modify a user given file name
Error!
<p>Modified raster file exists! Overwrite it?</p>
World file exists
<p>The selected file already seems to have a world file! Do you want to replace it with the new world file?</p>
Helmert
Warning
<p>A Helmert transform requires modifications in the raster layer.</p><p>The modified raster will be saved in a new file and a world file will be generated for this new file instead.</p><p>Are you sure that this is what you want?</p>
Currently all modified files will be written in TIFF format.
Affine
Not implemented!
<p>An affine transform requires changing the original raster file. This is not yet supported.</p>
Polynomial 1
<p>A Polynomial transform requires changing the raster layer.</p><p>The changed raster will be saved in a new file and a world file will be generated for this new file instead.</p><p>Are you sure that this is what you want?</p>
Error
Requires at least 3 points
Polynomial 2
Requires at least 6 points
Polynomial 3
Requires at least 10 points
Thin plate spline (TPS)
<p>The %1 transform is not yet supported.</p>
Could not write to %1
Failed to compute GCP transform: Transform is not solvable.
Choose a raster file
Raster files (*.*)
The selected file is not a valid raster file.
Zoom In
z
Zoom Out
Z
Zoom To Layer
Zoom to Layer
Pan Map
Pan the map
Add Point
.
Capture Points
Delete Point
Delete Selected
QgsPointDialogBase
Reference points
Zoom in
Zoom out
Zoom to the raster extents
Pan
Add points
Delete points
Raster file:
...
Transform type:
Modified raster:
World file:
Create
Create and load layer
Close
Save GCPs
Load GCPs
QgsPostgresProvider
Unable to access relation
Unable to access the %1 relation.
The error message from the database was:
%1.
SQL: %2
Unable to determine table access privileges for the %1 relation.
No suitable key column in table
The table has no column suitable for use as a key.
Qgis requires that the table either has a column of type
int4 with a unique constraint on it (which includes the
primary key), has a PostgreSQL oid column or has a ctid
column with a 16bit block number.
The unique index on column '%1' is unsuitable because Qgis does not currently support non-int4 type columns as a key into the table.
and
The unique index based on columns %1 is unsuitable because Qgis does not currently support multiple columns as a key into the table.
Unable to find a key column
'%1' derives from '%2.%3.%4'
and is suitable.
and is not suitable (type is %1)
and has a suitable constraint)
and does not have a suitable constraint)
Note: '%1' initially appeared suitable but does not contain unique data, so is not suitable.
The view '%1.%2' has no column suitable for use as a unique key.
Qgis requires that the view has a column that can be used as a unique key. Such a column should be derived from a table column of type int4 and be a primary key, have a unique constraint on it, or be a PostgreSQL oid column. To improve performance the column should also be indexed.
The view you selected has the following columns, none of which satisfy the above conditions:
No suitable key column in view
Error while adding features
Error while deleting features
Error while adding attributes
Error while deleting attributes
Error while changing attributes
Error while changing geometry values
Unknown geometry type
Column %1 in %2 has a geometry type of %3, which Qgis does not currently support.
Qgis was unable to determine the type and srid of column %1 in %2. The database communication log was:
Unable to get feature type and srid
unexpected PostgreSQL error
smallint (16bit)
integer (32bit)
integer (64bit)
numeric
decimal
real
double
char
varchar
text
QgsPostgresProvider::Conn
No PostGIS Support!
Your database has no working PostGIS support.
No GEOS Support!
Your PostGIS installation has no GEOS support.
Feature selection and identification will not work properly.
Please install PostGIS with GEOS support (http://geos.refractions.net)
QgsProject
Unable to open %1
Project file read error: %1 at line %2 column %3
%1 for file %2
Unable to save to file %1
%1 is not writeable. Please adjust permissions (if possible) and try again.
Unable to save to file %1. Your project may be corrupted on disk. Try clearing some space on the volume and check file permissions before pressing save again.
QgsProjectPropertiesBase
Project Properties
General
Title and colors
Project title
Descriptive project name
Default project title
Selection color
Background color
Meters
Feet
Decimal degrees
Precision
Automatically sets the number of decimal places in the mouse position display
The number of decimal places that are used when displaying the mouse position is automatically set to be enough so that moving the mouse by one pixel gives a change in the position display
Automatic
Sets the number of decimal places to use for the mouse position display
Manual
The number of decimal places for the manual option
decimal places
Digitizing
Enable topological editing
Avoid intersections of new polygons
Snapping options...
Coordinate Reference System (CRS)
Enable 'on the fly' CRS transformation
save absolute paths
Layer units (only used when CRS transformation is disabled)
QgsProjectionSelector
User Defined Coordinate Systems
Geographic Coordinate Systems
Projected Coordinate Systems
Resource Location Error
Error reading database file from:
%1
Because of this the projection selector will not work...
QgsProjectionSelectorBase
Coordinate Reference System Selector
Coordinate Reference System
EPSG
ID
Search
EPSG ID
Name
Find
QgsPythonDialog
Python console
&Execute
&Previous
&Next
To access Quantum GIS environment from this python console use object from global scope which is an instance of QgisInterface class.<br>Usage e.g.: iface.zoomFull()
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;">
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html>
>>>
QgsQuickPrint
Please wait while your report is generated
COMMENTED OUT
km
mm
cm
m
miles
mile
inches
foot
feet
degree
degrees
unknown
QgsRasterLayer
Not Set
QgsRasterLayer created
%1 and all other files (*)
Retrieving stats for %1
Calculating stats for %1
Average Magphase
Average
Retrieving using %1
out of extent
null (no data)
Driver:
Dataset Description
Band %1
Dimensions:
X: %1 Y: %2 Bands: %3
No Data Value
NoDataValue not set
Data Type:
GDT_Byte - Eight bit unsigned integer
GDT_UInt16 - Sixteen bit unsigned integer
GDT_Int16 - Sixteen bit signed integer
GDT_UInt32 - Thirty two bit unsigned integer
GDT_Int32 - Thirty two bit signed integer
GDT_Float32 - Thirty two bit floating point
GDT_Float64 - Sixty four bit floating point
GDT_CInt16 - Complex Int16
GDT_CInt32 - Complex Int32
GDT_CFloat32 - Complex Float32
GDT_CFloat64 - Complex Float64
Could not determine raster data type.
Pyramid overviews:
Layer Spatial Reference System:
Project Spatial Reference System:
Origin:
Pixel Size:
Band
Band No
No Stats
No stats collected yet
Min Val
Max Val
Range
Mean
Sum of squares
Standard Deviation
Sum of all cells
Cell Count
QgsRasterLayerProperties
Not Set
Grayscale
Pseudocolor
Freak Out
Colormap
No Stretch
Stretch To MinMax
Stretch And Clip To MinMax
Clip To MinMax
Discrete
Linear
Exact
Equal interval
Description
Large resolution raster layers can slow navigation in QGIS.
By creating lower resolution copies of the data (pyramids) performance can be considerably improved as QGIS selects the most suitable resolution to use depending on the level of zoom.
You must have write access in the directory where the original data is stored to build pyramids.
Please note that building internal pyramids may alter the original data file and once created they cannot be removed!
Please note that building internal pyramids could corrupt your image - always make a backup of your data first!
Red
Green
Blue
Percent Transparent
Gray
Indexed Value
Note: Minimum Maximum values are estimates or user defined
Note: Minimum Maximum values are actual values computed from the band(s)
<h3>Multiband Image Notes</h3><p>This is a multiband image. You can choose to render it as grayscale or color (RGB). For color images, you can associate bands to colors arbitarily. For example, if you have a seven band landsat image, you may choose to render it as:</p><ul><li>Visible Blue (0.45 to 0.52 microns) - not mapped</li><li>Visible Green (0.52 to 0.60 microns) - not mapped</li></li>Visible Red (0.63 to 0.69 microns) - mapped to red in image</li><li>Near Infrared (0.76 to 0.90 microns) - mapped to green in image</li><li>Mid Infrared (1.55 to 1.75 microns) - not mapped</li><li>Thermal Infrared (10.4 to 12.5 microns) - not mapped</li><li>Mid Infrared (2.08 to 2.35 microns) - mapped to blue in image</li></ul>
COMMENTED OUT
<h3>Paletted Image Notes</h3> <p>This image uses a fixed color palette. You can remap these colors in different combinations e.g.</p><ul><li>Red - blue in image</li><li>Green - blue in image</li><li>Blue - green in image</li></ul>
COMMENTED OUT
<h3>Grayscale Image Notes</h3> <p>You can remap these grayscale colors to a pseudocolor image using an automatically generated color ramp.</p>
COMMENTED OUT
User Defined
Default R:%1 G:%2 B:%3
Columns: %1
Rows: %1
No-Data Value: %1
No-Data Value: Not Set
Columns:
n/a
Rows:
No-Data Value:
Write access denied
Write access denied. Adjust the file permissions and try again.
Building pyramids failed.
The file was not writeable. Some formats do not support pyramid overviews. Consult the GDAL documentation if in doubt.
Building pyramid overviews is not supported on this type of raster.
Save file
Textfile (*.txt)
QGIS Generated Transparent Pixel Value Export File
Write access denied. Adjust the file permissions and try again.
Open file
Import Error
The following lines contained errors
%1
Read access denied
Read access denied. Adjust the file permissions and try again.
Color Ramp
Quantiles
Custom color map entry
QGIS Generated Color Map Export File
Load Color Map
The color map for band %1 failed to load
The following lines contained errors
Default Style
QGIS Layer Style File (*.qml)
Saved Style
QGIS
Unknown style format: %1
Building internal pyramid overviews is not supported on raster layers with JPEG compression and your current libtiff library.
QgsRasterLayerPropertiesBase
Raster Layer Properties
Symbology
Render as
Single band gray
Three band color
Invert color map
RGB mode band selection and scaling
Red band
Green band
Blue band
...
Default R:1 G:2 B:3
Custom min / max values
Red min
Red max
Green min
Green max
Blue min
Blue max
Use standard deviation
Single band properties
Gray band
Color map
Min
Max
Note:
Load min / max values from band
Estimate (faster)
Actual (slower)
Load
Contrast enhancement
Current
Save current contrast enhancement algorithm as default. This setting will be persistent between QGIS sessions.
Saves current contrast enhancement algorithm as a default. This setting will be persistent between QGIS sessions.
Default
TextLabel
Transparency
Global transparency
None
00%
<p align="right">Full</p>
No data value
Reset no data value
Custom transparency options
Transparency band
Transparent pixel list
Add values manually
Add Values from display
Remove selected row
Default values
Import from file
Export to file
Colormap
Color interpolation
Add entry
Delete entry
Sort
Load color map from band
Load color map from file
Export color map to file
1
2
Generate new color map
Number of entries
Classification mode
Classify
General
Display name
Layer source
Columns:
Rows:
No Data:
Scale dependent visibility
Maximum scale at which this layer will be displayed.
Maximum
Minimum scale at which this layer will be displayed.
Minimum
Coordinate reference system
Thumbnail
Legend
Palette
Metadata
Pyramids
Notes
Pyramid resolutions
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'DejaVu Sans'; font-size:9pt; font-weight:400; font-style:normal;">
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif';"></p></body></html>
Build pyramids internally if possible
Resampling method
Average
Nearest Neighbour
Build pyramids
Histogram
Chart Type
Line graph
Bar chart
Options
Column count
Out of range OK?
Allow approximation
Refresh
Restore Default Style
Save As Default
Load Style ...
Save Style ...
Specify the coordinate reference system of the layer's geometry.
Specify...
QgsRunProcess
<b>Starting %1...</b>
Action
Unable to run command
%1
Done
Unable to run command %1
QgsSVGDiagramFactoryWidget
Select svg file
Select new preview directory
Creating icon for file %1
QgsSVGDiagramFactoryWidgetBase
Form
Search directories
Add...
Remove
SVG Preview
Browse...
QgsScaleBarPlugin
Bottom Left
Top Left
Top Right
Bottom Right
Tick Down
Tick Up
Bar
Box
&Scale Bar
Creates a scale bar that is displayed on the map canvas
&Decorations
metres/km
feet/miles
degrees
km
mm
cm
m
miles
mile
inches
foot
feet
degree
unknown
QgsScaleBarPluginGuiBase
Scale Bar Plugin
Click to select the colour
Size of bar:
Automatically snap to round number on resize
Colour of bar:
Top Left
Top Right
Bottom Left
Bottom Right
Enable scale bar
Scale bar style:
Select the style of the scale bar
Tick Down
Tick Up
Box
Bar
Placement:
<html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:Sans Serif; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This plugin draws a scale bar on the map. Please note the size option below is a 'preferred' size and may have to be altered by QGIS depending on the level of zoom. The size is measured according to the map units specified in the project properties.</p></body></html>
QgsSearchQueryBuilder
Search query builder
Search results
Found %n matching feature(s).
test result
Search string parsing error
No Records
The query you specified results in zero records being returned.
QgsServerSourceSelect
Are you sure you want to remove the %1 connection and all associated settings?
Confirm Delete
WMS Password for %1
WMS Provider
Could not open the WMS Provider
Select Layer
You must select at least one leaf layer first.
Coordinate Reference System
There are no available coordinate reference system for the set of layers you've selected.
Coordinate Reference System (%n available)
crs count
Could not understand the response. The %1 provider said:
%2
COMMENTED OUT
Could not understand the response. The %1 provider said:
%2
WMS proxies
Several WMS servers have been added to the server list. Note that if you access the internet via a web proxy, you will need to set the proxy settings in the QGIS options dialog.
The %1 connection already exists. Do you want to overwrite it?
Confirm Overwrite
QgsServerSourceSelectBase
Add Layer(s) from a Server
Servers
C&onnect
&New
Edit
Delete
Adds a few example WMS servers
Add default servers
ID
Name
Title
Abstract
Server Search
Search
URL
Description
Add selected row to WMS list
Image encoding
Coordinate Reference System
Change ...
Help
F1
&Add
Alt+A
C&lose
Alt+L
Ready
Layer Order
Layer
Style
QgsShapeFile
Scanning
The database gave an error while executing this SQL:
%1
The error was:
%2
The database gave an error while executing this SQL:
... (rest of SQL trimmed)
is appended to a truncated SQL statement
The error was:
%1
QgsSingleSymbolDialog
Solid Line
Dash Line
Dot Line
Dash Dot Line
Dash Dot Dot Line
No Pen
Solid
Horizontal
Vertical
Cross
BDiagonal
FDiagonal
Diagonal X
Dense1
Dense2
Dense3
Dense4
Dense5
Dense6
Dense7
No Brush
Texture
Refresh markers
QgsSingleSymbolDialogBase
Single Symbol
Label
Point Symbol
Rotation field
Area scale field
Size
Style Options
Outline style
Outline color
Outline width
Fill color
Fill style
...
Symbol field
Size in map units
QgsSnappingDialog
to vertex
to segment
to vertex and segment
map units
pixels
QgsSnappingDialogBase
Snapping options
Layer
Mode
Tolerance
Units
QgsSpatiaLiteProvider
SQLite error: %1
SQL: %2
BLOB
Text
Double
Integer
QgsSpatiaLiteProvider::SqliteHandles
Failure while connecting to: %1
%2
QgsSpatiaLiteSourceSelect
Wildcard
RegExp
All
Table
Type
Geometry column
SpatiaLite DB Open Error
Failure while connecting to: %1
%2
seems to be a valid SQLite DB, but not a SpatiaLite's one ...
unknown error cause
@
Choose a SpatiaLite/SQLite DB to open
Are you sure you want to remove the %1 connection and all associated settings?
Confirm Delete
Select Table
You must select a table in order to add a Layer.
SpatiaLite getTableInfo Error
Failure exploring tables from: %1
%2
QgsSpatiaLiteSourceSelectBase
Add SpatiaLite Table(s)
SpatiaLite DBs
Delete
New
Connect
Help
F1
Add
Close
Search:
Search mode:
Search in columns:
Search options...
QgsSpatiaLiteTableModel
Table
Type
Geometry column
Point
Multipoint
Line
Multiline
Polygon
Multipolygon
QgsSpit
File Name
Feature Class
Features
DB Relation Name
Schema
Are you sure you want to remove the [%1] connection and all associated settings?
Confirm Delete
Add Shapefiles
Shapefiles (*.shp);;All files (*.*)
The following Shapefile(s) could not be loaded:
REASON: File cannot be opened
REASON: One or both of the Shapefile files (*.dbf, *.shx) missing
General Interface Help:
PostgreSQL Connections:
[New ...] - create a new connection
[Edit ...] - edit the currently selected connection
[Remove] - remove the currently selected connection
-you need to select a connection that works (connects properly) in order to import files
-when changing connections Global Schema also changes accordingly
Shapefile List:
[Add ...] - open a File dialog and browse to the desired file(s) to import
[Remove] - remove the currently selected file(s) from the list
[Remove All] - remove all the files in the list
[SRID] - Reference ID for the shapefiles to be imported
[Use Default (SRID)] - set SRID to -1
[Geometry Column Name] - name of the geometry column in the database
[Use Default (Geometry Column Name)] - set column name to 'the_geom'
[Global Schema] - set the schema for all files to be imported into
[Import] - import the current shapefiles in the list
[Quit] - quit the program
[Help] - display this help dialog
Import Shapefiles
You need to specify a Connection first
Password for %1
Please enter your password:
Connection failed - Check settings and try again
PostGIS not available
<p>The chosen database does not have PostGIS installed, but this is required for storage of spatial data.</p>
You need to add shapefiles to the list first
Importing files
Cancel
Progress
Problem inserting features from file:
%1
Invalid table name.
%1
No fields detected.
%1
The following fields are duplicates:
%2
Importing files
%1
%1
<p>Error while executing the SQL:</p><p>%2</p><p>The database said:%3</p>
Import Shapefiles - Relation Exists
The Shapefile:
%1
will use [%2] relation for its data,
which already exists and possibly contains data.
To avoid data loss change the "DB Relation Name"
for this Shapefile in the main dialog file list.
Do you want to overwrite the [%2] relation?
%1 of %2 shapefiles could not be imported.
QgsSpitBase
SPIT - Shapefile to PostGIS Import Tool
PostgreSQL Connections
Edit the current PostGIS connection
Edit
Remove the current PostGIS connection
Remove
Create a new PostGIS connection
New
Connect to PostGIS
Connect
Import options and shapefile list
Add a shapefile to the list of files to be imported
Add
Remove the selected shapefile from the import list
Remove all the shapefiles from the import list
Remove All
Set the SRID to the default value
Use Default SRID or specify here
Set the geometry column name to the default value
Use Default Geometry Column Name or specify here
Primary Key Column Name
Global Schema
QgsSpitPlugin
&Import Shapefiles to PostgreSQL
Import shapefiles into a PostGIS-enabled PostgreSQL database. The schema and field names can be customized on import
&Spit
QgsTINInterpolatorDialog
Linear interpolation
Save triangulation to file
QgsTINInterpolatorDialogBase
Triangle based interpolation
Interpolation method:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'DejaVu Sans'; font-size:9pt; font-weight:400; font-style:normal;">
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:12pt;">This interpolator provides different methods for interpolation in a triangular irregular network (TIN).</p></body></html>
Export triangulation to shapefile after interpolation
...
QgsUniqueValueDialog
Confirm Delete
The classification field was changed from '%1' to '%2'.
Should the existing classes be deleted before classification?
default
QgsUniqueValueDialogBase
Form1
Classification field
Classify
Add class
Delete classes
Randomize Colors
Reset Colors
Restrict changes to common properties
QgsVectorLayer
Unknown renderer
No renderer object
Classification field not found
ERROR: no provider
ERROR: layer not editable
SUCCESS: %n attribute(s) deleted.
deleted attributes count
ERROR: %n attribute(s) not deleted.
not deleted attributes count
SUCCESS: %n attribute(s) added.
added attributes count
ERROR: %n new attribute(s) not added
not added attributes count
SUCCESS: attribute %1 was added.
ERROR: attribute %1 not added
SUCCESS: %n attribute value(s) changed.
changed attribute values count
ERROR: %n attribute value change(s) not applied.
not changed attribute values count
SUCCESS: %n feature(s) added.
added features count
ERROR: %n feature(s) not added.
not added features count
SUCCESS: %n geometries were changed.
changed geometries count
ERROR: %n geometries not changed.
not changed geometries count
SUCCESS: %n feature(s) deleted.
deleted features count
ERROR: %n feature(s) not deleted.
not deleted features count
QgsVectorLayerProperties
id
name
type
length
precision
comment
edit widget
Name conflict
The attribute could not be inserted. The name already exists in the table.
Transparency: %1%
Single Symbol
Graduated Symbol
Continuous Color
Unique Value
This button opens the PostgreSQL query builder and allows you to create a subset of features to display on the map canvas rather than displaying all features in the layer
The query used to limit the features in the layer is shown here. This is currently only supported for PostgreSQL layers. To enter or modify the query, click on the Query Builder button
Spatial Index
Creation of spatial index successful
Creation of spatial index failed
General:
Layer comment: %1
Storage type of this layer: %1
Source for this layer: %1
Geometry type of the features in this layer: %1
The number of features in this layer: %1
Editing capabilities of this layer: %1
Extents:
In layer spatial reference system units :
xMin,yMin %1,%2 : xMax,yMax %3,%4
In project spatial reference system units :
Layer Spatial Reference System:
Project (Output) Spatial Reference System:
(Invalid transformation of layer extents)
Attribute field info:
Field
Type
Length
Precision
Comment
Default Style
Load layer properties from style file (.qml)
QGIS Layer Style File (*.qml)
Saved Style
QGIS
Unknown style format: %1
Save layer properties as style file (.qml)
alias
Added attribute
Deleted attribute
Enumeration
Immutable
Line edit
Unique values
Unique values editable
Classification
Value map
Edit range
Slider range
File name
QgsVectorLayerPropertiesBase
Layer Properties
Restore Default Style
Save As Default
Load Style ...
Save Style ...
General
Options
Display name
Display field for the Identify Results dialog box
This sets the display field for the Identify Results dialog box
Display field
Use this control to set which field is placed at the top level of the Identify Results dialog box.
Create Spatial Index
Use scale dependent rendering
Maximum
Minimum
Minimum scale at which this layer will be displayed.
Maximum scale at which this layer will be displayed.
Subset
Query Builder
Symbology
Legend type
Transparency
Metadata
Labels
Display labels
Actions
Attributes
New column
Ctrl+N
Delete column
Ctrl+X
Toggle editing mode
Click to toggle table editing
Specify the coordinate reference system of the layer's geometry.
Specify CRS
QgsWFSData
Loading WFS data
Abort
QgsWFSPlugin
&Add WFS layer
QgsWFSProvider
unknown
received %1 bytes from %2
QgsWFSSourceSelect
Are you sure you want to remove the %1 connection and all associated settings?
Confirm Delete
QgsWFSSourceSelectBase
Add WFS Layer from a Server
Title
Name
Abstract
Coordinate Reference System
Change ...
Server Connections
&New
Delete
Edit
C&onnect
QgsWKNDiagramFactoryWidgetBase
Form
Attributes:
1
Remove attribute
Add attribute
QgsWmsProvider
HTTP Exception
Tried URL:
WMS Service Exception
Tried URL: %1
Dom Exception
Could not get WMS capabilities: %1 at line %2 column %3
This is probably due to an incorrect WMS Server URL.
Could not get WMS capabilities in the expected format (DTD): no %1 or %2 found
Could not get WMS Service Exception at %1: %2 at line %3 column %4
Request contains a Format not offered by the server.
Request contains a CRS not offered by the server for one or more of the Layers in the request.
Request contains a SRS not offered by the server for one or more of the Layers in the request.
GetMap request is for a Layer not offered by the server, or GetFeatureInfo request is for a Layer not shown on the map.
Request is for a Layer in a Style not offered by the server.
GetFeatureInfo request is applied to a Layer which is not declared queryable.
GetFeatureInfo request contains invalid X or Y value.
Value of (optional) UpdateSequence parameter in GetCapabilities request is equal to current value of service metadata update sequence number.
Value of (optional) UpdateSequence parameter in GetCapabilities request is greater than current value of service metadata update sequence number.
Request does not include a sample dimension value, and the server did not declare a default value for that dimension.
Request contains an invalid sample dimension value.
Request is for an optional operation that is not supported by the server.
(No error code was reported)
(Unknown error code)
The WMS vendor also reported:
Server Properties:
Property
Value
WMS Version
Title
Abstract
Keywords
Online Resource
Contact Person
Fees
Access Constraints
Image Formats
Identify Formats
Layer Count
GetFeatureInfoUrl
Layer Properties:
Selected
Yes
No
Visibility
Visible
Hidden
n/a
Can Identify
Can be Transparent
Can Zoom In
Cascade Count
Fixed Width
Fixed Height
WGS 84 Bounding Box
Available in style
Name
Layer cannot be queried.
QuickPrintGui
Portable Document Format (*.pdf)
quickprint
Unknown format: %1
QuickPrintGuiBase
QGIS Quick Print Plugin
Note: If you want more control over the map layout please use the map composer function in QGIS.
Output
Use last filename but incremented.
last used filename but incremented will be shown here
Prompt for file name
Page Size
Copyright
Map Name e.g. Water Features
Map Title e.g. ACME inc.
Quick Print
QuickPrintPlugin
Quick Print
Provides a way to quickly produce a map with minimal user input.
&Quick Print
SelectGeoRasterBase
Select Oracle Spatial GeoRaster
Server Connections
C&onnect
Edit
Delete
&New
Selection
Update
Ready
&Select
Alt+A
Subdatasets
Help
F1
C&lose
Alt+L
SelectionFeature
Node tool
Result geometry is invalid. Reverting last changes.
SimplifyLineDialog
Simplify line tolerance
Set tolerance
OK
UndoWidget
Undo/Redo
Undo
Redo
VisualDialog
Please specify input vector layer
Please specify input field
Check geometry validity
Geometry errors
Total encountered errors
List unique values
Unique values
Total unique values
Basics statistics
Statistics output
Nearest neighbour analysis
Nearest neighbour statistics
[pluginname]GuiBase
QGIS Plugin Template
Plugin Template
dxf2shpConverter
Converts DXF files in Shapefile format
&Dxf2Shp
dxf2shpConverterGui
Fields description:
* Input DXF file: path to the DXF file to be converted
* Output Shp file: desired name of the shape file to be created
* Shp output file type: specifies the type of the output shape file
* Export text labels checkbox: if checked, an additional shp points layer will be created, and the associated dbf table will contain informations about the "TEXT" fields found in the dxf file, and the text strings themselves
---
Developed by Paolo L. Scala, Barbara Rita Barricelli, Marco Padula
CNR, Milan Unit (Information Technology), Construction Technologies Institute.
For support send a mail to scala@itc.cnr.it
Choose a DXF file to open
Choose a file name to save to
Dxf Importer
Input Dxf file
...
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;">
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"><span style=" font-size:10pt;">Output file</span></p></body></html>
Output file type
Polyline
Polygon
Point
Export text labels
eVis
eVis Database Connection
eVis Event Id Tool
eVis Event Browser
Create layer from a database query
Open an Event Browers and display the selected feature
Open an Event Browser to explore the current layer's features
eVisDatabaseConnectionGui
Undefined
No predefined queries loaded
Open File
New Database connection requested...
Error: You must select a database type
Error: No host name entered
Error: No database name entered
connected
Tables
Error: Parse error at line %1, column %2: %3
Error: A database connection is not currently established
Connection to [%1.%2] established
Connection to [%1.%2] failed: %3
Error: Unabled to open file [%1]
Error: Query failed: %1
Error: Could not create temporary file, process halted
eVisDatabaseConnectionGuiBase
Database Connection
Load predefined queries
Loads an XML file with predefined queries. Use the Open File window to locate the XML file that contains one or more predefined queries using the format described in the user guide.
The description of the selected query.
not connected
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;">
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-style:italic;">Connection Status: </span></p></body></html>
Database Host
Enter the database host. If the database resides on your desktop you should enter ¨localhost¨. If you selected ¨MSAccess¨ as the database type this option will not be available.
Password to access the database.
Enter the name of the database.
Username
Enter the port through which the database must be accessed if a MYSQL database is used.
Connect to the database using the parameters selected above. If the connection was successful a message will be displayed in the Output Console below saying the connection was established.
Connect
User name to access the database.
Select the type of database from the list of supported databases in the drop-down menu.
Database Name
Password
Database Type
Port
SQL Query
Run the query entered above. The status of the query will be displayed in the Output Console below.
Run Query
Enter the query you want to run in this window.
A window for status messages to be displayed.
Output Console
Predefined Queries
Select the predefined query you want to use from the drop-down list containing queries identified from the file loaded using the Open File icon above. To run the query you need to click on the SQL Query tab. The query will be automatically entered in the query window.
eVisDatabaseLayerFieldSelectionGuiBase
Database File Selection
The name of the field that contains the Y coordinate of the points.
The name of the field that contains the X coordinate of the points.
Enter the name for the new layer that will be created and displayed in QGIS.
Y Coordinate
X Coordinate
Name of New Layer
eVisGenericEventBrowserGui
Generic Event Browser
Field
Value
Warning
This tool only supports vector data
No active layers found
Error
Unable to connect to either the map canvas or application interface
An invalid feature was received during initialization
Attribute Contents
Select Application
All ( * )
Event Browser - Displaying records 01 of %1
Event Browser - Displaying records %1 of %2
eVisGenericEventBrowserGuiBase
Display
Use the Previous button to display the previous photo when more than one photo is available for display.
Previous
Use the Next button to display the next photo when more than one photo is available for display.
Next
All of the attribute information for the point associated with the photo being viewed is displayed here. If the file type being referenced in the displayed record is not an image but is of a file type defined in the “Configure External Applications” tab then when you double-click on the value of the field containing the path to the file the application to open the file will be launched to view or hear the contents of the file. If the file extension is recognized the attribute data will be displayed in green.
1
Image display area
Display area for the image.
Options
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;">
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Save?</span></p></body></html>
Attribute Containing Path to File
Use the drop-down list to select the field containing a directory path to the image. This can be an absolute or relative path.
Path Is Relative
If checked, the relative path values will be saved for the next session.
Reset to default
Resets the values on this line to the default setting.
If checked an arrow pointing in the direction defined by the attribute in the field selected from the drop-down list to the right will be displayed in the QGIS window on top of the point for this image.
Display Compass Bearing
Use the drop-down list to select the field containing the compass bearing for the image. This bearing usually references the direction the camera was pointing when the image was acquired.
If checked, the Display Compass Bearing values will be saved for the next session.
Compass Offset
A value to be added to the compass bearing. This allows you to compensate for declination (adjust bearings collected using magnetic bearings to true north bearings). East declinations should be entered using positive values and west declinations should use negative values.
Define the compass offset using a field from the vector layer attribute table.
From Attribute
Use the drop-down list to select the field containing the compass bearing offset. This allows you to compensate for declination (adjust bearings collected using magnetic bearings to true north bearings). East declinations should be entered using positive values and west declinations should use negative values.
Define the compass offset manually.
Manual
If checked, the compass offset values will be saved for the next session.
Resets the compass offset values to the default settings.
The base path or url from which images and documents can be “relative”
Base Path
The Base Path onto which the relative path defined above will be appended.
If checked, the Base Path will be saved for the next session.
If checked, the Base Path will append only the file name instead of the entire relative path (defined above) to create the full directory path to the file.
Replace entire path/url stored in image path attribute with user defined
Base Path (i.e. keep only filename from attribute)
If checked, the current check-box setting will be saved for the next session.
Clears the check-box on this line.
Apply Path to Image rules when loading docs in external applications
Clicking on Save will save the settings without closing the Options pane. Clicking on Restore Defaults will reset all of the fields to their default settings. It has the same effect as clicking all of the “Reset to default” buttons.
Configure External Applications
File extension and external application in which to load a document of that type
A table containing file types that can be opened using eVis. Each file type needs a file extension and the path to an application that can open that type of file. This provides the capability of opening a broad range of files such as movies, sound recording, and text documents instead of only images.
Extension
Application
Add new file type
Add a new file type with a unique extension and the path for the application that can open the file.
Delete current row
Delete the file type highlighted in the table and defined by a file extension and a path to an associated application.
If checked the path to the image will be defined appending the attribute in the field selected from the “Attribute Containing Path to Image” drop-down list to the “Base Path” defined below.
Enters the default “Base Path” which is the path to the directory of the vector layer containing the image information.
If checked, the same path rules that are defined for images will be used for non-image documents such as movies, text documents, and sound files. If not checked the path rules will only apply to images and other documents will ignore the Base Path parameter.
eVisImageDisplayWidget
Zoom in
Zoom out
Zoom out to see more area.
Zoom to full extent
Zoom to display the entire image.
Zoom in to see more detail.
fTools
Quantum GIS version detected:
This version of fTools requires at least QGIS version 1.0.0
Plugin will not be enabled.
&Tools
&Analysis Tools
Distance matrix
Sum line lengths
Points in polygon
Basic statistics
List unique values
Nearest neighbour analysis
Mean coordinate(s)
Line intersections
&Research Tools
Random selection
Random selection within subsets
Random points
Regular points
Vector grid
Select by location
Polygon from layer extent
&Geoprocessing Tools
Convex hull(s)
Buffer(s)
Intersect
Union
Symetrical difference
Clip
Dissolve
Difference
G&eometry Tools
Export/Add geometry columns
Check geometry validity
Polygon centroids
Delaunay triangulation
Extract nodes
Simplify geometries
Multipart to singleparts
Singleparts to multipart
Polygons to lines
&Data Management Tools
Export to new projection
Define current projection
Join attributes
Join attributes by location
Split vector layer
fTools Information
pluginname
[menuitemname]
Replace this with a short description of what the plugin does
&[menuname]
statResult
Max. len. :
Min. len. :
Mean. len :
Filled :
Empty :
N :
visualThread
Observed mean distance :
Expected mean distance :
Nearest neighbour index :
Feature %1 contains an unnested hole
Feature %1 is not closed
Feature %1 is self intersecting
Feature %1 has incorrect node ordering