rugaard/dmi
Composer 安装命令:
composer require rugaard/dmi
包简介
API for the Danish Meteorological Institute (DMI)
关键字:
README 文档
README
🇩🇰🌤️ Danish Meteorological Institute (DMI) API.
The Danish Meteorological Institute (DMI) does unfortunately not offer an official API (yet).
This package is (in some form) a workaround for that. It collects all weather data (forecasts and archived) from the official DMI website and turns it into structured data objects.
Note: Since the data is being extracted from a the website, there is a risk of the package could stop working, if the website does any breaking changes.
Should this happen, please don't hesitate to create an issue and I will look into it as quickly as possible
⚠️ Disclaimer
As part of the danish governments desire to become one of the digital frontrunners, they have decided that the Danish Meteorological Institute (DMI) has to make all of their data available to the public.
The data will be released in multiple stages over the next 3 years, starting from Q3 in 2019 until Q4 in 2022. Unfortunately there is not much information on how the data will be released.
Depending on how the data will be released, this package will be subject to changes in the future.
Since the data is not officially released, this package is made available under a very strict license, which prohibits any use other than personal.
When DMI releases the data publicly, the license will be changed to a more open source-friendly (MIT) version.
📖 Table of contents
🚀 Features
| Name | Description | Supported |
|---|---|---|
| National forecasts | National descriptive forecasts (incl. 7 days forecast) | ✅ |
| Search | Search pre-defined locations | ✅ |
| Location | Weather data/forecast for a pre-defined location | ✅ |
| Location by coordinate | Weather data/forecast for a location based on coordinates (latitude/longitude) | ✅ |
| Weather warnings | National weather warnings | ✅ |
| Sun times | Time of sunrise and sunset | ✅ |
| UV index | Current UV index | ✅ |
| Pollen | Current Pollen measurements | ✅ |
| Sea stations | All national sea stations and their observations and forecasts | ✅ |
| Sea station by ID | Observations and forecasts from a specific sea station | ✅ |
| Archive | Hourly, daily, monthly and yearly data from the DMI archive | ✅ |
| Satellite | Satellite imagery | ❌ |
| Maritime forecasts | Forecasts around the coasts of Denmark, Greenland & Faroe Islands | ❌ |
| Ice charts | Ice charts along the coasts of Greenland | ❌ |
📦 Installation
You can install the package via Composer, by using the following command:
composer require rugaard/dmi
Laravel
This package comes with a out-of-the-box Service Provider for the Laravel framework.
If you're using a newer version of Laravel (>= 5.5) then the service provider will loaded automatically.
Are you using an older version, then you need to manually add the service provider to the config/app.php file:
'providers' => [ Rugaard\DMI\Providers\Laravel\ServiceProvider::class, ]
⚙️ Usage
First thing you need to do, is to instantiate the DMI client
# Instantiate the DMI client. $dmi = new \Rugaard\DMI\DMI;
Once you've done that, you're able to request one or more of the supported features:
# National forecast. $forecast = $dmi->forecast(); # Location by coordinate. $location = $dmi->locationByCoordinate(55.67594, 12.56553); # National warnings. $warnings = $dmi->warnings();
DMI client
The DMI client which handles all request DMI.
new DMI(?int $defaultLocationId, ?Client $httpClient);
| Parameter | Type | Default | Description |
|---|---|---|---|
$defaultLocationId |
int |
null |
Set default location ID |
$httpClient |
\GuzzleHttp\ClientInterface |
null |
Replace the default underlying HTTP Client |
Methods
National forecast
Get the latest national descriptive forecast.
forecast();
Extended national forecast
Get the extended (7-days) national descriptive forecast.
extendedForecast();
Search locations
Search locations by name.
search(string $query, int $limit);
| Parameter | Type | Default | Description |
|---|---|---|---|
$query |
string |
- | Search query |
$limit |
int |
20 |
Max. number of locations to return. |
Location by ID
Get current weather condition and latest forecast for a pre-defined location.
Note: $includeRegional is required to get municipality and region of location.
location(?int $locationId, bool $includeRegional, bool $includeWarnings);
| Parameter | Type | Default | Description |
|---|---|---|---|
$locationId |
int |
null |
ID of location (If null, it'll use the default location ID from the DMI client.) |
$includeRegional |
bool |
true |
Include regional data and forecast for location * |
$includeWarnings |
bool |
true |
Include weather warnings specific for location * |
* Makes additional request to DMI.
Location by coordinate
Get current weather condition and latest forecast for a location specified by coordinates.
Note: $includeRegional is required to get municipality and region of location.
locationByCoordinate(float $latitude, float $longitude, bool $includeRegional, bool $includeWarnings);
| Parameter | Type | Default | Description |
|---|---|---|---|
$latitude |
float |
- | Latitude part of coordinate |
$longitude |
float |
- | Longitude part of coordinate |
$includeRegional |
bool |
true |
Include regional data and forecast for location * |
$includeWarnings |
bool |
true |
Include weather warnings specific for location * |
* Makes additional request to DMI.
Weather warnings
Get national weather warnings.
warnings();
Sun times
Get time of the sunrise and sunset, for the next 14 days, for a pre-defined location.
sunTimes(?int $locationId);
| Parameter | Type | Default | Description |
|---|---|---|---|
$locationId |
int |
null |
ID of location (If null, it'll use the default location ID from the DMI client.) |
UV index
Get the current UV index for a pre-defined location.
uv(?int $locationId);
| Parameter | Type | Default | Description |
|---|---|---|---|
$locationId |
int |
null |
ID of location (If null, it'll use the default location ID from the DMI client.) |
Pollen
Get the current national pollen measurements.
pollen();
Sea stations
Get all sea stations belonging to DMI.
seaStations(bool $withObservations, bool $withForecast);
| Parameter | Type | Default | Description |
|---|---|---|---|
$withObservations |
bool |
false |
Include observation data from each station * |
$withForecast |
bool |
false |
Include forecast data for each station * |
* Makes additional request to DMI.
Sea station by ID
Get a specific sea stations.
seaStation(int $stationId, bool $withObservations, bool $withForecast);
| Parameter | Type | Default | Description |
|---|---|---|---|
$stationId |
int |
- | ID of sea station |
$withObservations |
bool |
false |
Include observation data from each station * |
$withForecast |
bool |
false |
Include forecast data for each station * |
* Makes additional request to DMI.
Archived weather data
Get archived weather data.
archive(string $measurement, string $frequency, $period, ?int $municipalityId, string $country);
| Parameter | Type | Default | Description |
|---|---|---|---|
$measurement |
string |
- | temperature, precipitation, wind, wind-direction, humidity, pressure, sun, drought, lightning or snow |
$frequency |
string |
- | hourly, daily, monthly or yearly |
$period |
string or DateTime |
- | hourly/daily = YYYY-mm-dd, monthly = YYYY-mmor yearly = YYYY |
$municipalityId |
int |
null |
Limit archived data to a specific municipality. See the full list of available municipality IDs |
$country |
string |
DK |
DK = Denmark, GL = Greenland, FO = Faroe Islands |
🌤 Icons
When getting weather data from a location, the response will contain an $icon value. The purpose of this value is to determine which icon represents the current weather conditions.
In the table below is a list of all possible icons and values. Each icon is associated with a suggested emoji or image.
I would recommend downloading the free icon pack from Pixel Perfect, since it's one of the few ones, that both contains a day and night version of each condition - while still being free.
Day (after sunrise)
Night (after sunset)
🏛 Municipalities
Denmark is split into 98 municipalities. In the list below are all the municipalities and their corresponding ID.
| Name | ID | Name | ID | Name | ID | Name | ID |
|---|---|---|---|---|---|---|---|
| Albertslund | 165 | Allerød | 201 | Assens | 420 | Ballerup | 151 |
| Billund | 530 | Bornholm | 400 | Brøndby | 153 | Brønderslev | 810 |
| Dragør | 155 | Egedal | 240 | Esbjerg | 561 | Fanø | 563 |
| Favrskov | 710 | Faxe | 320 | Fredensborg | 210 | Fredericia | 607 |
| Frederiksberg | 147 | Frederikshavn | 813 | Frederikssund | 250 | Furesø | 190 |
| Faaborg-Midtfyn | 430 | Gentofte | 157 | Gladsaxe | 159 | Glostrup | 161 |
| Greve | 253 | Gribskov | 270 | Guldborgsund | 376 | Haderslev | 510 |
| Halsnæs | 260 | Hedensted | 766 | Helsingør | 217 | Herlev | 163 |
| Herning | 657 | Hillerød | 219 | Hjørring | 860 | Holbæk | 316 |
| Holstebro | 661 | Horsens | 615 | Hvidovre | 167 | Høje-Taastrup | 169 |
| Hørsholm | 223 | Ikast-Brande | 756 | Ishøj | 183 | Jammerbugt | 849 |
| Kalundborg | 326 | Kerteminde | 440 | Kolding | 621 | København | 101 |
| Køge | 259 | Langeland | 482 | Lejre | 350 | Lemvig | 665 |
| Lolland | 360 | Lyngby-Taarbæk | 173 | Læsø | 825 | Mariagerfjord | 846 |
| Middelfart | 410 | Morsø | 773 | Norddjurs | 707 | Nordfyns | 480 |
| Nyborg | 450 | Næstved | 390 | Odder | 727 | Odense | 461 |
| Odsherred | 306 | Randers | 730 | Rebild | 840 | Ringkøbing-Skjern | 760 |
| Ringsted | 329 | Roskilde | 265 | Rudersdal | 230 | Rødovre | 175 |
| Samsø | 741 | Silkeborg | 740 | Skanderborg | 746 | Skive | 779 |
| Slagelse | 330 | Solrød | 269 | Sorø | 340 | Stevns | 336 |
| Struer | 671 | Svendborg | 479 | Syddjurs | 706 | Sønderborg | 540 |
| Thisted | 787 | Tønder | 550 | Tårnby | 185 | Vallensbæk | 187 |
| Varde | 573 | Vejen | 575 | Vejle | 630 | Vesthimmerland | 820 |
| Viborg | 791 | Vordingborg | 390 | Ærø | 492 | Aabenraa | 580 |
| Aalborg | 851 | Aarhus |
🗣 Frequently Asked Questions (FAQ)
How do I find the ID of a pre-defined location?
There are two ways to find it:
-
Use this package's search endpoint.
-
Go to DMI's website and use the search feature in the top right corner. If your desired location pops up; click on it and you will be directed to the locations page. You can now copy/paste the ID from the locations URL.
https://www.dmi.dk/lokation/show/DK/
2618425/København/
What is this Tightenco\Collect\Support\Collection class and how does it work?
All endpoints returns data within a Tightenco\Collect\Support\Collection class. The class is a port of the popular Collection class from Laravel.
Please refer to Laravel's detailed documentation, to learn more about how you work with a Collection:
https://laravel.com/docs/master/collections
🗺 Roadmap
Internal caching
Some endpoints, like National forecasts, sunrise and sunset and pollen measurements are endpoints which doesn't change/update very often.
By implementing some form of internal caching, we could cache these kind of endpoints. This would increase the response time and we would avoid making unnecessary requests to DMI.
🚓 License
This package is licensed under a Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 (CC BY-NC-ND 4.0).
rugaard/dmi 适用场景与选型建议
rugaard/dmi 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 449 次下载、GitHub Stars 达 16, 最近一次更新时间为 2019 年 07 月 09 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「api」 「weather」 「forecast」 「weather forecast」 「rugaard」 「morten」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 rugaard/dmi 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 rugaard/dmi 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 rugaard/dmi 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Provides a Wrapper for the Apple WeatherKit API
Uma api para previsão de tempo escrita em PHP.
Laravel-forecast provides a service provider and a facade around the Forecast-php wrapper
A PSR-7 compatible library for making CRUD API endpoints
Add a weather widget to Flarum
A lightweight Laravel package for integrating weather data from Yr (api.met.no)
统计信息
- 总下载量: 449
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 16
- 点击次数: 16
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-07-09