2018-04-01 04:57:30 +08:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Configuration for mapping URLs and stuff
|
|
|
|
*/
|
|
|
|
|
|
|
|
return [
|
2018-08-27 00:40:04 +08:00
|
|
|
/*
|
2018-04-01 04:57:30 +08:00
|
|
|
* This can really be any METAR service, as long as it returns GeoJSON
|
|
|
|
*/
|
|
|
|
'metar_wms' => [
|
2018-08-27 00:40:04 +08:00
|
|
|
'url' => 'https://ogcie.iblsoft.com/observations?',
|
2018-04-01 04:57:30 +08:00
|
|
|
'params' => [
|
2018-08-27 00:40:04 +08:00
|
|
|
'layers' => 'metar',
|
2018-04-01 04:57:30 +08:00
|
|
|
],
|
|
|
|
],
|
|
|
|
];
|