9 กรกฎาคม 2559

Published กรกฎาคม 09, 2559 by with 0 comment

หาวัน Julian Date ด้วย Python

Julian Date คือ จำนวนวันรวมทั้งเวลานับตั้งแต่วันที่ 1 ตั้งแต่ 4,713 ปีก่อน คริสตรกาล

อ่านเพิ่มเติมได้ที่ https://lotus062.wordpress.com/2007/06/06/whats-julian-date/

การหาวัน Julian Date รวมทั้ง calendar dates ด้วย Python สามารถทำได้โดยใช้โมดูล jdcal

โมดูล jdcal เป็นโมดูลสำหรับหา Julian dates รวมทั้ง calendar dates และ Gregorian leap year ในภาษา Python ใช้ BSD
สามารถติดตั้งได้ด้วยคำสั่ง
$ pip install jdcal

การใช้งาน

>>> from jdcal import gcal2jd, jd2gcal
>>> gcal2jd(2000,1,1)
(2400000.5, 51544.0)
>>> 2400000.5 + 51544.0 + 0.5
2451545.0
>>> jd2gcal(2400000.5, 51544.0)
(2000, 1, 1, 0.0)

อ่านเอกสารการใช้งานได้ที่ https://github.com/phn/jdcal

0 ความคิดเห็น:

แสดงความคิดเห็น

แสดงความคิดเห็นได้ครับ :)