GitXplorerGitXplorer
d

chernivtsi-outages

public
4 stars
5 forks
0 issues

Commits

List of commits on branch main.
Unverified
ca09daadbe3646175aa1b681fb33d0514c08f6e7

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

ddenysdovhan committed 2 years ago
Unverified
e68b18582bcbc070ff277d395e003546859d7971

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

ddenysdovhan committed 2 years ago
Unverified
999b4b9df1f1d3816f075e71e951c9a517c98c80

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

ddenysdovhan committed 2 years ago
Unverified
1be7e38f6b69c50ef50c4024ec3d857ae7e96ee1

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

ddenysdovhan committed 2 years ago
Unverified
fdbf33d86e391b299cb573b1ea0b40276b99448c

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

ddenysdovhan committed 2 years ago
Unverified
499590e819d83a0214df78b9b9ec2b8909b74a20

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