This is a package that keeps all the Machine learning Utils in the Software Team.
Project description
SARAO Machine Learning Utility functions
Machine Learning utils is a library for a convenient experience. It consists of helper functions for creating astronomy/machine learning tools.
Installation
pip install katmlutils
Example 1
from katmlutils.utils import get_night_window
from datetime import datetime
# Get the night window for the proposed date
nightwindow = get_night_window(datetime.datetime.now())
nightwindow
Example 2
from katmlutils.utils import get_UTC_sunrise_sunset_times
from datetime import datetime
date = datetime.today()
num_days = 7
sunrise_sunset_times = get_UTC_sunrise_sunset_times(date, num_days)
for entry in sunrise_sunset_times:
print(
f"Date: {entry['date']}, Sunrise: {entry['sunrise']}, Sunset: {entry['sunset']}"
)
Example 3
from katmlutils.utils import SKA_LATITUDE, SKA_LONGITUDE, MINUTES_IN_SIDEREAL_DAY, MINUTES_IN_SOLAR_DAY
print(f"SKA Latitude: {SKA_LATITUDE} degrees")
print(f"SKA Longitude: {SKA_LONGITUDE} degrees")
print(f"Minutes in Sidereal Day: {MINUTES_IN_SIDEREAL_DAY}")
print(f"Minutes in Solar Day: {MINUTES_IN_SOLAR_DAY}")
Example 4
from katmlutils.utils import SKA_LONGITUDE, lst_to_utc
from datetime import datetime, time, date
# Example Usage of lst_to_utc function
date = date.today()
lst_time = time(12, 30, 45)
utc_time = lst_to_utc(date, lst_time, SKA_LONGITUDE)
print(f"UTC Time: {utc_time}")
# Example Usage of LST_TO_UTC_hours function
lst_hours = 1 + 59 / 60 + 0 / 3600
date = datetime.now()
utc_time = LST_to_UTC_time(lst_hours, date, SKA_LONGITUDE)
print(f"UTC Time: {int(utc_time)}:{int((utc_time % 1) * 60):02}")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
katmlutils-0.1.4.tar.gz
(6.5 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file katmlutils-0.1.4.tar.gz.
File metadata
- Download URL: katmlutils-0.1.4.tar.gz
- Upload date:
- Size: 6.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
48fa9efa1ed93add9cb6a10f144b7aeb0fde7fd9b8eba3621541deb8b7a0d6d2
|
|
| MD5 |
a7f49f7b6319b0e02b5993365bfbc9de
|
|
| BLAKE2b-256 |
95ba41ecdda5b68224835fc8965f8d349353d4689e66d2d86e521949f03d482f
|
File details
Details for the file katmlutils-0.1.4-py3-none-any.whl.
File metadata
- Download URL: katmlutils-0.1.4-py3-none-any.whl
- Upload date:
- Size: 7.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a1444bdd3a55fc6c49a73e65495b020438cf69584869768a0164439de9df1b0e
|
|
| MD5 |
4a68dc97e89a30d78d3506775884c5cd
|
|
| BLAKE2b-256 |
3552a939c9ded9385afab91d0c2bb44dcbe05d913be15e6ab357c8d8b7fd1010
|