{"id":37702218,"url":"https://github.com/charon25/weatherdata","last_synced_at":"2026-01-16T13:01:11.058Z","repository":{"id":133045939,"uuid":"355961239","full_name":"charon25/WeatherData","owner":"charon25","description":"17 000 weather measurements collected by a weather station created for a college project.","archived":false,"fork":false,"pushed_at":"2021-08-29T14:03:25.000Z","size":1377,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-01-27T07:40:30.654Z","etag":null,"topics":["csv","data","dataset","datasets","json","measurements","strasbourg","weather","weather-data"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"cc-by-4.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/charon25.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2021-04-08T15:30:18.000Z","updated_at":"2021-08-29T14:04:15.000Z","dependencies_parsed_at":"2023-12-26T05:33:03.541Z","dependency_job_id":"72682d8c-cc87-4472-87c2-48c36ca3e078","html_url":"https://github.com/charon25/WeatherData","commit_stats":{"total_commits":14,"total_committers":2,"mean_commits":7.0,"dds":0.0714285714285714,"last_synced_commit":"4172b6290e1bb4566f9b48c1fbaf181ff5357217"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/charon25/WeatherData","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/charon25%2FWeatherData","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/charon25%2FWeatherData/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/charon25%2FWeatherData/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/charon25%2FWeatherData/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/charon25","download_url":"https://codeload.github.com/charon25/WeatherData/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/charon25%2FWeatherData/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28478886,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T11:59:17.896Z","status":"ssl_error","status_checked_at":"2026-01-16T11:55:55.838Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["csv","data","dataset","datasets","json","measurements","strasbourg","weather","weather-data"],"created_at":"2026-01-16T13:01:10.455Z","updated_at":"2026-01-16T13:01:11.052Z","avatar_url":"https://github.com/charon25.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Weather Data\nThis repo contains weather data collected by a weather station built located in Strasbourg, France by myself and a friend for a class project.\n\n## Data\nThe data was (and still is) collected every 10 minutes between approximately 8 am and 6 pm for the first half and between 1 am and 11 pm for the second half (sometimes earlier or later). It started on February 22\u003csup\u003eth\u003c/sup\u003e.\n\nEvery point contains 6 measurements along with a Unix timestamp. Those measurements (and their accuracies) are :\n- temperature in °C (± 0.5 °C),\n- humidity in % (± 5 %),\n- air pressure in hPa (± 0.12 hPa),\n- wind speed in km/h (unknow accuracy),\n- wind direction (see below for format) (unknown accuracy),\n- battery voltage in V (± 0.1 V).\n\nThe data is available in two formats : JSON and CSV.\n\n### JSON\nThe JSON structure is the following :\n- `units` : dictionary of measurements name and units,\n- `wind_direction_dic` : dictionary of wind direction value and real direction,\n- `values` : list of data point\n  - [\n  \t- `timestamp` : int,\n  \t- `temperature` : float,\n  \t- `humidity` : int,\n  \t- `pressure` : float,\n  \t- `wind_speed` : float,\n  \t- `wind_direction` : int,\n  \t- `battery_voltage` : float,  \t\n  - ]\n  - ...\n\n### CSV\nThere are 2 CSV files :\n- `data_comma_period.csv` : values are comma-separated, and periods (`.`) are used as decimal separator,\n- `data_semicolon_comma.csv` : values are semicolon-separated, and commas (`,`) are used as decimal separator.\n\nOn the 29\u003csup\u003eth\u003c/sup\u003e of August, the set contains 17473 data points.\n\n### Wind direction\nThe wind direction is an integer between 0 and 16 (inclusive), each one indicating a specific direction.\n| Integer | Direction |\n| ------- | --------- |\n| 0 | West |\n| 1 | West-North-West |\n| 2 | North-West |\n| 3 | North-North-West |\n| 4 | North |\n| 5 | North-North-East |\n| 6 | North-East |\n| 7 | East-North-East |\n| 8 | East |\n| 9 | East-South-East |\n| 10 | South-East |\n| 11 | South-South-East |\n| 12 | South |\n| 13 | South-South-West |\n| 14 | South-West |\n| 15 | West-South-West |\n| 16 | Invalid/Error |\n\n## Usage\nYou are free to use this data to do whatever you want, as long as you credit this repo. No guarantee is provided about the exactitude of the data.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcharon25%2Fweatherdata","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcharon25%2Fweatherdata","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcharon25%2Fweatherdata/lists"}