Function formatMjd( mjd, format )

Description:
Converts a Modified Julian Date value to a date using a customisable date format. The format is as defined by the java.text.SimpleDateFormat class. The default output corresponds to the string "yyyy-MM-dd'T'HH:mm:ss"
Parameters:
mjd (floating point)
modified Julian date
format (String)
formatting patttern
Return Value (String):
custom formatted time corresponding to mjd
Examples:
Signature:
java.lang.String formatMjd(double, java.lang.String)