Skip to content

Commit 654e5b7

Browse files
authored
Merge pull request #16 from hmakelin/hmakelin-wms-url
Update default WMS client settings
2 parents 10c6046 + a7826cc commit 654e5b7

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2021 Harri Mäkelin
1+
Copyright (c) 2022 Harri Mäkelin
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
44

config/test_typhoon_h480__ksql_airport.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
mock_gps_node:
44
ros__parameters:
55
wms:
6-
url: 'http://localhost:8080/wms'
6+
url: 'http://localhost:80/wms'
77
#version: '1.1.1'
8-
layers: ['Imagery']
8+
layers: ['imagery']
99
styles: ['']
1010
srs: 'EPSG:4326'
1111
image_format: 'image/jpeg'

config/typhoon_h480__ksql_airport.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
mock_gps_node:
22
ros__parameters:
33
wms:
4-
url: 'http://localhost:80/?map=/etc/mapserver/wms.map'
4+
url: 'http://localhost:80/wms'
55
version: '1.3.0'
6-
layers: ['naip-natural-color-raster']
6+
layers: ['imagery']
77
styles: ['']
88
srs: 'EPSG:4326'
99
image_format: 'image/jpeg'

gisnav/nodes/base_node.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@ class BaseNode(Node, ABC):
4747
_MATCHER_PROCESS_COUNT = 1 # should be 1
4848

4949
# region ROS Parameter Defaults
50-
ROS_D_WMS_URL = 'http://localhost:8080/wms'
50+
ROS_D_WMS_URL = 'http://localhost:80/wms'
5151
"""Default WMS server endpoint URL"""
5252

53-
ROS_D_WMS_VERSION = '1.1.1'
53+
ROS_D_WMS_VERSION = '1.3.0'
5454
"""Default WMS server version"""
5555

56-
ROS_D_WMS_LAYERS = ['Imagery']
56+
ROS_D_WMS_LAYERS = ['imagery']
5757
"""Default WMS request layers parameter
5858
5959
.. note::

package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<package format="3">
44
<name>gisnav</name>
55
<version>0.60.1</version>
6-
<description>Estimates airborne drone position by matching video to map retrieved from OGC WMS endpoint in PX4 SITL.</description>
6+
<description>Estimates airborne drone global position by matching video to map retrieved from onboard GIS server.</description>
77
<author email="hmakelin@protonmail.com">Harri Makelin</author>
88
<maintainer email="hmakelin@protonmail.com">Harri Makelin</maintainer>
99
<license>MIT</license>

0 commit comments

Comments
 (0)