Merge branch 'master' into dbl
Conflicts: images/splash/splash.png src/CMakeLists.txt src/app/main.cpp src/app/qgsvectorlayerproperties.cpp src/core/qgsvectorlayer.cpp src/providers/wms/qgswmssourceselect.cpp
8
.gitignore
vendored
@ -22,3 +22,11 @@ ms-windows/osgeo4w/nsis/
|
||||
ms-windows/osgeo4w/untgz/
|
||||
scripts/astyle
|
||||
qtcreator-build/
|
||||
ms-windows/nsis/
|
||||
ms-windows/osgeo4w/addons/
|
||||
ms-windows/packages/
|
||||
ms-windows/progs/
|
||||
ms-windows/untgz/
|
||||
scripts/astyle.exe
|
||||
# vim temporary files
|
||||
.*.swp
|
||||
|
@ -1,8 +1,8 @@
|
||||
SET(CPACK_PACKAGE_VERSION_MAJOR "1")
|
||||
SET(CPACK_PACKAGE_VERSION_MINOR "7")
|
||||
SET(CPACK_PACKAGE_VERSION_MINOR "8")
|
||||
SET(CPACK_PACKAGE_VERSION_PATCH "0")
|
||||
SET(COMPLETE_VERSION ${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH})
|
||||
SET(RELEASE_NAME "Wroclaw")
|
||||
SET(RELEASE_NAME "Trunk")
|
||||
SET(PROJECT_VERSION ${COMPLETE_VERSION})
|
||||
PROJECT(qgis${PROJECT_VERSION})
|
||||
IF (APPLE)
|
||||
@ -60,6 +60,9 @@ SET (WITH_MAPSERVER FALSE CACHE BOOL "Determines whether QGIS mapserver should b
|
||||
# include doxygen documentation
|
||||
SET (WITH_APIDOC FALSE CACHE BOOL "Determines whether the QGIS API doxygen documentation should be built")
|
||||
|
||||
# build our version of astyle
|
||||
SET (WITH_ASTYLE FALSE CACHE BOOL "If you plan to contribute you should reindent with scripts/prepare-commit.sh (using 'our' astyle)")
|
||||
|
||||
# try to configure and build POSTGRESQL support
|
||||
SET (WITH_POSTGRESQL TRUE CACHE BOOL "Determines whether POSTGRESQL support should be built")
|
||||
IF (WITH_POSTGRESQL)
|
||||
@ -439,55 +442,37 @@ INCLUDE_DIRECTORIES(${CMAKE_BINARY_DIR})
|
||||
LINK_DIRECTORIES(${CMAKE_BINARY_DIR}/src/core ${CMAKE_BINARY_DIR}/src/gui)
|
||||
|
||||
#############################################################
|
||||
# create qgssvnversion.h
|
||||
# create qgsversion.h
|
||||
|
||||
FIND_FILE(SVN_MARKER entries PATHS ${CMAKE_SOURCE_DIR}/.svn)
|
||||
FIND_FILE(GIT_MARKER index PATHS ${CMAKE_SOURCE_DIR}/.git)
|
||||
|
||||
IF (SVN_MARKER)
|
||||
# See if we have svn installed
|
||||
FIND_PROGRAM(SVNVERSION svnversion PATHS c:/cygwin/bin)
|
||||
|
||||
IF(SVNVERSION)
|
||||
IF (GIT_MARKER)
|
||||
FIND_PROGRAM(GIT git PATHS c:/cygwin/bin)
|
||||
IF(GIT)
|
||||
IF(MSVC)
|
||||
ADD_CUSTOM_COMMAND(
|
||||
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/qgssvnversion.h
|
||||
COMMAND for /f usebackq %%a in "(`\"${SVNVERSION}\"`)" do echo \#define QGSSVNVERSION \"%%a\" >${CMAKE_CURRENT_BINARY_DIR}/qgssvnversion.h
|
||||
MAIN_DEPENDENCY ${SVN_MARKER}
|
||||
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/qgsversion.h
|
||||
COMMAND for /f \"usebackq tokens=1\" %%a in "(`\"${GIT}\" log -n1 --oneline`)" do echo \#define QGSVERSION \"%%a\" >${CMAKE_CURRENT_BINARY_DIR}/qgsversion.h
|
||||
MAIN_DEPENDENCY ${GIT_MARKER}
|
||||
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
|
||||
)
|
||||
ELSE(MSVC)
|
||||
ADD_CUSTOM_COMMAND(
|
||||
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/qgssvnversion.h
|
||||
COMMAND echo \\\#define QGSSVNVERSION \\\"`${SVNVERSION}`\\\" >${CMAKE_CURRENT_BINARY_DIR}/qgssvnversion.h
|
||||
MAIN_DEPENDENCY ${SVN_MARKER}
|
||||
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
|
||||
)
|
||||
ENDIF(MSVC)
|
||||
ELSE(SVNVERSION)
|
||||
MESSAGE(STATUS "svnversion not found - version will be unknown")
|
||||
FILE(WRITE ${CMAKE_CURRENT_BINARY_DIR}/qgssvnversion.h "#define QGSSVNVERSION \"unknown\"")
|
||||
ENDIF (SVNVERSION)
|
||||
ELSE (SVN_MARKER)
|
||||
IF (GIT_MARKER)
|
||||
FIND_PROGRAM(GIT git PATHS c:/cygwin/bin)
|
||||
IF(GIT)
|
||||
ADD_CUSTOM_COMMAND(
|
||||
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/qgssvnversion.h
|
||||
COMMAND echo \\\#define QGSSVNVERSION \\\"$$\( ${GIT} log -n1 --grep='git-svn-id' | sed -ne 's/^ *git-svn-id:.*@\\\([0-9]*\\\).*$$/\\1/p' \)$$\( ${GIT} log --oneline $$\( ${GIT} log -n1 --grep='git-svn-id' --pretty=%H \).. | wc -l | sed -e 's/^/+/' -e 's/+0$$//' \)\\\" >${CMAKE_CURRENT_BINARY_DIR}/qgssvnversion.h
|
||||
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/qgsversion.h
|
||||
COMMAND echo \\\#define QGSVERSION \\\"$$\( ${GIT} log -n1 --pretty=%h \)\\\" >${CMAKE_CURRENT_BINARY_DIR}/qgsversion.h
|
||||
MAIN_DEPENDENCY ${GIT_MARKER}
|
||||
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
|
||||
)
|
||||
ELSE(GIT)
|
||||
MESSAGE(STATUS "git marker, but no git found - version will be unknown")
|
||||
FILE(WRITE ${CMAKE_CURRENT_BINARY_DIR}/qgssvnversion.h "#define QGSSVNVERSION \"unknown\"")
|
||||
ENDIF(GIT)
|
||||
ELSE (GIT_MARKER)
|
||||
FILE(WRITE ${CMAKE_CURRENT_BINARY_DIR}/qgssvnversion.h "#define QGSSVNVERSION \"exported\"")
|
||||
ENDIF (GIT_MARKER)
|
||||
ENDIF (SVN_MARKER)
|
||||
ENDIF(MSVC)
|
||||
ELSE(GIT)
|
||||
MESSAGE(STATUS "git marker, but no git found - version will be unknown")
|
||||
FILE(WRITE ${CMAKE_CURRENT_BINARY_DIR}/qgsversion.h "#define QGSVERSION \"unknown\"")
|
||||
ENDIF(GIT)
|
||||
ELSE (GIT_MARKER)
|
||||
FILE(WRITE ${CMAKE_CURRENT_BINARY_DIR}/qgsversion.h "#define QGSVERSION \"exported\"")
|
||||
ENDIF (GIT_MARKER)
|
||||
|
||||
ADD_CUSTOM_TARGET(svnversion ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/qgssvnversion.h)
|
||||
ADD_CUSTOM_TARGET(version ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/qgsversion.h)
|
||||
|
||||
#############################################################
|
||||
# process subdirs
|
||||
|
21
INSTALL
@ -2,8 +2,8 @@ Quantum GIS (QGIS)
|
||||
Building QGIS from source - step by step
|
||||
|
||||
|
||||
Last update: 20110404
|
||||
Last change: 20110404
|
||||
Last update: 20110504
|
||||
Last change: 20110502
|
||||
|
||||
|
||||
1. Introduction
|
||||
@ -140,7 +140,7 @@ The packages qgis depends on to build are available in the "universe" component
|
||||
of Ubuntu. This is not activated by default, so you need to activate it:
|
||||
|
||||
1. Edit your /etc/apt/sources.list file.
|
||||
2. Uncomment the all the lines starting with "deb"
|
||||
2. Uncomment all the lines starting with "deb"
|
||||
|
||||
Also you will need to be running (K)Ubuntu 'edgy' or higher in order for
|
||||
all dependencies to be met.
|
||||
@ -150,6 +150,7 @@ Now update your local sources database:
|
||||
sudo apt-get update
|
||||
|
||||
|
||||
|
||||
3.3. Install build dependencies
|
||||
===============================
|
||||
|
||||
@ -166,9 +167,9 @@ Now update your local sources database:
|
||||
/!\ A Special Note: If you are following this set of instructions on
|
||||
a system where you already have Qt3 development tools installed, there will
|
||||
be a conflict between Qt3 tools and Qt4 tools. For example, qmake will
|
||||
point to the Qt3 version not the Qt4. Ubuntu Qt4 and Qt3 packages are
|
||||
designed to live alongside each other. This means that for example if you
|
||||
have them both installed you will have three qmake exe's:
|
||||
point to the Qt3 version, not the Qt4. Ubuntu Qt4 and Qt3 packages are
|
||||
designed to live alongside each other. This means that, for example, if you
|
||||
have them both installed, you will have three qmake exe's:
|
||||
|
||||
/usr/bin/qmake -> /etc/alternatives/qmake
|
||||
/usr/bin/qmake-qt3
|
||||
@ -227,7 +228,7 @@ This directory path will be assumed for all instructions that follow.
|
||||
===================================
|
||||
|
||||
There are two ways the source can be checked out. Use the anonymous method
|
||||
if you do not have edit privaleges for the QGIS source repository, or use
|
||||
if you do not have edit privileges for the QGIS source repository, or use
|
||||
the developer checkout if you have permissions to commit source code
|
||||
changes.
|
||||
|
||||
@ -654,6 +655,9 @@ created.
|
||||
Adjust the path to bison and flex so that the shortened C:/Progra~1 is used
|
||||
rather than C:/Program Files.
|
||||
|
||||
Verify that the 'BINDINGS_GLOBAL_INSTALL' option is not checked, so that python
|
||||
bindings are placed into the output directory when you run the INSTALL target.
|
||||
|
||||
Hit Configure to start the configuration and select Visual Studio 9 2008
|
||||
and keep native compilers and click Finish.
|
||||
|
||||
@ -709,6 +713,9 @@ script.
|
||||
cd ms-windows/
|
||||
rm -rf osgeo4w/unpacked/apps/qgis/*
|
||||
cp -r /tmp/qgis1.7.0/* osgeo4w/unpacked/apps/qgis/
|
||||
|
||||
Now create a package.
|
||||
|
||||
./quickpackage.sh
|
||||
|
||||
After this you should now have a nsis installer containing your own build
|
||||
|
6
debian/changelog
vendored
@ -1,3 +1,9 @@
|
||||
qgis (1.8.0) UNRELEASED; urgency=low
|
||||
|
||||
* new development version 1.8 after branch
|
||||
|
||||
-- Jürgen E. Fischer <jef@norbit.de> Sat, 07 May 2011 00:47:20 +0200
|
||||
|
||||
qgis (1.7.0) UNRELEASED; urgency=low
|
||||
|
||||
* new development version 1.7 after branch
|
||||
|
6
debian/control
vendored
@ -24,7 +24,7 @@ Build-Depends:
|
||||
python-dev,
|
||||
python-qt4-dev (>=4.1.0),
|
||||
python-sip-dev (>= 4.5.0) | python-sip4-dev (>= 4.5.0) | sip4 (>= 4.5),
|
||||
subversion,
|
||||
git-core | git,
|
||||
txt2tags,
|
||||
doxygen
|
||||
Build-Conflicts: libqgis-dev, qgis-dev
|
||||
@ -56,7 +56,7 @@ Description: Quantum GIS - architecture-independent data
|
||||
This package contains architecture-independent supporting data files for use
|
||||
with Quantum GIS.
|
||||
|
||||
Package: libqgis1.7.0
|
||||
Package: libqgis1.8.0
|
||||
Architecture: any
|
||||
Depends: ${shlibs:Depends}, ${misc:Depends}
|
||||
Replaces: qgis (<=0.9.2rc1), libqgis-core1, libqgis-gui1, libqgis0, libqgis1
|
||||
@ -78,7 +78,7 @@ Depends:
|
||||
libgsl0-dev,
|
||||
libpq-dev,
|
||||
libproj-dev,
|
||||
libqgis1.7.0 (= ${binary:Version}),
|
||||
libqgis1.8.0 (= ${binary:Version}),
|
||||
libqt4-dev (>=4.4.0),
|
||||
libsqlite3-dev,
|
||||
python-qt4 (>=4.1.0),
|
||||
|
2
debian/control.hardy
vendored
@ -8,7 +8,7 @@ Build-Depends: debhelper (>= 5.0.51~), libgdal1-dev, libpq-dev,
|
||||
python-sip4 (>= 4.5.0), python-central (>=0.5), python, sip4 (>= 4.5),
|
||||
libqt4-core (>=4.2.0), libqt4-dev (>=4.2.0), libqt4-gui (>=4.2.0),
|
||||
libqt4-sql (>=4.2.0), python-qt4 (>=4.1.0), python-qt4-dev (>=4.1.0),
|
||||
python-sip4-dev (>= 4.5.0), pyqt4-dev-tools, fcgi-dev, subversion
|
||||
python-sip4-dev (>= 4.5.0), pyqt4-dev-tools, fcgi-dev, git-core
|
||||
Build-Conflicts: libqgis-dev, qgis-dev
|
||||
Standards-Version: 3.8.0
|
||||
XS-Python-Version: current
|
||||
|
2
debian/control.intrepid
vendored
@ -9,7 +9,7 @@ Build-Depends: debhelper (>= 5.0.51~), libgdal1-dev, libpq-dev,
|
||||
libqt4-core (>=4.2.0), libqt4-dev (>=4.2.0), libqt4-gui (>=4.2.0),
|
||||
libqt4-sql (>=4.2.0), python-qt4 (>=4.1.0), python-qt4-dev (>=4.1.0),
|
||||
python-sip4-dev (>= 4.5.0), pyqt4-dev-tools, libqwt5-qt4-dev, libfcgi-dev,
|
||||
subversion, doxygen, graphviz, txt2tags
|
||||
git-core, doxygen, graphviz, txt2tags
|
||||
Build-Conflicts: libqgis-dev, qgis-dev
|
||||
Standards-Version: 3.8.0
|
||||
XS-Python-Version: current
|
||||
|
2
debian/control.jaunty
vendored
@ -9,7 +9,7 @@ Build-Depends: debhelper (>= 5.0.51~), libgdal1-dev, libpq-dev,
|
||||
libqt4-core (>=4.2.0), libqt4-dev (>=4.2.0), libqt4-gui (>=4.2.0),
|
||||
libqt4-sql (>=4.2.0), python-qt4 (>=4.1.0), python-qt4-dev (>=4.1.0),
|
||||
python-sip4-dev (>= 4.5.0), pyqt4-dev-tools, libqwt5-qt4-dev, libfcgi-dev,
|
||||
subversion, doxygen, graphviz, txt2tags
|
||||
git-core, doxygen, graphviz, txt2tags
|
||||
Build-Conflicts: libqgis-dev, qgis-dev
|
||||
Standards-Version: 3.8.0
|
||||
XS-Python-Version: current
|
||||
|
2
debian/control.karmic
vendored
@ -9,7 +9,7 @@ Build-Depends: debhelper (>= 5.0.51~), libgdal1-dev, libpq-dev,
|
||||
libqt4-core (>=4.2.0), libqt4-dev (>=4.2.0), libqt4-gui (>=4.2.0),
|
||||
libqt4-sql (>=4.2.0), python-qt4 (>=4.1.0), python-qt4-dev (>=4.1.0),
|
||||
python-sip4-dev (>= 4.5.0), pyqt4-dev-tools, libqwt5-qt4-dev, libfcgi-dev,
|
||||
subversion, doxygen, graphviz, txt2tags
|
||||
git-core, doxygen, graphviz, txt2tags
|
||||
Build-Conflicts: libqgis-dev, qgis-dev
|
||||
Standards-Version: 3.8.0
|
||||
XS-Python-Version: current
|
||||
|
2
debian/control.lenny
vendored
@ -27,7 +27,7 @@ Build-Depends:
|
||||
python-qt4-dev (>=4.1.0),
|
||||
python-sip4-dev (>= 4.5.0),
|
||||
sip4 (>= 4.5),
|
||||
subversion,
|
||||
git-core,
|
||||
doxygen,
|
||||
graphviz,
|
||||
txt2tags
|
||||
|
2
debian/control.lucid
vendored
@ -28,7 +28,7 @@ Build-Depends:
|
||||
python-qt4-dev (>=4.1.0),
|
||||
python-sip (>= 4.5.0),
|
||||
python-sip-dev (>= 4.5.0),
|
||||
subversion,
|
||||
git-core,
|
||||
doxygen,
|
||||
graphviz,
|
||||
txt2tags
|
||||
|
2
debian/control.maverick
vendored
@ -29,7 +29,7 @@ Build-Depends:
|
||||
python-qt4-dev (>=4.1.0),
|
||||
python-sip (>= 4.5.0),
|
||||
python-sip-dev (>= 4.5.0),
|
||||
subversion,
|
||||
git,
|
||||
doxygen,
|
||||
graphviz,
|
||||
txt2tags
|
||||
|
2
debian/control.natty
vendored
@ -29,7 +29,7 @@ Build-Depends:
|
||||
python-qt4-dev (>=4.1.0),
|
||||
python-sip (>= 4.5.0),
|
||||
python-sip-dev (>= 4.5.0),
|
||||
subversion,
|
||||
git,
|
||||
doxygen,
|
||||
graphviz,
|
||||
txt2tags
|
||||
|
2
debian/control.sid
vendored
@ -29,7 +29,7 @@ Build-Depends:
|
||||
python-qt4-dev (>=4.1.0),
|
||||
python-sip (>= 4.5.0),
|
||||
python-sip-dev (>= 4.5.0),
|
||||
subversion,
|
||||
git,
|
||||
doxygen,
|
||||
graphviz,
|
||||
txt2tags
|
||||
|
2
debian/control.squeeze
vendored
@ -28,7 +28,7 @@ Build-Depends:
|
||||
python-qt4-dev (>=4.1.0),
|
||||
python-sip (>= 4.5.0),
|
||||
python-sip-dev (>= 4.5.0),
|
||||
subversion,
|
||||
git,
|
||||
doxygen,
|
||||
graphviz,
|
||||
txt2tags
|
||||
|
1
debian/qgis-providers.install
vendored
@ -8,3 +8,4 @@ usr/lib/qgis/plugins/libmemoryprovider.so
|
||||
usr/lib/qgis/plugins/libspatialiteprovider.so
|
||||
usr/lib/qgis/plugins/libosmprovider.so
|
||||
usr/lib/qgis/plugins/libgdalprovider.so
|
||||
usr/lib/qgis/crssync
|
||||
|
@ -39,6 +39,7 @@ Markus Neteler
|
||||
Mathias Walker
|
||||
Matt Amos
|
||||
Maurizio Napolitano
|
||||
Mayeul Kauffmann
|
||||
Milena Nowotarska
|
||||
Nathan Woodrow
|
||||
Nikos Alexandris
|
||||
|
@ -18,7 +18,7 @@ Croatian|Zoran Jankovic
|
||||
Czech|Martin Landa, Peter Antolik, Martin Dzurov, Jan Helebrant
|
||||
Danish|Henriette Roued
|
||||
Dutch|Richard Duivenvoorde, Raymond Nijssen
|
||||
French|Eve Rousseau, Marc Monnerat, Lionel Roubeyrie, Jean Roc Morreale, Benjamin Bohard, Jeremy Garniaux, Yves Jacolin, Benjamin Lerre, Stéphane Morel, Marie Silvestre, Tahir Tamba, Xavier M
|
||||
French|Eve Rousseau, Marc Monnerat, Lionel Roubeyrie, Jean Roc Morreale, Benjamin Bohard, Jeremy Garniaux, Yves Jacolin, Benjamin Lerre, Stéphane Morel, Marie Silvestre, Tahir Tamba, Xavier M, Mayeul Kauffmann
|
||||
Georgian|Shota Murtskhvaladze, George Machitidze
|
||||
German|Jürgen E. Fischer, Stephan Holl, Otto Dassau, Werner Macho
|
||||
Greek|Evripidis Argyropoulos, Mike Pegnigiannis, Nikos Ves
|
||||
@ -38,7 +38,7 @@ Romanian|Lonut Losifescu-Enescu
|
||||
Russian|Artem Popov
|
||||
Slovak|Lubos Balazovic
|
||||
Slovenian|Jože Detečnik, Dejan Gregor
|
||||
Spanish|Carlos Dávila, Javier César Aldariz, Gabriela Awad, Edwin Amado
|
||||
Spanish|Carlos Dávila, Javier César Aldariz, Gabriela Awad, Edwin Amado, Mayeul Kauffmann
|
||||
Swedish|Lars Luthman, Magnus Homann
|
||||
Thai|Man Chao
|
||||
Turkish|Osman Yilmaz
|
||||
|
@ -28,8 +28,8 @@ easiest option to compile and install QGIS.
|
||||
The packages qgis depends on to build are available in the "universe" component
|
||||
of Ubuntu. This is not activated by default, so you need to activate it:
|
||||
|
||||
1. Edit your /etc/apt/sources.list file.
|
||||
2. Uncomment the all the lines starting with "deb"
|
||||
+ Edit your /etc/apt/sources.list file.
|
||||
+ Uncomment all the lines starting with "deb"
|
||||
|
||||
Also you will need to be running (K)Ubuntu 'edgy' or higher in order for
|
||||
all dependencies to be met.
|
||||
@ -56,9 +56,9 @@ sudo apt-get update
|
||||
/!\ **A Special Note:** If you are following this set of instructions on
|
||||
a system where you already have Qt3 development tools installed, there will
|
||||
be a conflict between Qt3 tools and Qt4 tools. For example, qmake will
|
||||
point to the Qt3 version not the Qt4. Ubuntu Qt4 and Qt3 packages are
|
||||
designed to live alongside each other. This means that for example if you
|
||||
have them both installed you will have three qmake exe's:
|
||||
point to the Qt3 version, not the Qt4. Ubuntu Qt4 and Qt3 packages are
|
||||
designed to live alongside each other. This means that, for example, if you
|
||||
have them both installed, you will have three qmake exe's:
|
||||
|
||||
```
|
||||
/usr/bin/qmake -> /etc/alternatives/qmake
|
||||
@ -121,7 +121,7 @@ This directory path will be assumed for all instructions that follow.
|
||||
== Check out the QGIS Source Code ==
|
||||
|
||||
There are two ways the source can be checked out. Use the anonymous method
|
||||
if you do not have edit privaleges for the QGIS source repository, or use
|
||||
if you do not have edit privileges for the QGIS source repository, or use
|
||||
the developer checkout if you have permissions to commit source code
|
||||
changes.
|
||||
|
||||
|
12
doc/msvc.t2t
@ -86,8 +86,8 @@ set OSGEO4W_ROOT=C:\OSGeo4W
|
||||
call "%OSGEO4W_ROOT%\bin\o4w_env.bat"
|
||||
|
||||
@set GRASS_PREFIX=c:/OSGeo4W/apps/grass/grass-6.4.0
|
||||
@set INCLUDE=%INCLUDE%;%OSGEO4W_ROOT%\apps\gdal-17\include;%OSGEO4W_ROOT%\include
|
||||
@set LIB=%LIB%;%OSGEO4W_ROOT%\apps\gdal-17\lib;%OSGEO4W_ROOT%\lib
|
||||
@set INCLUDE=%INCLUDE%;%OSGEO4W_ROOT%\include
|
||||
@set LIB=%LIB%;%OSGEO4W_ROOT%\lib;%OSGEO4W_ROOT%\lib
|
||||
|
||||
@cmd
|
||||
```
|
||||
@ -117,6 +117,9 @@ created.
|
||||
Adjust the path to bison and flex so that the shortened ``C:/Progra~1`` is used
|
||||
rather than ``C:/Program Files``.
|
||||
|
||||
Verify that the 'BINDINGS_GLOBAL_INSTALL' option is not checked, so that python
|
||||
bindings are placed into the output directory when you run the INSTALL target.
|
||||
|
||||
Hit ``Configure`` to start the configuration and select ``Visual Studio 9 2008``
|
||||
and keep ``native compilers`` and click ``Finish``.
|
||||
|
||||
@ -175,6 +178,11 @@ script.
|
||||
cd ms-windows/
|
||||
rm -rf osgeo4w/unpacked/apps/qgis/*
|
||||
cp -r /tmp/qgis1.7.0/* osgeo4w/unpacked/apps/qgis/
|
||||
```
|
||||
|
||||
Now create a package.
|
||||
|
||||
```
|
||||
./quickpackage.sh
|
||||
```
|
||||
|
||||
|
2383
i18n/qgis_de.ts
464
i18n/qgis_es.ts
332
i18n/qgis_fr.ts
@ -1961,7 +1961,7 @@ Vuoi comunque terminarlo?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Select the mask file</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Selezione il file per la maschera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Select the input directory with files to Warp</source>
|
||||
@ -1989,7 +1989,7 @@ Vuoi comunque terminarlo?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Select the input directory with files for convert</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Scegli la cartella di input con i files da convertire</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Select the file for DEM</source>
|
||||
@ -2161,7 +2161,7 @@ Disabilita l'opzione "Usa estensioni di intersezione" per ottener
|
||||
<message>
|
||||
<location filename="../python/plugins/GdalTools/tools/inOutSelector.ui" line="46"/>
|
||||
<source>Select...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Scegli...</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -2336,7 +2336,7 @@ Disabilita l'opzione "Usa estensioni di intersezione" per ottener
|
||||
<message>
|
||||
<location filename="../python/plugins/GdalTools/tools/widgetClipper.ui" line="70"/>
|
||||
<source>Clipping mode</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Modo di clip</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../python/plugins/GdalTools/tools/widgetClipper.ui" line="76"/>
|
||||
@ -2349,7 +2349,7 @@ Disabilita l'opzione "Usa estensioni di intersezione" per ottener
|
||||
<location filename="../python/plugins/GdalTools/tools/widgetClipper.ui" line="126"/>
|
||||
<location filename="../python/plugins/GdalTools/tools/widgetWarp.ui" line="181"/>
|
||||
<source>Mask layer</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Strato per la maschera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&No data value:</source>
|
||||
@ -2489,7 +2489,7 @@ Disabilita l'opzione "Usa estensioni di intersezione" per ottener
|
||||
<message>
|
||||
<location filename="../python/plugins/GdalTools/tools/widgetConvert.ui" line="82"/>
|
||||
<source>Band to convert</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Banda da convertire</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Input file:</source>
|
||||
@ -5470,7 +5470,7 @@ GEOS geoprocessing error: One or more input features have invalid geometry.</sou
|
||||
use qgis.utils.iface object (instance of QgisInterface class).
|
||||
|
||||
</source>
|
||||
<translation>Per accedere all'ambiente Quantum GISda questa console
|
||||
<translation>Per accedere all'ambiente Quantum GIS da questa console
|
||||
usa l'oggetto qgis.utils.iface (istanza della classe QgisInterface).</translation>
|
||||
</message>
|
||||
</context>
|
||||
@ -6365,7 +6365,7 @@ Vuoi specificare il percorso (GISBASE) dove è installato GRASS?</translation>
|
||||
<message>
|
||||
<location filename="../src/providers/grass/qgsgrass.cpp" line="1056"/>
|
||||
<source>Cannot open GISRC file</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Impossibile aprire il file GISRC</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/providers/grass/qgsgrass.cpp" line="1076"/>
|
||||
@ -6375,12 +6375,12 @@ Vuoi specificare il percorso (GISBASE) dove è installato GRASS?</translation>
|
||||
<message>
|
||||
<location filename="../src/providers/grass/qgsgrass.cpp" line="1077"/>
|
||||
<source>command: %1 %2</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>comando: %1 %2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/providers/grass/qgsgrass.cpp" line="1096"/>
|
||||
<source>Cannot run module</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Impossibile far funzionare il modulo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/providers/grass/qgsgrass.cpp" line="1097"/>
|
||||
@ -8032,7 +8032,7 @@ Stai vedendo questo messaggio perché probabilmente non hai settato la variabile
|
||||
<message>
|
||||
<location filename="../src/app/qgisapp.cpp" line="480"/>
|
||||
<source>Starting Python</source>
|
||||
<translation>Partenza python</translation>
|
||||
<translation>Avvio python</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>
|
||||
@ -19559,12 +19559,12 @@ p, li { white-space: pre-wrap; }
|
||||
<message>
|
||||
<location filename="../src/providers/grass/qgsgrassrasterprovider.cpp" line="352"/>
|
||||
<source>Out of extent</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Al di fuori dell'estensione</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/providers/grass/qgsgrassrasterprovider.cpp" line="356"/>
|
||||
<source>null (no data)</source>
|
||||
<translation type="unfinished">nullo (nessun dato)</translation>
|
||||
<translation>nullo (nessun dato)</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -24546,7 +24546,7 @@ p, li { white-space: pre-wrap; }
|
||||
<location filename="../src/ui/qgsoptionsbase.ui" line="1392"/>
|
||||
<location filename="../src/ui/qgsoptionsbase.ui" line="1475"/>
|
||||
<source>Select...</source>
|
||||
<translation>Scagli...</translation>
|
||||
<translation>Scegli...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/ui/qgsoptionsbase.ui" line="1412"/>
|
||||
@ -34943,30 +34943,31 @@ Questo potrebbe essere un errore di configurazione del server. Utilizzare comunq
|
||||
<message>
|
||||
<location filename="../src/providers/wms/qgswmsprovider.cpp" line="786"/>
|
||||
<source>Tile request error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Errore di richiesta tile</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/providers/wms/qgswmsprovider.cpp" line="786"/>
|
||||
<location filename="../src/providers/wms/qgswmsprovider.cpp" line="887"/>
|
||||
<source>Status: %1
|
||||
Reason phrase: %2</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Stato: %1
|
||||
Frase di spiegazione: %2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/providers/wms/qgswmsprovider.cpp" line="805"/>
|
||||
<source>response: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>risposta: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/providers/wms/qgswmsprovider.cpp" line="887"/>
|
||||
<location filename="../src/providers/wms/qgswmsprovider.cpp" line="912"/>
|
||||
<source>Map request error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Errore di richiesta mappa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/providers/wms/qgswmsprovider.cpp" line="912"/>
|
||||
<source>Response: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Risposta: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/providers/wms/qgswmsprovider.cpp" line="969"/>
|
||||
@ -35131,7 +35132,7 @@ La risposta è stata:
|
||||
<message>
|
||||
<location filename="../src/providers/wms/qgswmsprovider.cpp" line="2884"/>
|
||||
<source>Map request error %1: %2</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Errore di richiesta mappa %1: %2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/providers/wms/qgswmsprovider.cpp" line="1099"/>
|
||||
@ -35577,7 +35578,7 @@ URL provata: %1</translation>
|
||||
<message>
|
||||
<location filename="../src/plugins/roadgraph/shortestpathwidget.cpp" line="78"/>
|
||||
<source>Stop</source>
|
||||
<translation>Interrompi</translation>
|
||||
<translation>Arrivo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/plugins/roadgraph/shortestpathwidget.cpp" line="91"/>
|
||||
@ -39642,7 +39643,7 @@ Il plugin non sarà abilitato.</translation>
|
||||
<message>
|
||||
<location filename="../src/plugins/grass/grasslabels-i18n.cpp" line="342"/>
|
||||
<source>Rebuild topology of a vector in mapset</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Ricostruisci la topologia di un vettore nel mapset</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/plugins/grass/grasslabels-i18n.cpp" line="343"/>
|
||||
|
356
i18n/qgis_ja.ts
4022
i18n/qgis_mn.ts
538
i18n/qgis_nl.ts
361
i18n/qgis_ru.ts
3799
i18n/qgis_sl_SI.ts
@ -21,7 +21,7 @@
|
||||
<file>themes/default/mActionAddArrow.png</file>
|
||||
<file>themes/default/mActionAddBasicShape.png</file>
|
||||
<file>themes/default/mActionAddImage.png</file>
|
||||
<file>themes/default/mActionAddIsland.png</file>
|
||||
<file>themes/default/mActionAddPart.png</file>
|
||||
<file>themes/default/mActionAddLayer.png</file>
|
||||
<file>themes/default/mActionAddLegend.png</file>
|
||||
<file>themes/default/mActionAddMap.png</file>
|
||||
@ -221,7 +221,7 @@
|
||||
<file>themes/gis/mActionAddBasicShape.png</file>
|
||||
<file>themes/gis/mActionAddGPSLayer.png</file>
|
||||
<file>themes/gis/mActionAddImage.png</file>
|
||||
<file>themes/gis/mActionAddIsland.png</file>
|
||||
<file>themes/gis/mActionAddPart.png</file>
|
||||
<file>themes/gis/mActionAddLayer.png</file>
|
||||
<file>themes/gis/mActionAddLegend.png</file>
|
||||
<file>themes/gis/mActionAddMap.png</file>
|
||||
@ -243,9 +243,9 @@
|
||||
<file>themes/gis/mActionCaptureLine.png</file>
|
||||
<file>themes/gis/mActionCapturePoint.png</file>
|
||||
<file>themes/gis/mActionCapturePolygon.png</file>
|
||||
<file>themes/gis/mActionChangeLabelProperties.png</file>
|
||||
<file>themes/gis/mActionComposerManager.png</file>
|
||||
<file>themes/gis/mActionCopySelected.png</file>
|
||||
<file>themes/gis/mActionChangeLabelProperties.png</file>
|
||||
<file>themes/gis/mActionDeleteAttribute.png</file>
|
||||
<file>themes/gis/mActionDeletePart.png</file>
|
||||
<file>themes/gis/mActionDeleteRing.png</file>
|
||||
@ -269,8 +269,8 @@
|
||||
<file>themes/gis/mActionIdentify.png</file>
|
||||
<file>themes/gis/mActionInOverview.png</file>
|
||||
<file>themes/gis/mActionInvertSelection.png</file>
|
||||
<file>themes/gis/mActionLabel.png</file>
|
||||
<file>themes/gis/mActionLabeling.png</file>
|
||||
<file>themes/gis/mActionLabel.png</file>
|
||||
<file>themes/gis/mActionLowerItems.png</file>
|
||||
<file>themes/gis/mActionMapTips.png</file>
|
||||
<file>themes/gis/mActionMeasureAngle.png</file>
|
||||
@ -302,8 +302,12 @@
|
||||
<file>themes/gis/mActionSaveMapAsImage.png</file>
|
||||
<file>themes/gis/mActionScaleBar.png</file>
|
||||
<file>themes/gis/mActionSelectedToTop.png</file>
|
||||
<file>themes/gis/mActionSelectFreehand.png</file>
|
||||
<file>themes/gis/mActionSelectPan.png</file>
|
||||
<file>themes/gis/mActionSelect.png</file>
|
||||
<file>themes/gis/mActionSelectPolygon.png</file>
|
||||
<file>themes/gis/mActionSelectRadius.png</file>
|
||||
<file>themes/gis/mActionSelectRectangle.png</file>
|
||||
<file>themes/gis/mActionShowAllLayers.png</file>
|
||||
<file>themes/gis/mActionShowBookmarks.png</file>
|
||||
<file>themes/gis/mActionSimplify.png</file>
|
||||
@ -340,91 +344,6 @@
|
||||
<file>themes/gis/plugins/scale_bar.png</file>
|
||||
<file>themes/gis/plugins/spit.png</file>
|
||||
<file>themes/gis/plugins/wfs.png</file>
|
||||
<file>themes/newgis/mActionAddGPSLayer.png</file>
|
||||
<file>themes/newgis/mActionAddImage.png</file>
|
||||
<file>themes/newgis/mActionAddIsland.png</file>
|
||||
<file>themes/newgis/mActionAddLayer.png</file>
|
||||
<file>themes/newgis/mActionAddLegend.png</file>
|
||||
<file>themes/newgis/mActionAddMap.png</file>
|
||||
<file>themes/newgis/mActionAddOgrLayer.png</file>
|
||||
<file>themes/newgis/mActionAddRasterLayer.png</file>
|
||||
<file>themes/newgis/mActionAddRing.png</file>
|
||||
<file>themes/newgis/mActionAddSpatiaLiteLayer.png</file>
|
||||
<file>themes/newgis/mActionAddVertex.png</file>
|
||||
<file>themes/newgis/mActionAddWfsLayer.png</file>
|
||||
<file>themes/newgis/mActionAddWmsLayer.png</file>
|
||||
<file>themes/newgis/mActionCaptureLine.png</file>
|
||||
<file>themes/newgis/mActionCapturePoint.png</file>
|
||||
<file>themes/newgis/mActionCapturePolygon.png</file>
|
||||
<file>themes/newgis/mActionComposerManager.png</file>
|
||||
<file>themes/newgis/mActionDeletePart.png</file>
|
||||
<file>themes/newgis/mActionDeleteRing.png</file>
|
||||
<file>themes/newgis/mActionDeleteSelected.png</file>
|
||||
<file>themes/newgis/mActionDeleteVertex.png</file>
|
||||
<file>themes/newgis/mActionDeselectAll.png</file>
|
||||
<file>themes/newgis/mActionDraw.png</file>
|
||||
<file>themes/newgis/mActionEditCopy.png</file>
|
||||
<file>themes/newgis/mActionEditCut.png</file>
|
||||
<file>themes/newgis/mActionEditPaste.png</file>
|
||||
<file>themes/newgis/mActionFileNew.png</file>
|
||||
<file>themes/newgis/mActionFileOpen.png</file>
|
||||
<file>themes/newgis/mActionFilePrint.png</file>
|
||||
<file>themes/newgis/mActionFileSaveAs.png</file>
|
||||
<file>themes/newgis/mActionFileSave.png</file>
|
||||
<file>themes/newgis/mActionGroupItems.png</file>
|
||||
<file>themes/newgis/mActionHelpContents.png</file>
|
||||
<file>themes/newgis/mActionHideAllLayers.png</file>
|
||||
<file>themes/newgis/mActionIdentify.png</file>
|
||||
<file>themes/newgis/mActionInOverview.png</file>
|
||||
<file>themes/newgis/mActionLabel.png</file>
|
||||
<file>themes/newgis/mActionMapTips.png</file>
|
||||
<file>themes/newgis/mActionMeasureArea.png</file>
|
||||
<file>themes/newgis/mActionMeasure.png</file>
|
||||
<file>themes/newgis/mActionMergeFeatureAttributes.png</file>
|
||||
<file>themes/newgis/mActionMergeFeatures.png</file>
|
||||
<file>themes/newgis/mActionMoveFeature.png</file>
|
||||
<file>themes/newgis/mActionMoveItemContent.png</file>
|
||||
<file>themes/newgis/mActionMoveVertex.png</file>
|
||||
<file>themes/newgis/mActionNewBookmark.png</file>
|
||||
<file>themes/newgis/mActionNewVectorLayer.png</file>
|
||||
<file>themes/newgis/mActionNodeTool.png</file>
|
||||
<file>themes/newgis/mActionOpenTable.png</file>
|
||||
<file>themes/newgis/mActionPan.png</file>
|
||||
<file>themes/newgis/mActionRedo.png</file>
|
||||
<file>themes/newgis/mActionRemoveLayer.png</file>
|
||||
<file>themes/newgis/mActionReshape.png</file>
|
||||
<file>themes/newgis/mActionSaveAsPDF.png</file>
|
||||
<file>themes/newgis/mActionSaveAsSVG.png</file>
|
||||
<file>themes/newgis/mActionSaveMapAsImage.png</file>
|
||||
<file>themes/newgis/mActionScaleBar.png</file>
|
||||
<file>themes/newgis/mActionSelectPan.png</file>
|
||||
<file>themes/newgis/mActionSelect.png</file>
|
||||
<file>themes/newgis/mActionShowAllLayers.png</file>
|
||||
<file>themes/newgis/mActionShowBookmarks.png</file>
|
||||
<file>themes/newgis/mActionSimplify.png</file>
|
||||
<file>themes/newgis/mActionSplitFeatures.png</file>
|
||||
<file>themes/newgis/mActionToggleEditing.png</file>
|
||||
<file>themes/newgis/mActionUndo.png</file>
|
||||
<file>themes/newgis/mActionUngroupItems.png</file>
|
||||
<file>themes/newgis/mActionUnselectAttributes.png</file>
|
||||
<file>themes/newgis/mActionZoomFullExtent.png</file>
|
||||
<file>themes/newgis/mActionZoomIn.png</file>
|
||||
<file>themes/newgis/mActionZoomLast.png</file>
|
||||
<file>themes/newgis/mActionZoomNext.png</file>
|
||||
<file>themes/newgis/mActionZoomOut.png</file>
|
||||
<file>themes/newgis/mActionZoomToLayer.png</file>
|
||||
<file>themes/newgis/mActionZoomToSelected.png</file>
|
||||
<file>themes/newgis/mIconEditable.png</file>
|
||||
<file>themes/newgis/mIconLineLayer.png</file>
|
||||
<file>themes/newgis/mIconPointLayer.png</file>
|
||||
<file>themes/newgis/mIconPolygonLayer.png</file>
|
||||
<file>themes/newgis/mIconTableLayer.png</file>
|
||||
<file>themes/default/locked.png</file>
|
||||
<file>themes/default/unlocked.png</file>
|
||||
<file>themes/gis/locked.png</file>
|
||||
<file>themes/gis/unlocked.png</file>
|
||||
<file>themes/newgis/locked.png</file>
|
||||
<file>themes/newgis/unlocked.png</file>
|
||||
</qresource>
|
||||
<qresource prefix="/images/tips">
|
||||
<file alias="symbol_levels.png">qgis_tips/symbol_levels.png</file>
|
||||
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
@ -1,11 +1,11 @@
|
||||
LICENSE
|
||||
|
||||
Original GIS icons theme was created by Robert Szczepanek [1] and is licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License [2].
|
||||
Fill free to use it for GIS software or for any other purposes. I only ask you to let me know about that and to include licence.txt file in your work.
|
||||
Feel free to use it for GIS software or for any other purposes. I only ask you to let me know about that and to include licence.txt file in your work.
|
||||
|
||||
TITLE: gis-0.1
|
||||
TITLE: gis-0.2
|
||||
DESCRIPTION: GIS icon theme
|
||||
AUTHOR: Robert Szczepanek
|
||||
AUTHOR: Robert Szczepanek, Anita Graser
|
||||
CONTACT: robert at szczepanek pl
|
||||
SITE: http://robert.szczepanek.pl/
|
||||
|
||||
@ -20,7 +20,7 @@ Tim Sutton
|
||||
Borys Jurgiel
|
||||
|
||||
Robert Szczepanek
|
||||
Cracow 2009
|
||||
Cracow 2011
|
||||
Poland
|
||||
|
||||
[1] http://robert.szczepanek.pl/
|
||||
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.2 KiB |
@ -1,559 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="24"
|
||||
height="24"
|
||||
id="svg5692"
|
||||
version="1.1"
|
||||
inkscape:version="0.47 r22583"
|
||||
sodipodi:docname="label-edit.svg"
|
||||
inkscape:export-filename="/media/home1/robert/svn/graphics/trunk/toolbar-icons/24x24/label-edit.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
style="display:inline">
|
||||
<title
|
||||
id="title2883">label edit</title>
|
||||
<defs
|
||||
id="defs5694">
|
||||
<linearGradient
|
||||
id="linearGradient3657">
|
||||
<stop
|
||||
style="stop-color:#fce94f;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3659" />
|
||||
<stop
|
||||
style="stop-color:#e7ce04;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3661" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2877">
|
||||
<stop
|
||||
style="stop-color:#edd400;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2879" />
|
||||
<stop
|
||||
style="stop-color:#c2ad00;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop2881" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4042">
|
||||
<stop
|
||||
style="stop-color:#f2d6a9;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4044" />
|
||||
<stop
|
||||
style="stop-color:#e9b96e;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4046" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2843">
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2845" />
|
||||
<stop
|
||||
style="stop-color:#c8c8c2;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop2847" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2835">
|
||||
<stop
|
||||
style="stop-color:#ccf2a6;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2837" />
|
||||
<stop
|
||||
style="stop-color:#8ae234;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop2839" />
|
||||
</linearGradient>
|
||||
<inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="0 : 16 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_z="32 : 16 : 1"
|
||||
inkscape:persp3d-origin="16 : 10.666667 : 1"
|
||||
id="perspective3257" />
|
||||
<inkscape:perspective
|
||||
id="perspective6979"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective7934"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective8023"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective8057"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective8095"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective8219"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective8279"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective3803"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective3869"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective3929"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective3968"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective4002"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective4032"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective4053"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective2905"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective2979"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective2842"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective2978"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective3238"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042"
|
||||
id="radialGradient4048"
|
||||
cx="0.5"
|
||||
cy="17.838446"
|
||||
fx="0.5"
|
||||
fy="17.838446"
|
||||
r="6.158739"
|
||||
gradientTransform="matrix(0.8118545,0.97422537,-1.1052481,0.9210397,19.809981,-0.4170292)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<inkscape:perspective
|
||||
id="perspective4058"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042-2"
|
||||
id="radialGradient4048-2"
|
||||
cx="8.5770311"
|
||||
cy="3.8663561"
|
||||
fx="8.5770311"
|
||||
fy="3.8663561"
|
||||
r="6.1587391"
|
||||
gradientTransform="matrix(0.81185454,1.1365964,-1.1707271,0.83623306,20.063146,-1.4817979)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
id="linearGradient4042-2">
|
||||
<stop
|
||||
style="stop-color:#f2d6a9;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4044-8" />
|
||||
<stop
|
||||
style="stop-color:#e9b96e;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4046-4" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
r="6.1587391"
|
||||
fy="17.838446"
|
||||
fx="0.5"
|
||||
cy="17.838446"
|
||||
cx="0.5"
|
||||
gradientTransform="matrix(0.8118545,0.97422537,-1.1052481,0.9210397,19.809981,-8.4170292)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient4067"
|
||||
xlink:href="#linearGradient4042-2"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042-2"
|
||||
id="radialGradient4094"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.81185454,1.1365964,-1.1707271,0.83623306,20.063146,-1.4817979)"
|
||||
cx="8.5770311"
|
||||
cy="3.8663561"
|
||||
fx="8.5770311"
|
||||
fy="3.8663561"
|
||||
r="6.1587391" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042-2"
|
||||
id="radialGradient4097"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.81185454,1.1365964,-1.1707271,0.83623306,20.063146,-1.4817979)"
|
||||
cx="8.5770311"
|
||||
cy="3.8663561"
|
||||
fx="8.5770311"
|
||||
fy="3.8663561"
|
||||
r="6.1587391" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042-2"
|
||||
id="radialGradient4100"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.81185454,1.1365964,-1.1707271,0.83623306,20.063146,-1.4817979)"
|
||||
cx="8.5770311"
|
||||
cy="3.8663561"
|
||||
fx="8.5770311"
|
||||
fy="3.8663561"
|
||||
r="6.1587391" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042-2"
|
||||
id="radialGradient4103"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.81185454,1.1365964,-1.1707271,0.83623306,20.063146,-1.4817979)"
|
||||
cx="8.5770311"
|
||||
cy="3.8663561"
|
||||
fx="8.5770311"
|
||||
fy="3.8663561"
|
||||
r="6.1587391" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042"
|
||||
id="radialGradient4106"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.8118545,0.97422537,-1.1052481,0.9210397,19.809981,-0.4170292)"
|
||||
cx="0.5"
|
||||
cy="17.838446"
|
||||
fx="0.5"
|
||||
fy="17.838446"
|
||||
r="6.158739" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042"
|
||||
id="radialGradient4109"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.8118545,0.97422537,-1.1052481,0.9210397,19.809981,-0.4170292)"
|
||||
cx="0.5"
|
||||
cy="17.838446"
|
||||
fx="0.5"
|
||||
fy="17.838446"
|
||||
r="6.158739" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042"
|
||||
id="radialGradient4112"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.8118545,0.97422537,-1.1052481,0.9210397,19.809981,-0.4170292)"
|
||||
cx="0.5"
|
||||
cy="17.838446"
|
||||
fx="0.5"
|
||||
fy="17.838446"
|
||||
r="6.158739" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042"
|
||||
id="radialGradient4115"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.8118545,0.97422537,-1.1052481,0.9210397,19.809981,-0.4170292)"
|
||||
cx="0.5"
|
||||
cy="17.838446"
|
||||
fx="0.5"
|
||||
fy="17.838446"
|
||||
r="6.158739" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042"
|
||||
id="radialGradient4118"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.8118545,0.97422537,-1.1052481,0.9210397,19.809981,-0.4170292)"
|
||||
cx="0.5"
|
||||
cy="17.838446"
|
||||
fx="0.5"
|
||||
fy="17.838446"
|
||||
r="6.158739" />
|
||||
<inkscape:perspective
|
||||
id="perspective8198"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3657"
|
||||
id="linearGradient3669"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="10.5"
|
||||
y1="10.5"
|
||||
x2="13.5"
|
||||
y2="18.5"
|
||||
gradientTransform="translate(0,-3)" />
|
||||
<inkscape:perspective
|
||||
id="perspective2937"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective3736"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective3790"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective5800"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3657"
|
||||
id="linearGradient3827"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="10.5"
|
||||
y1="10.5"
|
||||
x2="13.5"
|
||||
y2="18.5" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="29.833333"
|
||||
inkscape:cx="12"
|
||||
inkscape:cy="12"
|
||||
inkscape:current-layer="layer4"
|
||||
showgrid="true"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
borderlayer="false"
|
||||
inkscape:window-width="1280"
|
||||
inkscape:window-height="950"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="25"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-bbox="true">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid5700"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
dotted="true"
|
||||
originx="2.5px"
|
||||
originy="2.5px" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata5697">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>label edit</dc:title>
|
||||
<dc:date>2011-03-11</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Robert Szczepanek</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Robert Szczepanek</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>icon</rdf:li>
|
||||
<rdf:li>gis</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:coverage>GIS icons 0.2</dc:coverage>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer4"
|
||||
inkscape:label="1"
|
||||
style="display:inline"
|
||||
transform="translate(0,-8)">
|
||||
<path
|
||||
id="path4080"
|
||||
d="m 1.5,17.5 6,-5 14,0 0,10 -14,0 -6,-5 z"
|
||||
style="fill:url(#linearGradient3827);fill-opacity:1;fill-rule:evenodd;stroke:#c4a000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;display:inline;enable-background:new"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="caaaaaaaaaaaa"
|
||||
id="path4088"
|
||||
d="m 4.5,17.5 c 0.26906,0 0.9817365,0.650726 1.086463,1.173381 0.090941,0.453857 -0.2649148,0.892864 -0.478044,1.303756 -0.2109262,0.406645 -0.5558683,0.731678 -0.782254,1.129923 -0.1810022,0.318409 -0.4560143,0.633287 -0.456314,0.999546 -4.296e-4,0.525111 0.5118704,0.928029 0.651878,1.434132 0.085519,0.309136 0.1697372,0.641213 0.108646,0.956088 C 4.555066,24.884984 4.3373848,25.25283 4.065414,25.539831 3.6443564,25.984158 3.1115677,26.473521 2.5,26.5 c -0.7446583,0.03224 -1.76429774,-0.292893 -2,-1 -0.23570226,-0.707107 0.7850868,-1.2863 1,-2 C 1.6391216,23.037994 1.571627,22.5344 1.6751939,22.063148 1.8678454,21.186538 2.3361181,20.413931 2.5,19.5"
|
||||
style="fill:none;stroke:#888a85;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;display:inline;enable-background:new" />
|
||||
<g
|
||||
transform="translate(-0.036313,8)"
|
||||
style="display:inline"
|
||||
id="g5785">
|
||||
<rect
|
||||
rx="0.85714281"
|
||||
ry="0.85714281"
|
||||
y="13.5"
|
||||
x="13.5"
|
||||
height="10"
|
||||
width="10"
|
||||
id="rect10143-0-5-1-7"
|
||||
style="opacity:0.9;color:#000000;fill:#c4a000;fill-opacity:1;fill-rule:nonzero;stroke:#c4a000;stroke-width:0.99999994;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccssssc"
|
||||
id="path10149-9-8-4-6"
|
||||
d="m 13.5,18.569832 10,0 0,-3.2 c 0,-1.6 0,-1.6 -2.5,-1.6 -0.581791,0 -5.060198,0 -5.833333,0 -1.666667,0 -1.666667,0 -1.666667,1.6 0,0.8 0,1.6 0,3.2 z"
|
||||
style="opacity:0.5;fill:#fcffff;fill-rule:evenodd;stroke:none;display:inline;enable-background:new"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
transform="translate(13.997997,10.125677)"
|
||||
id="g5779">
|
||||
<path
|
||||
style="fill:#fcffff;fill-opacity:1;fill-rule:evenodd;stroke:#fcffff;stroke-width:0.25;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="M 2.547103,8.590529 7.483652,4.442168 8.5,5.5 4.538316,10.374323 2.547103,8.590529 z"
|
||||
id="path5781"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:#fcffff;fill-opacity:1;fill-rule:evenodd;stroke:#fcffff;stroke-width:0.25;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
d="m 1.675948,9.150556 2.136405,2.177889 -3.401655,1.223767 1.26525,-3.401656 z"
|
||||
id="path5783"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 845 B After Width: | Height: | Size: 917 B |
Before Width: | Height: | Size: 543 B After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 828 B After Width: | Height: | Size: 950 B |
@ -1,501 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="24"
|
||||
height="24"
|
||||
id="svg5692"
|
||||
version="1.1"
|
||||
inkscape:version="0.47 r22583"
|
||||
sodipodi:docname="label.svg"
|
||||
inkscape:export-filename="/media/home1/robert/svn/graphics/trunk/toolbar-icons/24x24/shortest-distance.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
style="display:inline">
|
||||
<title
|
||||
id="title2883">label</title>
|
||||
<defs
|
||||
id="defs5694">
|
||||
<linearGradient
|
||||
id="linearGradient3657">
|
||||
<stop
|
||||
style="stop-color:#fce94f;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3659" />
|
||||
<stop
|
||||
style="stop-color:#e7ce04;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3661" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2877">
|
||||
<stop
|
||||
style="stop-color:#edd400;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2879" />
|
||||
<stop
|
||||
style="stop-color:#c2ad00;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop2881" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4042">
|
||||
<stop
|
||||
style="stop-color:#f2d6a9;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4044" />
|
||||
<stop
|
||||
style="stop-color:#e9b96e;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4046" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2843">
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2845" />
|
||||
<stop
|
||||
style="stop-color:#c8c8c2;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop2847" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2835">
|
||||
<stop
|
||||
style="stop-color:#ccf2a6;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2837" />
|
||||
<stop
|
||||
style="stop-color:#8ae234;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop2839" />
|
||||
</linearGradient>
|
||||
<inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="0 : 16 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_z="32 : 16 : 1"
|
||||
inkscape:persp3d-origin="16 : 10.666667 : 1"
|
||||
id="perspective3257" />
|
||||
<inkscape:perspective
|
||||
id="perspective6979"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective7934"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective8023"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective8057"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective8095"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective8219"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective8279"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective3803"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective3869"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective3929"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective3968"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective4002"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective4032"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective4053"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective2905"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective2979"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective2842"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective2978"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective3238"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042"
|
||||
id="radialGradient4048"
|
||||
cx="0.5"
|
||||
cy="17.838446"
|
||||
fx="0.5"
|
||||
fy="17.838446"
|
||||
r="6.158739"
|
||||
gradientTransform="matrix(0.8118545,0.97422537,-1.1052481,0.9210397,19.809981,-0.4170292)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<inkscape:perspective
|
||||
id="perspective4058"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042-2"
|
||||
id="radialGradient4048-2"
|
||||
cx="8.5770311"
|
||||
cy="3.8663561"
|
||||
fx="8.5770311"
|
||||
fy="3.8663561"
|
||||
r="6.1587391"
|
||||
gradientTransform="matrix(0.81185454,1.1365964,-1.1707271,0.83623306,20.063146,-1.4817979)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
id="linearGradient4042-2">
|
||||
<stop
|
||||
style="stop-color:#f2d6a9;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4044-8" />
|
||||
<stop
|
||||
style="stop-color:#e9b96e;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4046-4" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
r="6.1587391"
|
||||
fy="17.838446"
|
||||
fx="0.5"
|
||||
cy="17.838446"
|
||||
cx="0.5"
|
||||
gradientTransform="matrix(0.8118545,0.97422537,-1.1052481,0.9210397,19.809981,-8.4170292)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient4067"
|
||||
xlink:href="#linearGradient4042-2"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042-2"
|
||||
id="radialGradient4094"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.81185454,1.1365964,-1.1707271,0.83623306,20.063146,-1.4817979)"
|
||||
cx="8.5770311"
|
||||
cy="3.8663561"
|
||||
fx="8.5770311"
|
||||
fy="3.8663561"
|
||||
r="6.1587391" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042-2"
|
||||
id="radialGradient4097"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.81185454,1.1365964,-1.1707271,0.83623306,20.063146,-1.4817979)"
|
||||
cx="8.5770311"
|
||||
cy="3.8663561"
|
||||
fx="8.5770311"
|
||||
fy="3.8663561"
|
||||
r="6.1587391" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042-2"
|
||||
id="radialGradient4100"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.81185454,1.1365964,-1.1707271,0.83623306,20.063146,-1.4817979)"
|
||||
cx="8.5770311"
|
||||
cy="3.8663561"
|
||||
fx="8.5770311"
|
||||
fy="3.8663561"
|
||||
r="6.1587391" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042-2"
|
||||
id="radialGradient4103"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.81185454,1.1365964,-1.1707271,0.83623306,20.063146,-1.4817979)"
|
||||
cx="8.5770311"
|
||||
cy="3.8663561"
|
||||
fx="8.5770311"
|
||||
fy="3.8663561"
|
||||
r="6.1587391" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042"
|
||||
id="radialGradient4106"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.8118545,0.97422537,-1.1052481,0.9210397,19.809981,-0.4170292)"
|
||||
cx="0.5"
|
||||
cy="17.838446"
|
||||
fx="0.5"
|
||||
fy="17.838446"
|
||||
r="6.158739" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042"
|
||||
id="radialGradient4109"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.8118545,0.97422537,-1.1052481,0.9210397,19.809981,-0.4170292)"
|
||||
cx="0.5"
|
||||
cy="17.838446"
|
||||
fx="0.5"
|
||||
fy="17.838446"
|
||||
r="6.158739" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042"
|
||||
id="radialGradient4112"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.8118545,0.97422537,-1.1052481,0.9210397,19.809981,-0.4170292)"
|
||||
cx="0.5"
|
||||
cy="17.838446"
|
||||
fx="0.5"
|
||||
fy="17.838446"
|
||||
r="6.158739" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042"
|
||||
id="radialGradient4115"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.8118545,0.97422537,-1.1052481,0.9210397,19.809981,-0.4170292)"
|
||||
cx="0.5"
|
||||
cy="17.838446"
|
||||
fx="0.5"
|
||||
fy="17.838446"
|
||||
r="6.158739" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042"
|
||||
id="radialGradient4118"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.8118545,0.97422537,-1.1052481,0.9210397,19.809981,-0.4170292)"
|
||||
cx="0.5"
|
||||
cy="17.838446"
|
||||
fx="0.5"
|
||||
fy="17.838446"
|
||||
r="6.158739" />
|
||||
<inkscape:perspective
|
||||
id="perspective8198"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3657"
|
||||
id="linearGradient3663"
|
||||
x1="10.5"
|
||||
y1="10.5"
|
||||
x2="13.5"
|
||||
y2="18.5"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3657"
|
||||
id="linearGradient3669"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="10.5"
|
||||
y1="10.5"
|
||||
x2="13.5"
|
||||
y2="18.5"
|
||||
gradientTransform="translate(0,-3)" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="29.833333"
|
||||
inkscape:cx="12"
|
||||
inkscape:cy="12"
|
||||
inkscape:current-layer="layer4"
|
||||
showgrid="true"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
borderlayer="false"
|
||||
inkscape:window-width="1280"
|
||||
inkscape:window-height="950"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="25"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-bbox="true">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid5700"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
dotted="true"
|
||||
originx="2.5px"
|
||||
originy="2.5px" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata5697">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>label</dc:title>
|
||||
<dc:date>2011-03-11</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Robert Szczepanek</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Robert Szczepanek</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>icon</rdf:li>
|
||||
<rdf:li>gis</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:coverage>GIS icons 0.2</dc:coverage>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer4"
|
||||
inkscape:label="1"
|
||||
style="display:inline"
|
||||
transform="translate(0,-8)">
|
||||
<g
|
||||
id="g3665"
|
||||
transform="translate(0,3)">
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
style="fill:url(#linearGradient3669);fill-opacity:1;fill-rule:evenodd;stroke:#c4a000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;display:inline;enable-background:new"
|
||||
d="m 1.5,14.5 6,-5 15,0 0,10 -15,0 -6,-5 z"
|
||||
id="path4080" />
|
||||
<path
|
||||
style="fill:none;stroke:#888a85;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;display:inline;enable-background:new"
|
||||
d="m 4.5,14.5 c 0.26906,0 0.9817365,0.650726 1.086463,1.173381 0.090941,0.453857 -0.2649148,0.892864 -0.478044,1.303756 -0.2109262,0.406645 -0.5558683,0.731678 -0.782254,1.129923 -0.1810022,0.318409 -0.4560143,0.633287 -0.456314,0.999546 -4.296e-4,0.525111 0.5118704,0.928029 0.651878,1.434132 0.085519,0.309136 0.1697372,0.641213 0.108646,0.956088 C 4.555066,21.884984 4.3373848,22.25283 4.065414,22.539831 3.6443564,22.984158 3.1115677,23.473521 2.5,23.5 c -0.7446583,0.03224 -1.76429774,-0.292893 -2,-1 -0.23570226,-0.707107 0.7850868,-1.2863 1,-2 C 1.6391216,20.037994 1.571627,19.5344 1.6751939,19.063148 1.8678454,18.186538 2.3361181,17.413931 2.5,16.5"
|
||||
id="path4088"
|
||||
sodipodi:nodetypes="caaaaaaaaaaaa" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 923 B After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 636 B After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.2 KiB |
@ -1,533 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="24"
|
||||
height="24"
|
||||
id="svg5692"
|
||||
version="1.1"
|
||||
inkscape:version="0.47 r22583"
|
||||
sodipodi:docname="label-move.svg"
|
||||
inkscape:export-filename="/media/home1/robert/svn/graphics/trunk/toolbar-icons/24x24/label-move.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
style="display:inline">
|
||||
<title
|
||||
id="title2883">label move</title>
|
||||
<defs
|
||||
id="defs5694">
|
||||
<linearGradient
|
||||
id="linearGradient3657">
|
||||
<stop
|
||||
style="stop-color:#fce94f;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3659" />
|
||||
<stop
|
||||
style="stop-color:#e7ce04;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3661" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2877">
|
||||
<stop
|
||||
style="stop-color:#edd400;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2879" />
|
||||
<stop
|
||||
style="stop-color:#c2ad00;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop2881" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4042">
|
||||
<stop
|
||||
style="stop-color:#f2d6a9;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4044" />
|
||||
<stop
|
||||
style="stop-color:#e9b96e;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4046" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2843">
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2845" />
|
||||
<stop
|
||||
style="stop-color:#c8c8c2;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop2847" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2835">
|
||||
<stop
|
||||
style="stop-color:#ccf2a6;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2837" />
|
||||
<stop
|
||||
style="stop-color:#8ae234;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop2839" />
|
||||
</linearGradient>
|
||||
<inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="0 : 16 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_z="32 : 16 : 1"
|
||||
inkscape:persp3d-origin="16 : 10.666667 : 1"
|
||||
id="perspective3257" />
|
||||
<inkscape:perspective
|
||||
id="perspective6979"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective7934"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective8023"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective8057"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective8095"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective8219"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective8279"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective3803"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective3869"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective3929"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective3968"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective4002"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective4032"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective4053"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective2905"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective2979"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective2842"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective2978"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective3238"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042"
|
||||
id="radialGradient4048"
|
||||
cx="0.5"
|
||||
cy="17.838446"
|
||||
fx="0.5"
|
||||
fy="17.838446"
|
||||
r="6.158739"
|
||||
gradientTransform="matrix(0.8118545,0.97422537,-1.1052481,0.9210397,19.809981,-0.4170292)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<inkscape:perspective
|
||||
id="perspective4058"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042-2"
|
||||
id="radialGradient4048-2"
|
||||
cx="8.5770311"
|
||||
cy="3.8663561"
|
||||
fx="8.5770311"
|
||||
fy="3.8663561"
|
||||
r="6.1587391"
|
||||
gradientTransform="matrix(0.81185454,1.1365964,-1.1707271,0.83623306,20.063146,-1.4817979)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
id="linearGradient4042-2">
|
||||
<stop
|
||||
style="stop-color:#f2d6a9;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4044-8" />
|
||||
<stop
|
||||
style="stop-color:#e9b96e;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4046-4" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
r="6.1587391"
|
||||
fy="17.838446"
|
||||
fx="0.5"
|
||||
cy="17.838446"
|
||||
cx="0.5"
|
||||
gradientTransform="matrix(0.8118545,0.97422537,-1.1052481,0.9210397,19.809981,-8.4170292)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient4067"
|
||||
xlink:href="#linearGradient4042-2"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042-2"
|
||||
id="radialGradient4094"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.81185454,1.1365964,-1.1707271,0.83623306,20.063146,-1.4817979)"
|
||||
cx="8.5770311"
|
||||
cy="3.8663561"
|
||||
fx="8.5770311"
|
||||
fy="3.8663561"
|
||||
r="6.1587391" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042-2"
|
||||
id="radialGradient4097"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.81185454,1.1365964,-1.1707271,0.83623306,20.063146,-1.4817979)"
|
||||
cx="8.5770311"
|
||||
cy="3.8663561"
|
||||
fx="8.5770311"
|
||||
fy="3.8663561"
|
||||
r="6.1587391" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042-2"
|
||||
id="radialGradient4100"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.81185454,1.1365964,-1.1707271,0.83623306,20.063146,-1.4817979)"
|
||||
cx="8.5770311"
|
||||
cy="3.8663561"
|
||||
fx="8.5770311"
|
||||
fy="3.8663561"
|
||||
r="6.1587391" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042-2"
|
||||
id="radialGradient4103"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.81185454,1.1365964,-1.1707271,0.83623306,20.063146,-1.4817979)"
|
||||
cx="8.5770311"
|
||||
cy="3.8663561"
|
||||
fx="8.5770311"
|
||||
fy="3.8663561"
|
||||
r="6.1587391" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042"
|
||||
id="radialGradient4106"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.8118545,0.97422537,-1.1052481,0.9210397,19.809981,-0.4170292)"
|
||||
cx="0.5"
|
||||
cy="17.838446"
|
||||
fx="0.5"
|
||||
fy="17.838446"
|
||||
r="6.158739" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042"
|
||||
id="radialGradient4109"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.8118545,0.97422537,-1.1052481,0.9210397,19.809981,-0.4170292)"
|
||||
cx="0.5"
|
||||
cy="17.838446"
|
||||
fx="0.5"
|
||||
fy="17.838446"
|
||||
r="6.158739" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042"
|
||||
id="radialGradient4112"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.8118545,0.97422537,-1.1052481,0.9210397,19.809981,-0.4170292)"
|
||||
cx="0.5"
|
||||
cy="17.838446"
|
||||
fx="0.5"
|
||||
fy="17.838446"
|
||||
r="6.158739" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042"
|
||||
id="radialGradient4115"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.8118545,0.97422537,-1.1052481,0.9210397,19.809981,-0.4170292)"
|
||||
cx="0.5"
|
||||
cy="17.838446"
|
||||
fx="0.5"
|
||||
fy="17.838446"
|
||||
r="6.158739" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042"
|
||||
id="radialGradient4118"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.8118545,0.97422537,-1.1052481,0.9210397,19.809981,-0.4170292)"
|
||||
cx="0.5"
|
||||
cy="17.838446"
|
||||
fx="0.5"
|
||||
fy="17.838446"
|
||||
r="6.158739" />
|
||||
<inkscape:perspective
|
||||
id="perspective8198"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3657"
|
||||
id="linearGradient3669"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="10.5"
|
||||
y1="10.5"
|
||||
x2="13.5"
|
||||
y2="18.5"
|
||||
gradientTransform="translate(0,-3)" />
|
||||
<inkscape:perspective
|
||||
id="perspective2937"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3657"
|
||||
id="linearGradient3975"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="10.5"
|
||||
y1="10.5"
|
||||
x2="13.5"
|
||||
y2="18.5" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="29.833333"
|
||||
inkscape:cx="12"
|
||||
inkscape:cy="12"
|
||||
inkscape:current-layer="layer4"
|
||||
showgrid="true"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
borderlayer="false"
|
||||
inkscape:window-width="1280"
|
||||
inkscape:window-height="950"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="25"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-bbox="true">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid5700"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
dotted="true"
|
||||
originx="2.5px"
|
||||
originy="2.5px" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata5697">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>label move</dc:title>
|
||||
<dc:date>2011-03-11</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Robert Szczepanek</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Robert Szczepanek</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>icon</rdf:li>
|
||||
<rdf:li>gis</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:coverage>GIS icons 0.2</dc:coverage>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer4"
|
||||
inkscape:label="1"
|
||||
style="display:inline"
|
||||
transform="translate(0,-8)">
|
||||
<path
|
||||
id="path4080"
|
||||
d="m 1.5,17.5 6,-5 14,0 0,10 -14,0 -6,-5 z"
|
||||
style="fill:url(#linearGradient3975);fill-opacity:1;fill-rule:evenodd;stroke:#c4a000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;display:inline;enable-background:new"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="caaaaaaaaaaaa"
|
||||
id="path4088"
|
||||
d="m 4.5,17.5 c 0.26906,0 0.9817365,0.650726 1.086463,1.173381 0.090941,0.453857 -0.2649148,0.892864 -0.478044,1.303756 -0.2109262,0.406645 -0.5558683,0.731678 -0.782254,1.129923 -0.1810022,0.318409 -0.4560143,0.633287 -0.456314,0.999546 -4.296e-4,0.525111 0.5118704,0.928029 0.651878,1.434132 0.085519,0.309136 0.1697372,0.641213 0.108646,0.956088 C 4.555066,24.884984 4.3373848,25.25283 4.065414,25.539831 3.6443564,25.984158 3.1115677,26.473521 2.5,26.5 c -0.7446583,0.03224 -1.76429774,-0.292893 -2,-1 -0.23570226,-0.707107 0.7850868,-1.2863 1,-2 C 1.6391216,23.037994 1.571627,22.5344 1.6751939,22.063148 1.8678454,21.186538 2.3361181,20.413931 2.5,19.5"
|
||||
style="fill:none;stroke:#888a85;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;display:inline;enable-background:new" />
|
||||
<g
|
||||
transform="translate(0,8)"
|
||||
style="display:inline"
|
||||
id="g2923">
|
||||
<rect
|
||||
rx="0.85714281"
|
||||
style="opacity:0.9;color:#000000;fill:#204a87;fill-opacity:1;fill-rule:nonzero;stroke:#204a87;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
id="rect15022-0-4-8-2-7"
|
||||
width="10"
|
||||
height="10"
|
||||
x="13.5"
|
||||
y="13.569834"
|
||||
ry="0.85714281" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="opacity:0.5;fill:#fcffff;fill-rule:evenodd;stroke:none;display:inline;enable-background:new"
|
||||
d="m 13.5,18.569833 10,0 0,-3.333333 c 0,-1.666667 0,-1.666667 -2.5,-1.666667 -0.581791,0 -5.060198,0 -5.833333,0 -1.666667,0 -1.666667,0 -1.666667,1.666667 0,0.833333 0,1.666666 0,3.333333 z"
|
||||
id="path15024-9-6-7-2-8"
|
||||
sodipodi:nodetypes="ccssssc" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccc"
|
||||
id="path8186"
|
||||
d="M 23.5,18.569832 20.5,13.5 l 0,3 -4,0 0,4 4,0 0,3 3,-4.930168 z"
|
||||
style="color:#000000;fill:#eeeeec;stroke:#eeeeec;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<path
|
||||
id="path8188"
|
||||
d="m 14.5,16.5 0,4"
|
||||
style="color:#000000;fill:#eeeeec;fill-opacity:1;fill-rule:evenodd;stroke:#eeeeec;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 19 KiB |
Before Width: | Height: | Size: 903 B After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.3 KiB |
@ -1,541 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="24"
|
||||
height="24"
|
||||
id="svg5692"
|
||||
version="1.1"
|
||||
inkscape:version="0.47 r22583"
|
||||
sodipodi:docname="label-rotate.svg"
|
||||
inkscape:export-filename="/media/home1/robert/svn/graphics/trunk/toolbar-icons/24x24/label-rotate.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
style="display:inline">
|
||||
<title
|
||||
id="title2883">label rotate</title>
|
||||
<defs
|
||||
id="defs5694">
|
||||
<linearGradient
|
||||
id="linearGradient3657">
|
||||
<stop
|
||||
style="stop-color:#fce94f;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3659" />
|
||||
<stop
|
||||
style="stop-color:#e7ce04;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3661" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2877">
|
||||
<stop
|
||||
style="stop-color:#edd400;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2879" />
|
||||
<stop
|
||||
style="stop-color:#c2ad00;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop2881" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4042">
|
||||
<stop
|
||||
style="stop-color:#f2d6a9;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4044" />
|
||||
<stop
|
||||
style="stop-color:#e9b96e;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4046" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2843">
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2845" />
|
||||
<stop
|
||||
style="stop-color:#c8c8c2;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop2847" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2835">
|
||||
<stop
|
||||
style="stop-color:#ccf2a6;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2837" />
|
||||
<stop
|
||||
style="stop-color:#8ae234;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop2839" />
|
||||
</linearGradient>
|
||||
<inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="0 : 16 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_z="32 : 16 : 1"
|
||||
inkscape:persp3d-origin="16 : 10.666667 : 1"
|
||||
id="perspective3257" />
|
||||
<inkscape:perspective
|
||||
id="perspective6979"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective7934"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective8023"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective8057"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective8095"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective8219"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective8279"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective3803"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective3869"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective3929"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective3968"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective4002"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective4032"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective4053"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective2905"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective2979"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective2842"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective2978"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective3238"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042"
|
||||
id="radialGradient4048"
|
||||
cx="0.5"
|
||||
cy="17.838446"
|
||||
fx="0.5"
|
||||
fy="17.838446"
|
||||
r="6.158739"
|
||||
gradientTransform="matrix(0.8118545,0.97422537,-1.1052481,0.9210397,19.809981,-0.4170292)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<inkscape:perspective
|
||||
id="perspective4058"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042-2"
|
||||
id="radialGradient4048-2"
|
||||
cx="8.5770311"
|
||||
cy="3.8663561"
|
||||
fx="8.5770311"
|
||||
fy="3.8663561"
|
||||
r="6.1587391"
|
||||
gradientTransform="matrix(0.81185454,1.1365964,-1.1707271,0.83623306,20.063146,-1.4817979)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
id="linearGradient4042-2">
|
||||
<stop
|
||||
style="stop-color:#f2d6a9;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4044-8" />
|
||||
<stop
|
||||
style="stop-color:#e9b96e;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4046-4" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
r="6.1587391"
|
||||
fy="17.838446"
|
||||
fx="0.5"
|
||||
cy="17.838446"
|
||||
cx="0.5"
|
||||
gradientTransform="matrix(0.8118545,0.97422537,-1.1052481,0.9210397,19.809981,-8.4170292)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient4067"
|
||||
xlink:href="#linearGradient4042-2"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042-2"
|
||||
id="radialGradient4094"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.81185454,1.1365964,-1.1707271,0.83623306,20.063146,-1.4817979)"
|
||||
cx="8.5770311"
|
||||
cy="3.8663561"
|
||||
fx="8.5770311"
|
||||
fy="3.8663561"
|
||||
r="6.1587391" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042-2"
|
||||
id="radialGradient4097"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.81185454,1.1365964,-1.1707271,0.83623306,20.063146,-1.4817979)"
|
||||
cx="8.5770311"
|
||||
cy="3.8663561"
|
||||
fx="8.5770311"
|
||||
fy="3.8663561"
|
||||
r="6.1587391" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042-2"
|
||||
id="radialGradient4100"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.81185454,1.1365964,-1.1707271,0.83623306,20.063146,-1.4817979)"
|
||||
cx="8.5770311"
|
||||
cy="3.8663561"
|
||||
fx="8.5770311"
|
||||
fy="3.8663561"
|
||||
r="6.1587391" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042-2"
|
||||
id="radialGradient4103"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.81185454,1.1365964,-1.1707271,0.83623306,20.063146,-1.4817979)"
|
||||
cx="8.5770311"
|
||||
cy="3.8663561"
|
||||
fx="8.5770311"
|
||||
fy="3.8663561"
|
||||
r="6.1587391" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042"
|
||||
id="radialGradient4106"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.8118545,0.97422537,-1.1052481,0.9210397,19.809981,-0.4170292)"
|
||||
cx="0.5"
|
||||
cy="17.838446"
|
||||
fx="0.5"
|
||||
fy="17.838446"
|
||||
r="6.158739" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042"
|
||||
id="radialGradient4109"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.8118545,0.97422537,-1.1052481,0.9210397,19.809981,-0.4170292)"
|
||||
cx="0.5"
|
||||
cy="17.838446"
|
||||
fx="0.5"
|
||||
fy="17.838446"
|
||||
r="6.158739" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042"
|
||||
id="radialGradient4112"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.8118545,0.97422537,-1.1052481,0.9210397,19.809981,-0.4170292)"
|
||||
cx="0.5"
|
||||
cy="17.838446"
|
||||
fx="0.5"
|
||||
fy="17.838446"
|
||||
r="6.158739" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042"
|
||||
id="radialGradient4115"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.8118545,0.97422537,-1.1052481,0.9210397,19.809981,-0.4170292)"
|
||||
cx="0.5"
|
||||
cy="17.838446"
|
||||
fx="0.5"
|
||||
fy="17.838446"
|
||||
r="6.158739" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4042"
|
||||
id="radialGradient4118"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.8118545,0.97422537,-1.1052481,0.9210397,19.809981,-0.4170292)"
|
||||
cx="0.5"
|
||||
cy="17.838446"
|
||||
fx="0.5"
|
||||
fy="17.838446"
|
||||
r="6.158739" />
|
||||
<inkscape:perspective
|
||||
id="perspective8198"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3657"
|
||||
id="linearGradient3669"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="10.5"
|
||||
y1="10.5"
|
||||
x2="13.5"
|
||||
y2="18.5"
|
||||
gradientTransform="translate(0,-3)" />
|
||||
<inkscape:perspective
|
||||
id="perspective2937"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective3736"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3657"
|
||||
id="linearGradient4049"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="10.5"
|
||||
y1="10.5"
|
||||
x2="13.5"
|
||||
y2="18.5" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="29.833333"
|
||||
inkscape:cx="12"
|
||||
inkscape:cy="12"
|
||||
inkscape:current-layer="layer4"
|
||||
showgrid="true"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
borderlayer="false"
|
||||
inkscape:window-width="1280"
|
||||
inkscape:window-height="950"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="25"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-bbox="true">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid5700"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
dotted="true"
|
||||
originx="2.5px"
|
||||
originy="2.5px" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata5697">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>label rotate</dc:title>
|
||||
<dc:date>2011-03-11</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Robert Szczepanek</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Robert Szczepanek</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>icon</rdf:li>
|
||||
<rdf:li>gis</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:coverage>GIS icons 0.2</dc:coverage>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer4"
|
||||
inkscape:label="1"
|
||||
style="display:inline"
|
||||
transform="translate(0,-8)">
|
||||
<path
|
||||
id="path4080"
|
||||
d="m 1.5,17.5 6,-5 14,0 0,10 -14,0 -6,-5 z"
|
||||
style="fill:url(#linearGradient4049);fill-opacity:1;fill-rule:evenodd;stroke:#c4a000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;display:inline;enable-background:new"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="caaaaaaaaaaaa"
|
||||
id="path4088"
|
||||
d="m 4.5,17.5 c 0.26906,0 0.9817365,0.650726 1.086463,1.173381 0.090941,0.453857 -0.2649148,0.892864 -0.478044,1.303756 -0.2109262,0.406645 -0.5558683,0.731678 -0.782254,1.129923 -0.1810022,0.318409 -0.4560143,0.633287 -0.456314,0.999546 -4.296e-4,0.525111 0.5118704,0.928029 0.651878,1.434132 0.085519,0.309136 0.1697372,0.641213 0.108646,0.956088 C 4.555066,24.884984 4.3373848,25.25283 4.065414,25.539831 3.6443564,25.984158 3.1115677,26.473521 2.5,26.5 c -0.7446583,0.03224 -1.76429774,-0.292893 -2,-1 -0.23570226,-0.707107 0.7850868,-1.2863 1,-2 C 1.6391216,23.037994 1.571627,22.5344 1.6751939,22.063148 1.8678454,21.186538 2.3361181,20.413931 2.5,19.5"
|
||||
style="fill:none;stroke:#888a85;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;display:inline;enable-background:new" />
|
||||
<g
|
||||
transform="translate(0,8)"
|
||||
style="display:inline"
|
||||
id="g3722">
|
||||
<rect
|
||||
rx="0.85714281"
|
||||
style="opacity:0.9;color:#000000;fill:#204a87;fill-opacity:1;fill-rule:nonzero;stroke:#204a87;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
id="rect15022-0-4-8-2-8"
|
||||
width="10"
|
||||
height="10"
|
||||
x="13.5"
|
||||
y="13.500001"
|
||||
ry="0.85714281" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="opacity:0.5;fill:#fcffff;fill-rule:evenodd;stroke:none;display:inline;enable-background:new"
|
||||
d="m 13.5,18.5 10,0 0,-3.333333 C 23.5,13.5 23.5,13.5 21,13.5 c -0.581791,0 -5.060198,0 -5.833333,0 C 13.5,13.5 13.5,13.5 13.5,15.166667 13.5,16 13.5,16.833333 13.5,18.5 z"
|
||||
id="path15024-9-6-7-2-89"
|
||||
sodipodi:nodetypes="ccssssc" />
|
||||
<path
|
||||
sodipodi:nodetypes="cssc"
|
||||
id="path2946"
|
||||
d="m 21.5,18.5 c 0,-2 -0.927374,-3 -2.963687,-3 C 16.5,15.5 15.5,16.5 15.5,18.569832 15.5,20.5 17.5,21.5 17.5,21.5"
|
||||
style="color:#000000;fill:none;stroke:#eeeeec;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccc"
|
||||
id="path2948"
|
||||
d="m 15.5,22.5 3.036313,0 0,-3"
|
||||
style="color:#000000;fill:none;stroke:#eeeeec;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 19 KiB |
Before Width: | Height: | Size: 647 B After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 629 B After Width: | Height: | Size: 1.0 KiB |
BIN
images/themes/gis/mActionSelectFreehand.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
images/themes/gis/mActionSelectPolygon.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
images/themes/gis/mActionSelectRadius.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
images/themes/gis/mActionSelectRectangle.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 665 B After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 845 B After Width: | Height: | Size: 917 B |
@ -1,6 +0,0 @@
|
||||
#SUBDIRS (plugins)
|
||||
|
||||
FILE (GLOB IMAGES *.png)
|
||||
|
||||
INSTALL (FILES ${IMAGES}
|
||||
DESTINATION ${QGIS_DATA_DIR}/themes/newgis)
|
@ -1,32 +0,0 @@
|
||||
LICENSE
|
||||
|
||||
Original GIS icons theme was created by Robert Szczepanek [1] and is licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License [2].
|
||||
Fill free to use it for GIS software or for any other purposes. I only ask you to let me know about that and to include licence.txt file in your work.
|
||||
|
||||
TITLE: gis-0.1
|
||||
DESCRIPTION: GIS icon theme
|
||||
AUTHOR: Robert Szczepanek
|
||||
CONTACT: robert at szczepanek pl
|
||||
SITE: http://robert.szczepanek.pl/
|
||||
|
||||
|
||||
UPDATE November 9 2009
|
||||
|
||||
Since the original work provided by Robert above, these icons have been augmented and sometimes modified by Anita Graser ( anitagraser at gmx.at ).
|
||||
|
||||
ACKNOWLEDGEMENTS
|
||||
|
||||
OSGeo community [3] helped in whole design process.
|
||||
Especially I want to acknowledge GRASS and QGIS team members for creative comments and support:
|
||||
Martin Landa
|
||||
Michael Barton
|
||||
Tim Sutton
|
||||
Borys Jurgiel
|
||||
|
||||
Robert Szczepanek
|
||||
Cracow 2009
|
||||
Poland
|
||||
|
||||
[1] http://robert.szczepanek.pl/
|
||||
[2] http://creativecommons.org/licenses/by-sa/3.0/
|
||||
[3] http://www.osgeo.org/
|
Before Width: | Height: | Size: 714 B |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 759 B |
Before Width: | Height: | Size: 599 B |
Before Width: | Height: | Size: 976 B |
Before Width: | Height: | Size: 724 B |
Before Width: | Height: | Size: 680 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 415 B |
Before Width: | Height: | Size: 769 B |
Before Width: | Height: | Size: 733 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 805 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 787 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 521 B |
Before Width: | Height: | Size: 770 B |
Before Width: | Height: | Size: 883 B |
Before Width: | Height: | Size: 878 B |
Before Width: | Height: | Size: 802 B |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 955 B |
Before Width: | Height: | Size: 533 B |
Before Width: | Height: | Size: 605 B |
Before Width: | Height: | Size: 1009 B |
Before Width: | Height: | Size: 551 B |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 738 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1003 B |
Before Width: | Height: | Size: 914 B |
Before Width: | Height: | Size: 787 B |
Before Width: | Height: | Size: 980 B |
Before Width: | Height: | Size: 532 B |