PHP Toolkit to get data about covid19.
composer require jinas/covid-19-observer
All the global data is from John Hopkins University CSSE, COVID19API, COVIDREST,WOLRDOMETER Local Data(Maldives) by HPA, Coronamv
Load the adapter you want to use into statistics class LoadAdaptermethod
use Jinas\Covid19\Statistics;
$stats = Statistics::LoadAdapter(
new \Jinas\Covid19\Adapters\WorldoMeter
);
// Returns the total number of confirmed,recovered and deaths
$stats->GetTotal();
\Jinas\Covid19\Adapters
- JohnHopkins
- Covid19API
- CovidRest
- WorldoMeter
Wrapper around coronamv API.
List of available functions:
- GetTotal(): Get the total statistics numbers in maldives.
- GetCases(): Get all the cases in maldives.
- GetCasesSortedByRecent(): Get all the cases in maldives sorted by recent case.
- GetCasesGroupedByAtoll(): Get all the cases in maldives grouped by administrative atoll in an array.
- GetAlertLevels(): Get all the Alert levels in maldives [ national and island alerts]
- GetAlertLevelsSortedByLevel(): Get all the alert levels in maldives sorted by highest level.
Wrapper around HPA MV API.
List of available functions:
- GetGlobaTotal(): Get total number of cases globaly.
- GetLocalTotal(): Get total Statistics In maldives.
- GetClinics(): Get the flu clinics details from HPA.
- GetAlertLevels(): Get Local Alert levels from HPA API.
- GetRestrictedPlaces(): Get Local Restricted places from HPA.
- GetTravelBans(): Get all the travel bannned countries.
Wrapper around HPA Case API
- GetAll(): Get all returned by the API.
- GetCases(): Get all the cases returned by the API.
- FilterCasesByAge(string $operator, $value): Filter cases by there age.
- FilterCasesByNationality(string $nationality): Filter cases by nationality.
- FilterCasesByGender($gender): Filter cases by gender.
Fetch the news assosiated with covid 19 from maldivian news websites.
List of available functions:
- FetchNews(): Fetch news assosiated with covid 19 in avas and sun news as an array.
Get Global case Feed in dhivehi. Wrapper around coronamv feeds API.
List of available functions:
- GetTimeline(): Get Global case Feed in dhivehi.
Wrapper around John hopkin's API.
List of available functions:
- GetTotal(): Get Total number of confirmed cases,recovered and deaths globally.
- GetAll(): Get all the attributes returned by hopkins API.
- GetAllCountries(): Get an array of available countries in Hopkin's Database.
- GetTotalByCountry(): Get the total confirmed cases,recovered,deaths in countries.
- GetAllGroupedByCountry(): Get all the attributes returned by hopkins API grouped by country region.
- GetTimeSeries() : Get all the confirmed cases,recovered,deaths in timeseries
Wrapper around covid19api.com API.
List of available functions:
- GetTotal(): Get Total number of confirmed cases,recovered,active and deaths globally.
- GetAll(): Get all the attributes returned by API.
This package also has ability to render the statistics as an image.
use Jinas\Covid19\Render;
Render::RenderGlobal();
- John Hopkins
- WorldoMeter
- CovidRest
- Covid19API
- Ministry of health republic of maldives
- Coronamv
- Avas News
- Sun News
MIT License 2020, Mohamed Jinas.