Changes between Version 44 and Version 45 of Clients


Ignore:
Timestamp:
Apr 17, 2018, 8:26:54 AM (6 years ago)
Author:
Bang Pham Huu
Comment:

Update documents about QGIS and GDAL

Legend:

Unmodified
Added
Removed
Modified
  • Clients

    v44 v45  
    105105=== QGIS (Web GIS) ===
    106106
    107 This plugin enables the direct download, processing, integration and usage of Coverages from an OGC compliant WCPS 1.0 enabled servers within the QGIS software (v2.0+ supported). The plugin has been submitted to the official QGIS plugin repository, approval is pending; in the meantime it can be installed manually:
     107This plugin enables the direct download, processing, integration and usage of Coverages from an OGC compliant WCPS 1.0 enabled servers within the QGIS software (tested with QGIS v2.14). The plugin has been submitted to the official QGIS plugin repository named `QgsWcpsClient1`.
    108108
    109 - get the rasdaman source tree:
    110 {{{
    111 git clone git://rasdaman.org/rasdaman.git
    112 }}}
    113 - the plugin can be found in directory `rasdaman/applications/qgis-wcps`
    114 - copy the `qgis-wcps/QgsWcpsClient1` directory to your `qgis-python-plugin directory`, usually located in `$HOME/.qgis2/python/plugins`:
    115 {{{
    116 mkdir -p $HOME/.qgis2/python/plugins/
    117 cp -r rasdaman/applications/qgis-wcps/QgsWcpsClient1 $HOME/.qgis2/python/plugins/
    118 }}}
    119 - now you can start QGIS and access the `QgsWcpsClient1` plug-in via the `Qgis Menu → Plugins → WcpsClient1 → WCPS 1.0 Client`
     109- The source code of the plugin could be found at `http://rasdaman.org/browser/applications/qgis-wcps`.
     110- To install this plugin in QGIS, select QGIS menu `Plugins` -> `Manage and Install Plugins` -> Search: `wcps` (it returns the plugin `QgsWcpsClient1`) -> click on `install` button).
     111- Now you can access the `QgsWcpsClient1` plug-in via the `Qgis Menu → Plugins → WcpsClient1 → WCPS 1.0 Client`.
     112- Select `Help` tab from `QgsWcpsClient1` plug-in's window and read to have some information about how to connect to a running WCPS endpoint from Petascope.
    120113
    121114=== !MapServer (Web GIS server) ===
     
    129122=== GDAL (image processing library) ===
    130123
    131 GDAl [http://www.gdal.org/frmt_rasdaman.html comes with a rasdaman driver].
     124Rasdaman uses GDAL underneath to encode/decode raster data. The library can be installed manually if [http://rasdaman.org/wiki/InstallFromSource#Packagesrequired install from source] or automatically if install rasdaman via [http://rasdaman.org/wiki/Installer rasdaman installer].
    132125
    133 '''''NOTE''''' ''this has not been tested with the latest versions of rasdaman. In particular it may not work with the default rasdaman configuration (rasnet protocol).''
    134 
    135 To compile GDAL with rasdaman support:
    136  1. Get latest GDAL source
    137  2. Compile and install (in the /home/rasdaman/gdal)
    138 {{{
    139 #!sh
    140 ./configure --prefix=/home/rasdaman/gdal --mandir=/home/rasdaman/gdal/share/man --includedir=/home/rasdaman/gdal/include/gdal
    141   --with-threads --with-grass=no --with-hide-internal-symbols=yes --with-libtiff=internal --with-geotiff=internal --with-jasper
    142   --with-netcdf --with-xerces --with-geos --with-sqlite3 --with-curl --with-pg --with-ogdi --with-python --with-odbc
    143   --with-static-proj4=yes --with-spatialite=/usr --with-cfitsio=no --with-epsilon=/usr --with-rasdaman=/home/rasdaman/install
    144 make
    145 make install
    146 }}}
    147   * '''Note:''' rasdaman should be compiled with `-fPIC`, so make sure to specify `--with-pic` when running `./configure` on rasdaman.
    148  3. Setup environment
    149 {{{
    150 #!sh
    151 export GDAL_HOME=/home/rasdaman/gdal
    152 export PATH=$PATH:$GDAL_HOME/bin
    153 export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$GDAL_HOME/lib
    154 }}}
    155126
    156127=== THREDDS (scientific data catalog) ===