mirror of
https://github.com/sascha-hemi/hacs_waste_collection_schedule.git
synced 2026-03-21 04:06:03 +01:00
Abfallwirtschaftsbetrieb Unstrut-Hainich-Kreis (#1782)
* Abfallwirtschaftsbetrieb UHK Herbsleben added
* all villages added
* Shortened testcases and added {%Y} in docs/cases
* final update_doc_links run
* add split_at param
---------
Co-authored-by: Rene Lange <rene.lange@deutschebahn.com>
Co-authored-by: 5ila5 <5ila5@users.noreply.github.com>
This commit is contained in:
@@ -563,6 +563,7 @@ Waste collection schedules in the following formats and countries are supported.
|
|||||||
- [Abfallwirtschaftsbetrieb Landkreis Aurich](/doc/source/c_trace_de.md) / mkw-grossefehn.de
|
- [Abfallwirtschaftsbetrieb Landkreis Aurich](/doc/source/c_trace_de.md) / mkw-grossefehn.de
|
||||||
- [Abfallwirtschaftsbetrieb Landkreis Karlsruhe](/doc/ics/awb_landkreis_karlsruhe_de.md) / awb-landkreis-karlsruhe.de
|
- [Abfallwirtschaftsbetrieb Landkreis Karlsruhe](/doc/ics/awb_landkreis_karlsruhe_de.md) / awb-landkreis-karlsruhe.de
|
||||||
- [Abfallwirtschaftsbetrieb LK Mainz-Bingen](/doc/source/awb_mainz_bingen_de.md) / awb-mainz-bingen.de
|
- [Abfallwirtschaftsbetrieb LK Mainz-Bingen](/doc/source/awb_mainz_bingen_de.md) / awb-mainz-bingen.de
|
||||||
|
- [Abfallwirtschaftsbetrieb Unstrut-Hainich-Kreis](/doc/ics/abfallwirtschaft_uhk_de.md) / abfallwirtschaft-uhk.de
|
||||||
- [Abfallwirtschaftsbetriebe Münster](/doc/source/muellmax_de.md) / stadt-muenster.de
|
- [Abfallwirtschaftsbetriebe Münster](/doc/source/muellmax_de.md) / stadt-muenster.de
|
||||||
- [Abfallwirtschaftsgesellschaft Landkreis Schaumburg](/doc/ics/aws_shg_de.md) / aws-shg.de
|
- [Abfallwirtschaftsgesellschaft Landkreis Schaumburg](/doc/ics/aws_shg_de.md) / aws-shg.de
|
||||||
- [Abfallwirtschaftsverband Kreis Groß-Gerau](/doc/source/c_trace_de.md) / awv-gg.de
|
- [Abfallwirtschaftsverband Kreis Groß-Gerau](/doc/source/c_trace_de.md) / awv-gg.de
|
||||||
|
|||||||
64
doc/ics/abfallwirtschaft_uhk_de.md
Normal file
64
doc/ics/abfallwirtschaft_uhk_de.md
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
# Abfallwirtschaftsbetrieb Unstrut-Hainich-Kreis
|
||||||
|
|
||||||
|
Abfallwirtschaftsbetrieb Unstrut-Hainich-Kreis is supported by the generic [ICS](/doc/source/ics.md) source. For all available configuration options, please refer to the source description.
|
||||||
|
|
||||||
|
|
||||||
|
## How to get the configuration arguments
|
||||||
|
|
||||||
|
- Goto <https://www.abfallwirtschaft-uhk.de/kopie-tourenpl%C3%A4ne-als-icalendar-f%C3%BCr-das-jahr-2022> and select your municipality (2022 in URL is right!).
|
||||||
|
- Right-click on your city/county and copy link address.
|
||||||
|
- Replace the year in the `url` with `{%Y}`.
|
||||||
|
- Replace the `url` in the example configuration with this link.
|
||||||
|
|
||||||
|
## Examples
|
||||||
|
|
||||||
|
### Altengottern
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
waste_collection_schedule:
|
||||||
|
sources:
|
||||||
|
- name: ics
|
||||||
|
args:
|
||||||
|
split_at: ', '
|
||||||
|
url: https://awb-ics.unstrut-hainich-kreis.de/icalendar/{%Y}/Altengottern.ics
|
||||||
|
```
|
||||||
|
### Bad Langensalza Stadttour 3
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
waste_collection_schedule:
|
||||||
|
sources:
|
||||||
|
- name: ics
|
||||||
|
args:
|
||||||
|
split_at: ', '
|
||||||
|
url: https://awb-ics.unstrut-hainich-kreis.de/icalendar/{%Y}/LST3.ics
|
||||||
|
```
|
||||||
|
### Herbsleben
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
waste_collection_schedule:
|
||||||
|
sources:
|
||||||
|
- name: ics
|
||||||
|
args:
|
||||||
|
split_at: ', '
|
||||||
|
url: https://awb-ics.unstrut-hainich-kreis.de/icalendar/{%Y}/Herbsleben.ics
|
||||||
|
```
|
||||||
|
### Thamsbrück
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
waste_collection_schedule:
|
||||||
|
sources:
|
||||||
|
- name: ics
|
||||||
|
args:
|
||||||
|
split_at: ', '
|
||||||
|
url: https://awb-ics.unstrut-hainich-kreis.de/icalendar/{%Y}/Thamsbrueck.ics
|
||||||
|
```
|
||||||
|
### Urleben
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
waste_collection_schedule:
|
||||||
|
sources:
|
||||||
|
- name: ics
|
||||||
|
args:
|
||||||
|
split_at: ', '
|
||||||
|
url: https://awb-ics.unstrut-hainich-kreis.de/icalendar/{%Y}/Urleben.ics
|
||||||
|
```
|
||||||
23
doc/ics/yaml/abfallwirtschaft_uhk_de.yaml
Normal file
23
doc/ics/yaml/abfallwirtschaft_uhk_de.yaml
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
title: Abfallwirtschaftsbetrieb Unstrut-Hainich-Kreis
|
||||||
|
url: https://www.abfallwirtschaft-uhk.de/
|
||||||
|
howto: |
|
||||||
|
- Goto <https://www.abfallwirtschaft-uhk.de/kopie-tourenpl%C3%A4ne-als-icalendar-f%C3%BCr-das-jahr-2022> and select your municipality (2022 in URL is right!).
|
||||||
|
- Right-click on your city/county and copy link address.
|
||||||
|
- Replace the year in the `url` with `{%Y}`.
|
||||||
|
- Replace the `url` in the example configuration with this link.
|
||||||
|
test_cases:
|
||||||
|
Altengottern:
|
||||||
|
url: "https://awb-ics.unstrut-hainich-kreis.de/icalendar/{%Y}/Altengottern.ics"
|
||||||
|
split_at: ", "
|
||||||
|
Bad Langensalza Stadttour 3:
|
||||||
|
url: "https://awb-ics.unstrut-hainich-kreis.de/icalendar/{%Y}/LST3.ics"
|
||||||
|
split_at: ", "
|
||||||
|
Herbsleben:
|
||||||
|
url: "https://awb-ics.unstrut-hainich-kreis.de/icalendar/{%Y}/Herbsleben.ics"
|
||||||
|
split_at: ", "
|
||||||
|
Thamsbrück:
|
||||||
|
url: "https://awb-ics.unstrut-hainich-kreis.de/icalendar/{%Y}/Thamsbrueck.ics"
|
||||||
|
split_at: ", "
|
||||||
|
Urleben:
|
||||||
|
url: "https://awb-ics.unstrut-hainich-kreis.de/icalendar/{%Y}/Urleben.ics"
|
||||||
|
split_at: ", "
|
||||||
@@ -159,6 +159,7 @@ This source has been successfully tested with the following service providers:
|
|||||||
- [Abfallwirtschaft Sonneberg](/doc/ics/abfallwirtschaft_sonneberg_de.md) / abfallwirtschaft-sonneberg.de
|
- [Abfallwirtschaft Sonneberg](/doc/ics/abfallwirtschaft_sonneberg_de.md) / abfallwirtschaft-sonneberg.de
|
||||||
- [Abfallwirtschaftsbetrieb Ilm-Kreis](/doc/ics/ilm_kreis_de.md) / ilm-kreis.de
|
- [Abfallwirtschaftsbetrieb Ilm-Kreis](/doc/ics/ilm_kreis_de.md) / ilm-kreis.de
|
||||||
- [Abfallwirtschaftsbetrieb Landkreis Karlsruhe](/doc/ics/awb_landkreis_karlsruhe_de.md) / awb-landkreis-karlsruhe.de
|
- [Abfallwirtschaftsbetrieb Landkreis Karlsruhe](/doc/ics/awb_landkreis_karlsruhe_de.md) / awb-landkreis-karlsruhe.de
|
||||||
|
- [Abfallwirtschaftsbetrieb Unstrut-Hainich-Kreis](/doc/ics/abfallwirtschaft_uhk_de.md) / abfallwirtschaft-uhk.de
|
||||||
- [Abfallwirtschaftsgesellschaft Landkreis Schaumburg](/doc/ics/aws_shg_de.md) / aws-shg.de
|
- [Abfallwirtschaftsgesellschaft Landkreis Schaumburg](/doc/ics/aws_shg_de.md) / aws-shg.de
|
||||||
- [ALBA Braunschweig](/doc/ics/alba_bs_de.md) / alba-bs.de
|
- [ALBA Braunschweig](/doc/ics/alba_bs_de.md) / alba-bs.de
|
||||||
- [Altmarkkreis Salzwedel](/doc/ics/abfall_app_net.md) / altmarkkreis-salzwedel.de
|
- [Altmarkkreis Salzwedel](/doc/ics/abfall_app_net.md) / altmarkkreis-salzwedel.de
|
||||||
|
|||||||
Reference in New Issue
Block a user