Skip to content

Commit

Permalink
Add support 0-11 age range in vaccinations
Browse files Browse the repository at this point in the history
  • Loading branch information
lukarenko committed Dec 21, 2021
1 parent aa5069c commit c2e67e6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ In case of failures a notification is set to slack channel #alert through Data A

## Changelog

## 1.16

* Add support for 0-11 age range in vaccinations

## 1.15

* Adds `episari-nijz-weekly.csv` to API as `api/episari-weekly` endpoint
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace SloCovidServer.Mappers
public class VaccinationMapper : Mapper
{
static readonly ImmutableArray<AgeBucketMeta> ageBuckets;
static readonly int[] ageBucketRanges = new[] { 17, 24, 29, 34, 39, 44, 49, 54, 59, 64, 69, 74, 79, 84, 89 };
static readonly int[] ageBucketRanges = new[] { 11, 17, 24, 29, 34, 39, 44, 49, 54, 59, 64, 69, 74, 79, 84, 89 };

static VaccinationMapper()
{
Expand Down

0 comments on commit c2e67e6

Please sign in to comment.