Skip to content

Commit

Permalink
Merge pull request #110 from 1c3t3a/XCode-project-using-the-REST-API
Browse files Browse the repository at this point in the history
Xcode project using the rest api
  • Loading branch information
1c3t3a authored Dec 2, 2020
2 parents 2b6dfbe + 0f00a29 commit 9f569df
Show file tree
Hide file tree
Showing 28 changed files with 2,923 additions and 1,043 deletions.
30 changes: 27 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,6 @@ ipython_config.py
# pyenv
.python-version

.DS_Store

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
Expand Down Expand Up @@ -146,7 +144,6 @@ $RECYCLE.BIN/

# Mac desktop service store files
.DS_Store
.DS_Store

## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
Expand Down Expand Up @@ -182,3 +179,30 @@ UpgradeLog*.htm

# ignore data files
data

# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore

## User settings
xcuserdata/

## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
*.xcscmblueprint
*.xccheckout

## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
build/
DerivedData/
*.moved-aside
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3

## Gcc Patch
/*.gcno
26 changes: 22 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,28 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [ToDo]

- adding support for different datasources. Could be done by an enumeration passed in to the load datatabase function
- Conversion SVG to PNG so that the maps can be added to the REST API smoothly

## [Unreleased]

-

## [4.1.0] - 2020-11-30

### Added

- a MacOS web client is now also available

### Changed

- .gitignore now includes XCode files
- duplicates in .gitignore have been removed
- some minor typos

### Removed

-

## [4.0.0] - 2020-10-23
Expand All @@ -25,7 +43,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

- The C# webclient can now save the generated graphs
- The C# web client can now save the generated graphs
- changed the documentation method to make use of the *Python Docstring Generator*
- modified *requirements.txt*

Expand Down Expand Up @@ -60,15 +78,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
created attribute is the given name with a tailing number n. E.g. 'Cases'
with n = 7 will add to a newly added attribute named 'Cases7'.
- added a function to save a dataframe to a CSV file
- added a function to caculate an estimation for the reproduction rate R0
- added a function to calculate an estimation for the reproduction rate R0

### Changed

- instead of the ECDC JSON file we are now using the CSV with the same data
- instead of the JSON data structure we are now using a Pandas data frame
Both changes allow us to easier add new methods and analytics
- the attribute 'Quotient' has been removed. the attribute was the number
of cases on the day devided by the number of cases of the
of cases on the day divided by the number of cases of the
previous day
- 'Continent' is a new field to analyse the distribution of cases over
continents
Expand All @@ -84,7 +102,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Added a REST API
- Added a C# client making use of the REST API
- The database file is now loaded automatically if it doesn't exist for the current day
- Applying some PEP8 sytle guides
- Applying some PEP8 style guides
- Add function to get the data for the last N days

### Changed
Expand Down
Loading

0 comments on commit 9f569df

Please sign in to comment.