| 39 | | == QGIS == |
| 40 | | |
| 41 | | 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: |
| 42 | | |
| 43 | | - get the rasdaman source tree: |
| 44 | | {{{ |
| 45 | | git clone git://rasdaman.org/rasdaman.git |
| 46 | | }}} |
| 47 | | - the plugin can be found in directory `rasdaman/applications/qgis-wcps` |
| 48 | | - copy the `qgis-wcps/QgsWcpsClient1` directory to your `qgis-python-plugin directory`, usually located in `$HOME/.qgis2/python/plugins`: |
| 49 | | {{{ |
| 50 | | mkdir -p $HOME/.qgis2/python/plugins/ |
| 51 | | cp -r rasdaman/applications/qgis-wcps/QgsWcpsClient1 $HOME/.qgis2/python/plugins/ |
| 52 | | }}} |
| 53 | | - now you can start QGIS and access the `QgsWcpsClient1` plug-in via the `Qgis Menu → Plugins → WcpsClient1 → WCPS 1.0 Client` |
| 54 | | |
| 55 | | == !OpenLayers == |
| 56 | | |
| 57 | | documentation tbd |
| 58 | | |
| 59 | | == ncWMS == |
| 60 | | |
| 61 | | documentation tbd |
| 62 | | |
| 63 | | == THREDDS == |
| 64 | | |
| 65 | | documentation tbd |
| 66 | | |
| 67 | | == GDAL == |
| 68 | | |
| 69 | | To compile GDAL with rasdaman support: |
| 70 | | 1. Get latest GDAL source |
| 71 | | 2. Compile and install (in the /home/rasdaman/gdal) |
| 72 | | {{{ |
| 73 | | #!sh |
| 74 | | ./configure --prefix=/home/rasdaman/gdal --mandir=/home/rasdaman/gdal/share/man --includedir=/home/rasdaman/gdal/include/gdal |
| 75 | | --with-threads --with-grass=no --with-hide-internal-symbols=yes --with-libtiff=internal --with-geotiff=internal --with-jasper |
| 76 | | --with-netcdf --with-xerces --with-geos --with-sqlite3 --with-curl --with-pg --with-ogdi --with-python --with-odbc |
| 77 | | --with-static-proj4=yes --with-spatialite=/usr --with-cfitsio=no --with-epsilon=/usr --with-rasdaman=/home/rasdaman/install |
| 78 | | make |
| 79 | | make install |
| 80 | | }}} |
| 81 | | * '''Note:''' rasdaman should be compiled with `-fPIC`, so make sure to specify `--with-pic` when running `./configure` on rasdaman. |
| 82 | | 3. Setup environment |
| 83 | | {{{ |
| 84 | | #!sh |
| 85 | | export GDAL_HOME=/home/rasdaman/gdal |
| 86 | | export PATH=$PATH:$GDAL_HOME/bin |
| 87 | | export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$GDAL_HOME/lib |
| 88 | | }}} |
| 89 | | |
| 90 | | == ArcGIS == |
| 91 | | |
| 92 | | documentation tbd |
| 93 | | |
| 94 | | == !GeoServer == |
| 95 | | |
| 96 | | documentation tbd |
| 97 | | |
| 98 | | == rview (deprecated) == |
| | 43 | === rview (deprecated) === |
| | 88 | |
| | 89 | Note that passwords etc. need to be adjusted to the actual installation values. |
| | 90 | |
| | 91 | == Third-party clients == |
| | 92 | |
| | 93 | === QGIS (Web GIS) === |
| | 94 | |
| | 95 | 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: |
| | 96 | |
| | 97 | - get the rasdaman source tree: |
| | 98 | {{{ |
| | 99 | git clone git://rasdaman.org/rasdaman.git |
| | 100 | }}} |
| | 101 | - the plugin can be found in directory `rasdaman/applications/qgis-wcps` |
| | 102 | - copy the `qgis-wcps/QgsWcpsClient1` directory to your `qgis-python-plugin directory`, usually located in `$HOME/.qgis2/python/plugins`: |
| | 103 | {{{ |
| | 104 | mkdir -p $HOME/.qgis2/python/plugins/ |
| | 105 | cp -r rasdaman/applications/qgis-wcps/QgsWcpsClient1 $HOME/.qgis2/python/plugins/ |
| | 106 | }}} |
| | 107 | - now you can start QGIS and access the `QgsWcpsClient1` plug-in via the `Qgis Menu → Plugins → WcpsClient1 → WCPS 1.0 Client` |
| | 108 | |
| | 109 | === !OpenLayers (Web-based map navigation) === |
| | 110 | |
| | 111 | documentation tbd |
| | 112 | |
| | 113 | === ncWMS (Web-based climate data navigation) === |
| | 114 | |
| | 115 | documentation tbd |
| | 116 | |
| | 117 | === THREDDS (scientific data cataolog) === |
| | 118 | |
| | 119 | documentation tbd |
| | 120 | |
| | 121 | === GDAL (image processing library) === |
| | 122 | |
| | 123 | To compile GDAL with rasdaman support: |
| | 124 | 1. Get latest GDAL source |
| | 125 | 2. Compile and install (in the /home/rasdaman/gdal) |
| | 126 | {{{ |
| | 127 | #!sh |
| | 128 | ./configure --prefix=/home/rasdaman/gdal --mandir=/home/rasdaman/gdal/share/man --includedir=/home/rasdaman/gdal/include/gdal |
| | 129 | --with-threads --with-grass=no --with-hide-internal-symbols=yes --with-libtiff=internal --with-geotiff=internal --with-jasper |
| | 130 | --with-netcdf --with-xerces --with-geos --with-sqlite3 --with-curl --with-pg --with-ogdi --with-python --with-odbc |
| | 131 | --with-static-proj4=yes --with-spatialite=/usr --with-cfitsio=no --with-epsilon=/usr --with-rasdaman=/home/rasdaman/install |
| | 132 | make |
| | 133 | make install |
| | 134 | }}} |
| | 135 | * '''Note:''' rasdaman should be compiled with `-fPIC`, so make sure to specify `--with-pic` when running `./configure` on rasdaman. |
| | 136 | 3. Setup environment |
| | 137 | {{{ |
| | 138 | #!sh |
| | 139 | export GDAL_HOME=/home/rasdaman/gdal |
| | 140 | export PATH=$PATH:$GDAL_HOME/bin |
| | 141 | export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$GDAL_HOME/lib |
| | 142 | }}} |
| | 143 | |
| | 144 | === ESRI ArcGIS (GIS tool) === |
| | 145 | |
| | 146 | documentation tbd |
| | 147 | |
| | 148 | === !GeoServer (Web GIS server) === |
| | 149 | |
| | 150 | documentation tbd |
| | 151 | |