Compare commits
5 Commits
0.3.2
...
628088918b
Author | SHA1 | Date | |
---|---|---|---|
628088918b | |||
e0e7dbd0e5 | |||
c9620394de | |||
67db75ece8 | |||
6cab491721 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -3,3 +3,4 @@ testsource
|
||||
testdest
|
||||
__pycache__
|
||||
Pipfile.lock
|
||||
.vscode
|
||||
|
@@ -7,11 +7,11 @@ Here are some important resources:
|
||||
|
||||
* This [Blogpost](https://www.commander1024.de/wordpress/2020/03/fotos-mit-daten-zu-radioaktiver-strahlung-taggen) tells you about intention and scope for this tool (in German).
|
||||
* For questions and suggestions, you can [E-Mail](mailto:commander@commander1024.de) me directly.
|
||||
* Bugs? [Gitlab](https://gitlab.warpzone.ms/Commander1024/radiation-tagger/issues) is where to report them.
|
||||
* Bugs? [Gitlab](https://git.commander1024.de/Commander1024/radiation-tager/issues) is where to report them.
|
||||
|
||||
## Submitting changes
|
||||
|
||||
Please send a [GitLab Pull Request to radiation_tagger](https://gitlab.warpzone.ms/Commander1024/radiation-tagger/tree/develop) in the develop branch with a clear list of what you've done (read more about [pull requests](http://help.github.com/pull-requests/)). Please follow our coding conventions (below) and make sure all of your commits are atomic (one feature per commit).
|
||||
Please send a [Pull Request to radiation_tagger](https://git.commander1024.de/Commander1024/radiation-tager/pulls) in the develop branch with a clear list of what you've done (read more about [pull requests](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request)). Please follow our coding conventions (below) and make sure all of your commits are atomic (one feature per commit).
|
||||
Keep in mind that I am a bloody beginner and probably make more mistakes than you, so I am always open for improvements.
|
||||
|
||||
Always write a clear log message for your commits. One-line messages are fine for small changes, but bigger changes should look like this:
|
||||
|
5
Pipfile
5
Pipfile
@@ -4,11 +4,12 @@ url = "https://pypi.org/simple"
|
||||
verify_ssl = true
|
||||
|
||||
[dev-packages]
|
||||
pylint = "*"
|
||||
|
||||
[packages]
|
||||
pytz = "*"
|
||||
gpxpy = "*"
|
||||
py3exiv2 = "*"
|
||||
|
||||
[requires]
|
||||
python_version = "3.7"
|
||||
# [requires]
|
||||
# python_version = "3.8"
|
||||
|
11
functions.py
11
functions.py
@@ -11,12 +11,12 @@ import pyexiv2
|
||||
|
||||
class Radiation:
|
||||
'''
|
||||
Reiceives values vom CSV file and creates a list of the relevant data
|
||||
Receives values vom CSV file and creates a list of the relevant data
|
||||
|
||||
Arguments:
|
||||
timestamp: Date/time string from CSV as string
|
||||
radiation: Radiation from CSV in CP/M as float
|
||||
local_timezone: timezone for timezone-unware CSV / Photo, if GPX is timezone aware
|
||||
local_timezone: timezone for timezone-unaware CSV / Photo, if GPX is timezone aware
|
||||
si_factor: CP/M to (µS/h) conversion factor - specific to GMC-tube
|
||||
|
||||
Returns:
|
||||
@@ -48,9 +48,9 @@ class Photo:
|
||||
|
||||
Arguments:
|
||||
photo: source photo ()
|
||||
local_timezone: timezone for timezone-unware CSV / Photo, if GPX is timezone aware
|
||||
local_timezone: timezone for timezone-unaware CSV / Photo, if GPX is timezone aware
|
||||
dest_dir: destination directory where the photo is going to be copied to.
|
||||
dry_run: whether to acutally write (True / False)
|
||||
dry_run: whether to actually write (True / False)
|
||||
|
||||
Returns:
|
||||
get_date: timestamp of photo als datetime object
|
||||
@@ -179,7 +179,7 @@ class Exif:
|
||||
latitude: latitude as float
|
||||
longitude: longitude as float
|
||||
elevation: elevation as float
|
||||
dry_run: whether to acutally write (True / False)
|
||||
dry_run: whether to actually write (True / False)
|
||||
|
||||
Returns:
|
||||
Latitude / Longitude: in degrees
|
||||
@@ -298,4 +298,3 @@ class Output:
|
||||
|
||||
# Return data string
|
||||
return data
|
||||
|
||||
|
Reference in New Issue
Block a user