问题标签 [julian-date]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
c++ - 从儒略日计算公历年、月、日的默认值是什么(比如 1721119)
提前非常感谢!
下面的代码片段是一个函数,它为我提供给定儒略日的年、月和日。
你能告诉我这里的常数是什么意思吗?我可以在网上找到这段代码,但没有人解释这里采用的默认值。另外,如果有人可以解释该功能将做什么。
假设,我为 JD 传递的值是 2456447..
python - 将儒略日转换为日期
我有几年来名为 day00000.nc、day00001.nc、day00002.nc、...day00364.nc 的文件。它们代表 365 或 366 天。我想重命名我的文件,例如 day20070101.nc, day20070102.nc, ...day20071231.nc 我该怎么做?谢谢
php - 这种格式的儒略日:AAAJJJ
我有这个日期: 2007 年 9 月 28 日。
我需要这个输出:007271
我正在使用这段代码:
我当前的输出:2454372.81824
我在谷歌上搜索,我发现了这个网站:
当我用我的日期尝试他的工具时,输出是:
“Jour Julien:2454371.5” 和“Jour:271 Année:2007”
我怎样才能完成这个任务?我不知道如何找到天数,所以我可以将它与年份连接起来:AAA。JJJ
非常感谢。
matlab - matlab中相交的问题
考虑以下示例:
为什么 idx 的大小与 time 的大小不同?我会认为这些在长度上应该是相同的,因为时间只是 Jday 的一部分。有任何想法吗?
date - Convert Julian Date to Gregorian Date
I'm writing an application in Lua that calculates the sunset/sunrise, and to do this I had to convert the Gregorian date in to Julian days initially and do all the complex maths and such from there.
I've completed the hard maths, but now I need to convert the Julian date (2456495.6833865 as an example) back to a Gregorian one, complete with the time. The only code I've found that can do this only has the day, year and month, but no mention of the time (which I believe is expressed as a fraction of the day, in this case the numbers after the decimal point)
Any help would be greatly appreciated - The website below has the functionality but I cant find any code or ways of doing it:
http://ssd.jpl.nasa.gov/tc.cgi#top
Thanks again,
FYP.
python - 如何使用自定义日历进行 timedelta 计算?
我正在编写一个程序,它需要能够处理多个日历(主要是标准的“proleptic Gregorian”和“365 day”(无闰)日历)。python datetime模块开箱即用地处理公历,但我也想让它处理其他日历。
一个简短的例子:
这当然是模块的预期操作,但它不能满足我的特殊需求。我希望能够将日历设置为“noleap”并保留 datetime 和 timedelta 的功能。
我想知道是否有人有任何使用日期时间定义/使用自定义日历的经验?
r - 将儒略日转换为日/月/年
我的帖子显然不清楚,所以我正在尝试修复它,如果我仍然不清楚,请随时告诉我!
我得到了一个物理变量的数据框,每分钟都有一个数据。我想将前 4 列转换为一个:R 中的 "%d/%m/%Y %H:%M" (GMT)。
c# - 在 C# Micro 框架中将 Julian 日期和时间转换为 DateTime
我在https://stackoverflow.com/a/14554483/1082492找到了将 a 转换DateTime
为 Julian Date 的代码,但我找不到代码来反转这个过程,更重要的是包括一天中的时间。我正在尝试在 .NET Micro Framework 中执行此操作,因此我可以使用的内容更加有限。
r - R中的方向统计
我需要为我正在做的定向统计工作创建一个函数。我想用圆圈显示洪水事件的分布并计算平均方向和方差。
我需要通过将儒略日期乘以(360/365)来计算以弧度为单位的角度值。我遇到了问题,因为我需要一个函数来考虑我正在考虑的 40 年记录中的闰年。即 IF 闰年角度值 = julian date x (360/366)。
我使用的数据是高于阈值的峰值,因此我没有每年的数据,并且在某些年份我有多个条目
非常感谢 Rich
java - convert MJD to date java
I ma trying to understand following paragraph:
start_time: This 40-bit field contains the start time of the event in Universal Time, Co-ordinated (UTC) and Modified Julian Date (MJD). This field is coded as 16 bits giving the 16 LSBs of MJD followed by 24 bits coded as 6 digits in 4-bit Binary Coded Decimal (BCD). If the start time is undefined (e.g. for an event in a NVOD reference service) all bits of the field are set to "1".
Example 1: 93/10/13 12:45:00
is coded as "0xC079124500
".
I want to convert 40-bit to date and time in java without using third party library.
Please help me on this.