DesktopWMS: Unterschied zwischen den Versionen

Aus Geoinformation HSR
Wechseln zu: Navigation, Suche
Zeile 50: Zeile 50:
 
** with layer name 'myimage.jpg' (= local image file in ./data directory of DesktopWMS): [http://localhost:8998/?service=WMS&version=1.1.1&request=getmap&bbox=8.815067,47.224381,8.817712,47.226178&width=250&height=250&format=image/jpeg&layers=myimage.jpg]
 
** with layer name 'myimage.jpg' (= local image file in ./data directory of DesktopWMS): [http://localhost:8998/?service=WMS&version=1.1.1&request=getmap&bbox=8.815067,47.224381,8.817712,47.226178&width=250&height=250&format=image/jpeg&layers=myimage.jpg]
 
* GetCapabilities: [http://localhost:8998/?request=getcapabilities].
 
* GetCapabilities: [http://localhost:8998/?request=getcapabilities].
 +
 +
== Download ==
 +
* Download (BETA!): http://dev.ifs.hsr.ch/releases/desktopwms/
 +
* SVN desktopwms: http://dev.ifs.hsr.ch/svn/desktopwms/
  
 
== See also ==
 
== See also ==
Zeile 56: Zeile 60:
 
*[[Georeferenzieren von Bildern]] (de)
 
*[[Georeferenzieren von Bildern]] (de)
 
*[http://sifsv002.hsr.ch/desktopwms DesktopWMS Trac]
 
*[http://sifsv002.hsr.ch/desktopwms DesktopWMS Trac]
 
== Download ==
 
* Download (BETA!): http://dev.ifs.hsr.ch/releases/desktopwms/
 
* SVN desktopwms: http://dev.ifs.hsr.ch/svn/desktopwms/
 

Version vom 5. März 2009, 19:06 Uhr

A tiny local Web Map Server - serving OpenStreetMap, Google Maps, Yahoo Maps and local image maps.

About...

Many GIS/geodata editors nowadays include the Web Map Server protocol (WMS) from OGC, but often they lack support of free map services like OpenStreetMap and local images. OpenStreetMap serves as a free background map and it's cached, tiled and remote. Georeferenced local images very handy for getting special local knowledge into one's own geodata.

Note that local images need to be georeferenced and aligned to north before hand. See WorldFileTool for more information about georeferencing.

DesktopWMS has been reported to work with the following GIS and map viewer:

Features

Basic features:

  • Runs locally in the background as a server.
  • Can be accessed as a WMS service version 1.1.1.
  • Contains the following predefined layers (from remote tile server (requires internet access, see Tiling)):
    • OpenStreetMap
    • Google Maps
    • Yahoo! Maps
  • Serves local images:
    • 'Ad-hoc' image layer (file); requires one image file (no tiling) and a World file as configuration (use e.g. WorldFileTool to georeference]).
    • Supported formats: jpg, gif, png.

Usage

Running DesktopWMS

after starting the application with "java -jar desktopwms.jar" the server will start automatically.

available commands

you could use following commands:

  • "start" to start the server
  • "stop" to stop the server
  • "restart" to restart the server
  • "isrunning" to check if the server is running
  • "exit" to exit the application
  • "help" to get a list of all available commands with description

change capabilities

adjust the files in the folder capabilities

change settings

adjust the properties in the file desktopwms.config in the folder config

Demo/test with WMS calls (default port is 8998)

  • GetMap:
    • with layer name 'openstreetmap': [1]
    • with layer name 'google': [2]
    • with layer name 'yahoo': [3]
    • with layer name 'myimage.jpg' (= local image file in ./data directory of DesktopWMS): [4]
  • GetCapabilities: [5].

Download

See also