GitXplorerGitXplorer
d

chernivtsi-outages

public
4 stars
5 forks
0 issues

Commits

List of commits on branch main.
Unverified
f32aef7701eee75f0342ee5ba57961bd60134a50

chore(fetch): Scheduled data fetch [skip ci]

ddenysdovhan committed 2 years ago
Unverified
1c38f9de7c201fa90292e5d2a379205b0a038246

chore(fetch): Scheduled data fetch [skip ci]

ddenysdovhan committed 2 years ago
Unverified
816f6e873be98642c9fa205a903559feeadbf4e1

chore(fetch): Scheduled data fetch [skip ci]

ddenysdovhan committed 2 years ago
Unverified
ee43585b1d98402b5d58f5ad2c2ce1d4606ef3fe

chore(fetch): Scheduled data fetch [skip ci]

ddenysdovhan committed 2 years ago
Unverified
21216d94684f02129254ba2ab7a6bf97a8e724c7

chore(fetch): Scheduled data fetch [skip ci]

ddenysdovhan committed 2 years ago
Unverified
1163c5164feffa58255cfa2f86d85aed2b73a483

chore(fetch): Scheduled data fetch [skip ci]

ddenysdovhan committed 2 years ago

README

The README file for this repository.

Дані відключення електропостачання у Чернівцях

Цей репозиторій містить дані про відключення електропостачання у Чернівцях.

Дані

Для використання та дослідження доступні такі дані:

  • /outages/history/yyyy-MM-dd
    • data.json – дані відключень у форматі JSON
    • data.csv – дані відключень у форматі CSV
    • readme.md — опис даних
    • table.png – обрізане зображення таблиці з сайту (застаріле)
    • raw.png — нормалізоване оригінальне зображення з сайту (застаріле)
  • /outages/latest – найсвіжіші дані про відключення

Доступ до даних можна отримати за допомогою GitHub URI, наприклад:

https://raw.githubusercontent.com/denysdovhan/chernivtsi-outages/main/outages/latest/data.json

або

https://raw.githubusercontent.com/denysdovhan/chernivtsi-outages/main/outages/history/{yyyy-MM-dd}/data.json

Формат даних

Дані зберігаються у форматі JSON у файлі data.json. Кожен файл містить об'єкт з такої структури:

{
  "date": "2023-01-29",
  "data": [
    ["off", "off", "on", "on", ],
    ["on", "on", "off", "off", ],
    
  ]
}

Поле data – це масив груп відключень. Кожна група – це масив, що містить стан електропостачання у кожній з 24 годин доби. Стан може бути on (електропостачання працює), off (електропостачання відключено) або unknown (можливо відключено).

Як це працює

Кожні кілька годин запускається скрипт, який витягує дані з сайту Чернівціобленерго, конфертує дані у формат JSON та зберігає у відповідні папки. Код можна знайти у файлі index.ts.

Ліцензія

MIT © Денис Довгань


Electricity outages in Chernivtsi

This repository contains data about electricity outages in Chernivtsi.

Data

The following data is available for use and research:

  • /outages/history/yyyy-MM-dd
    • data.json – data about outages in JSON format
    • data.cvs – data about outages in CSV format
    • readme.md — data description
      • table.png – cropped image of the table from the site (deprecated)
      • raw.png — normalized original image from the site (deprecated)
  • /outages/latest – the latest data about outages

You can access the data using GitHub user content URI, like this:

https://raw.githubusercontent.com/denysdovhan/chernivtsi-outages/main/outages/latest/data.json

or

https://raw.githubusercontent.com/denysdovhan/chernivtsi-outages/main/outages/history/{yyyy-MM-dd}/data.json

Data format

Data is stored in JSON format in the data.json file. Each file contains an object with the following structure:

{
  "date": "2023-01-29",
  "data": [
    ["off", "off", "on", "on", ],
    ["on", "on", "off", "off", ],
    
  ]
}

The data field is an array of outage groups. Each group is an array that contains the status of the power supply for each of the 24 hours of the day. The status can be on (power supply is working), off (power supply is off) or unknown (possibly off).

How it works

A script is run every few hours that extracts data from the Chernivtsioblenergo site, converts the data to JSON format and saves it in the corresponding folders. The code can be found in the index.ts file.

License

MIT © Donys Dovhan