=== modified file 'dhis-2/dhis-services/dhis-service-options/src/main/resources/help_content.xml' --- dhis-2/dhis-services/dhis-service-options/src/main/resources/help_content.xml 2010-12-09 22:05:52 +0000 +++ dhis-2/dhis-services/dhis-service-options/src/main/resources/help_content.xml 2010-12-10 12:22:33 +0000 @@ -1894,268 +1894,123 @@ + - GIS -
- OpenHealthMapper - The DHIS 2 GIS web module is inspired by the WHO HealthMapper desktop application. -
-
- Importing geographical layers for orgunit thematic mapping - Start by installing the open source ogr2ogr tool. This should be available for most Linux distros (e.g. "apt-get install ogr2ogr"). For Windows, get FWTools, http://fwtools.maptools.org/ - The most common format for GIS data is the ESRI shapefile, which consists of three identically named files with extensions .shp, .shx and .dbf. (You can use ogr2ogr to convert between any formats, see example below). Open the .dbf in a spreadsheet application (e.g. MS Excel). Make sure there is a field (column) which has Orgunit names, and that these Orgunits are already imported into DHIS2. Also make sure all spellings are identical. - On Windows, open the FWTools Shell and navigate to the folder with the shapefile. Issue the following command (replace "output" and "input" with the actual names): - ogr2ogr -F GML output.gml input.shp - - The column in the .dbf file with the orgunit name will have been converted to an XML element inside the GML file. Open the GML file in a text editor (e.g. Notepad++) and do a search/replace to make sure this element is called exactly ogr:Name (case sensitive), e.g. <ogr:Name>Badjia</ogr:Name> - Import the GML file into DHIS2 through the regular import interface (no need to zip) -
-
- Identifying map data - Geographical data can be divided in two basic groups - raster and vector. -
- Raster images - Raster can be thought of as pictures such as sattelite images. Images can be used as background for maps, and the OHM can pull them in from any standard compliant Web Map Service (WMS). It is also of great interest to combine the DHIS2 installation with a GeoServer instance, which can be downloaded as a .war-file and run in the same servlet container (e.g. Tomcat, Jetty, Resin). Geoserver can provide both background layers such as roads, lakes etc. or also display thematic data as an alternative to the browser-rendered main mode which uses GeoJSON. -
-
- Vector data - In order to create thematic maps (also known as choropleth maps) we need to have vector polygons (e.g. for facility catchment areas or administrative regions). Also, vector files are required for points (e.g. health facility locations or even different wards within a hospital). Such vector files consist of a collection of (x,y) coordinates with a number of associated attributes (at least a name). Vector data can come in a lot of formats, such as GPS coordinates for facilities. The most common is the ESRI shapefile format. In order to make web maps interactive, DHIS 2 uses the javascript GeoJSON format. -
-
- Getting data - In order to use the OHM with DHIS2, it is necessary to have vector data for each orgunit level one wants to see in the map. In many countries, the Ministry of Health will have shapefiles for the health-related administrative divisions. In other cases, such files may have to be procured from a ministry of planning or from private vendors. Facility coordinates can easily be assembled into a layer (file) for facilities - and if they are not available, these can be collected by cheap GPS units (increasingly available also in mobile phones). Additionally, a lot of data are available freely on the web - especially bacground layers and overlays, but also facility positions and administrative boundaries. Below is a list of sources of such data: - - - - OpenStreetMap - - - - - Handling the layers - - - - - Maplibrary - - - - - Global Administrative Areas - - - - - UN organizations, especially WHO and FAO, have administrative boundaries - - - -
-
- Projections - DHIS 2 uses latitude/longitude (lat/lon) coordinates in the standard EPSG:4326 projection, which is very widespread. But it is also common to get data in UTM formats [http://en.wikipedia.org/wiki/ Universal_Transverse_Mercator_coordinate_system]. For example, data for Malawi is often distributed as UTM 36S projection, which corresponds to EPSG:2736. The conversion can be done by be done by using either Geoserver or ogr2ogr wich is part of GDAL and comes with Ubuntu. For Windows, it comes as part of FW Tools . For example, the following line will convert a shapefile called inputfile.shp in UTM 36S projection to a GeoJSON file in lat/lon: - ogr2ogr s_srs EPSG:2736 a_srs EPSG:4326 -f "GeoJSON" outputfile.json inputfile.shp - -
-
- GIS software to view and manipulate map data - There are many powerful free and open source GIS packages. We recommend the following: - - - - Quantum GIS - - - - - OpenJUMP - - - - uDig, which also forms basis for DIVA-GIS - - - - gvSIG - - - - These tools can for example be used to merge village boundary polygons into district polygons (provided the district that each village belongs to is listed as an attribute), and one can edit files to reflect new divisions or correct errors. Another power tool for working with GIS data is PostGIS, which can be used on itself or in conjunction with the above applications. -
-
-
- Conversion of geographical data to GeoJSON format - The DHIS2 mapping client relies on GeoJSON files in order to display a map in the browser window. Often times, geographical data is received in many different formats, but the ESRI shape file format is one of the most common. Several procedures will be described below. It is important, but not required, that the names in your geographical data match those in the DHIS2 organisational hierarchy. If they do not, you will need to manually match them in a later step -
- Production of GeoJSON files with GDAL - GDAL is a multi-platform toolkit for the manipulation of geographical data. It is freely available for a wide-range of platforms at http://gdal.org - Production of GeoJSON files are straightforward with GDAL. Just execute (on Windows) - - ogr2ogr.exe -f "GeoJSON" dst_datasource_name src_datasource_name - - or on Linux - ogr2ogr -f "GeoJSON"dst_datasource_name src_datasource_name - - Replace dst_datasource_name with the path to the destination geographical data file (following the naming convention described above) and src_datasource_name with the source geographical data file. Take note that you may need to specify input and output coordinate systems as described above. -
-
- Copying files to the DHIS application - Currently, your GeoJSON files should be placed in the DHIS_HOME/geoson of your DHIS application to be accessible to the GIS module. If the GeoJSON directory does not exist, you will need to create it manually and copy your GeoJSON files there. -
-
- Using Geoserver - Geoserver is capable of outputting GeoJSON formats. If you have geoserver running someplace, you can execute the following query. - - http://localhost:8080/geoserver/ows?service=WFS&version=1.0.0&request=GetFeature&typename=topp:states&outputformat=json&srs_name=EPSG:4326 - - Take note that you need to specify the spatial coordinate system. By default, Geoserver will return GeoJSON files with the format "long/lat" while the DHIS mapping client expects the ordering of the coordinates in "lat/long" format. The explicit declaration of the spatial reference system will ensure that coordinates are returned in the proper order. At the time of writing, the DHIS mapping client does not support spatial reference systems other than EPSG 4326. If you are using Geoserver, the application will handle the reprojection from the native format of the geographical data to EPSG 4326. If you are using other methods as described below to generate the GeoJSON file, you will need to ensure that the GeoJSON output is set to EPSG 4326 (Geographical Lat/long). - You will need to adjust the host destination if the machine is not your local machine as well as defining the actual layer in Geoserver which should be output to GeoJSON (in this case topp:states). - Upon execution of the URL, Geoserver will produce a GeoJSON file, and you will be asked to save it. Once it has finished downloading, rename the file following the suggested naming convention: - ISO2CountryCode followed by an underscore, followed by the layer type (e.g. “admin” for administrative layers, “health” for health administrative boundaries). For instance, the first administrative layer for Zambia would be named as "zm_admin1". -
-
+ GIS +
+ OpenHealthMapper + The DHIS 2 GIS web module is inspired by the WHO HealthMapper desktop application. +
+
+ Setting up the GIS module +
+ Importing geographical layers for orgunit thematic mapping + The maps are generated off the coordinates information linked to the Organisation Units in the database. No additional files are needed. As soon as the orguints have coordinates the maps will be available in the GIS module. Although it is possible to add/edit coordinates directly in the Edit Organisation Unit window (in Maintenance->Organisation Unit) we recommend doing this in a batch job using the general import process in the import/export module. The import process will need a gml file with at least the two properties; "Name" and "coordinates". + To generate the gml file start by installing the open source ogr2ogr tool. This should be available for most Linux distros (e.g. "apt-get install +ogr2ogr"). For Windows, get FWTools, http://fwtools.maptools.org/ + The most common format for GIS data is the ESRI shapefile, which consists of three identically named files with extensions .shp, .shx and .dbf. +(You can use ogr2ogr to convert between any formats, see example below). Open the .dbf in a spreadsheet application (e.g. MS Excel). Make sure + there is a field (column) called Name which has Orgunit names, and that these Orgunits are already existing in DHIS2. Also make sure all spellings are identical since the matching is done on this name. + + On Windows, open the FWTools Shell and navigate to the folder with the shapefile. Issue the following command (replace "output" and +"input" with the actual names): + ogr2ogr -F GML output.gml input.shp + + The column in the .dbf file with the orgunit name will have been converted to an XML element inside the GML file. Open the GML file in +a text editor (e.g. Notepad++) and do a search/replace to make sure this element is called exactly ogr:Name (case sensitive), e.g. +<ogr:Name>Badjia</ogr:Name> + + Import the GML file into DHIS2 through the import process in the import/export module (under services menu). There is no need to zip the file. Change import Type to Preview before doing the import to see which changes that will be made and resolve any issues with orgunit name matching etc. See the import/export chapter in the manual for more details on import processes. After import the coordinates will be added to the orgunit's metadata and also be available from the Orgunit Edit window (Maintenance->Organisation Units). +
+
+ +
+ Administering the GIS module
- Administrator panel - - - - - - Map source - GeoJSON files: you will find your own registered maps in the Map combo box in the Thematic map panel. The Admin panels check box will become visible. - Shapefiles: same as GeoJSON files, except that the files are generated from shapefiles installed in your running version of Geoserver on the fly. - DHIS database: the Map combo box will simply be populated by the existing organisation unit levels and GeoJSON files will be created by the application automatically Organisation units must have coordinates stored in the database in order to be displayed in the map. This function is mainly intended for the facility level as it is easy to maintain and thus will offer up-to-date shapefiles. - - - Admin panels: Show/hide the shapefile management panels. - - - Longitude/latitude: The base coordinate for the current country. This coordinate will appear as default when registering maps and overlays. - - -
-
- Registering geographical information - In order to view data in the GIS module, you must import your geographical data into your DHIS installation. Once you have produced GeoJSON files according to the procedure above, and imported them into the system, you will need to establish a correspondence between the information in the DHIS database, and the GeoJSON file. - - Register Geodata Panel - - - - - - - - - Display name: Represents your map in the Map combo box in the Thematic map panel. - - - Organisation unit level: The level of the organization units displayed in the GeoJSON file. - - - Map source file: The GeoJSON file name. These files must be placed in the mapping/geojson folder. Use e.g. Geoserver 2.0 (currently RC1) to easily produce GeoJSON from your shapefiles. - - - Name column: The shapefile data column (case sensitive!) that will be matched against DHIS organisation unit names. If you have an instance of Geoserver installed, you can view the layer through the built-in OpenLayers client. Click on a particular area, and the possible fields will be displayed. - - Identification of the name column with Geoserver's OpenLayers client - - - - - - - - Identification of the name column directly in the GeoJSON file - - - - - - - - - Longitude / latitude: The longitude and latitude refer to the approximate point where the map will be centered after rendering. If you have Geoserver running, you can view the layer through the integrated OpenLayers client and determine a good center point for your map. You can also use the background map of the DHIS GIS module, and determine an approximate location. You may need to experiment a bit with the center point and zoom level in order to get it correct. - - Using Geoserver OpenLayers client to get the map center point - - - - - - - - Using DHIS GIS Module to get the map center point - - - - - - - - - Zoom: The zoom level controls the extent of the map. Some experimentation will be required to get the correct zoom level. Start with a value of "7" and increase or decrease the zoom level depending on the extent of the map that should be displayed. - - -
-
- Assign organization units to map - Select a registered map and wait for it to load. The organisation units (OU) in your database on this level will appear in the list and colors will appear in the map. What we want to do here is creating relations between OUs in the database and the corresponding OUs in the shapefile. This is often necessary because of inconsistencies in the naming in the geographical data, and what is present in the DHIS database. First, try auto-assign at the bottom toolbar to let the application link the OUs with a matching OU name in the shapefile. The polygons that remain white, you will have to link manually by first selecting a white OU in the list and then click the corresponding OU in the map. - - Assigning Organizational Units to the map - - - - - - - The remove button at the button tool bar removes the selected OU’s link. The remove all button removes all OU links for the selected map. + Administrator settings + The administrator settings window can be opened from the map toolbar, click on the wrench symbol (tooltip says Administrator settings). Here you can define the Date Type used to select periods. Either use fixed periods corresponding to the periods used in DHIS data collection (weeks, months, quarters, 6-months, years etc.) or use the more flexible start and end dates.
Register overlays - Overlays are geographical layers that do not have any direct linkage to data in the database. Example include roads, rivers, airports, ports, and other geographical information that you may want to display on your map, but that is not neccsarily linked ot data contained in the DHIS database. The Register Overlay panel will allow you to add new layers and determine how they will be represented visually on the map. + Overlays are geographical layers that do not have any direct linkage + to data in the database. Example include roads, rivers, airports, ports, + and other geographical information that you may want to display on your + map, but that is not neccsarily linked ot data contained in the DHIS + database. The Register Overlay panel will allow you to + add new layers and determine how they will be represented visually on the + map. - Display name: Represents your overlay in the layer tree in the upper right corner. - - - Map source file: The GeoJSON file name. - - - Fill color: Decides the fill color if the layer is a polygon layer. - - - Fill opacity: Select an opacity level between 0 (invisible) and 1 (solid). - - - Stroke color: The stroke color over lines and polygon borders. - - - Stroke width: Select a stroke width between 0 and 4. + Display name: Represents your overlay in + the layer tree in the upper right corner. + + + Map source file: The GeoJSON file + name. + + + Fill color: Decides the fill color if the + layer is a polygon layer. + + + Fill opacity: Select an opacity level + between 0 (invisible) and 1 (solid). + + + Stroke color: The stroke color over lines + and polygon borders. + + + Stroke width: Select a stroke width between + 0 and 4. +
+ Copying files to the DHIS application + Currently, your GeoJSON files should be placed in the + DHIS2_HOME/geojson of your DHIS application to be accessible to the GIS + module. If the GeoJSON directory does not exist, you will need to create + it manually and copy your GeoJSON files there. +
+
+
+ Using the GIS module
- Thematic map + Thematic mapping This panel lets you use your registered maps for thematic mapping. All you need to do is selecting your desired indicator-period-map combination in the left side menu. - Calculation method alludes to the size of the legend classes. Set to Equal intervals they will be “highest map value – lowest map value / number of classes”. Set to Equal group count the legend creator will try to distribute the organisation units evenly. Choose Fixed bounds and you may define your own class break values, e.g. “20,40,60” using a comma to seperate each of them. + Calculation method + alludes to the size of the legend classes. Set to Equal intervals they will be “highest map value – lowest map value + / number of classes”. Set to Equal group count the legend creator will try to distribute the organisation units evenly. Choose Fixed bounds and + you may define your own class break values, e.g. “20,40,60” using a comma to + seperate each of them. The map view combo box lists all map views (favorites) saved by the user. The settings that are stored in the map view will be automatically applied to the thematic map panel.
Register favorite map views - This window will save the current thematic map view in order to restore it whenever you want via the map view combo box in the thematic map panel. By adding your views to DHIS 2 Dashboard you may access them there by inserting map views into one of the link areas. + This window will save the current thematic map view in order to + restore it whenever you want via the map view combo box in the thematic map panel. By + adding your views to DHIS 2 Dashboard you may access them there by + inserting map views into one of the link + areas.
Register legend sets - A legend set may be connected to many indicators, but an indicator may only have one legend set. Thus, you may select many indicators when you create a legend set. When an indicator that has a legend set is selected in the thematic map panel, the number of classes, low color and high color is automatically set. + A legend set may be connected to many indicators, but an indicator + may only have one legend set. Thus, you may select many indicators when + you create a legend set. When an indicator that has a legend set is + selected in the thematic map panel, the number of + classes, low color and high color is automatically set.
-
- Print map as PDF +
+ Exporting/saving map images Click the PDF icon on the map toolbar and the left side print panel will open. You may add several pages to your PDF document by clicking the "add page" button on the bottom toolbar. Change the size of the focus rectangle in the "scale" column. The rectangle can be rotated by inserting a number (degrees) "rotation" column or by dragging the rotation knob. Your "map title" and "comment" will appear above and below the picture in the PDF document respectively. The higher "dots per inch" value you choose, the better quality of the image and the larger file size of the document. To get out of print mode you can simply expand a different panel or hide the print panel by clicking the PDF icon on the map toolbar again.
+
+ + Import and export