You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: JPFITS/AstraCarta.cs
+11-3Lines changed: 11 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -69,7 +69,7 @@ public static void Help()
69
69
{
70
70
StringBuildersb=newStringBuilder();
71
71
sb.AppendLine("\"-maglimit\" Magnitude limit below which to flag bright sources and save to output table. Default is 100, to pass all, given that there is no such low magnitude."+Environment.NewLine);
72
-
sb.AppendLine("\"-buffer\" Tolerance buffer around image field, in arcminutes. This field can be negative, if one wishes to mitigate image padding in the query."+Environment.NewLine);
72
+
sb.AppendLine("\"-buffer\" Tolerance buffer around image field, in arcminutes. This field can be negative, if one wishes to mitigate image padding."+Environment.NewLine);
73
73
sb.AppendLine("\"-offsetra\" Offset the center of the query region in right ascension. Units in arcminutes."+Environment.NewLine);
74
74
sb.AppendLine("\"-offsetdec\" Offset the center of the query region in declination. Units in arcminutes."+Environment.NewLine);
75
75
sb.AppendLine("\"-shape\" Shape of field to query: \"rectangle\" (default) or \"circle\". Circle may only be used if pixwidth and pixheight are equal. Rectangle query uses a polygon query with corners defined by an ad-hoc WCS given the supplied field parameters, whereas circle uses a radius."+Environment.NewLine);
@@ -99,8 +99,8 @@ public static void Help()
99
99
/// <summary>
100
100
/// Perform a query with no user interface dialog form. Will throw an informative exception if something goes wrong. Returns a string which is the filename of the catalogue data downloaded. If nothing was found the string will be empty.
101
101
/// </summary>
102
-
/// <param name="ra">The right acension of the field center.</param>
103
-
/// <param name="dec">The declination of the field center.</param>
102
+
/// <param name="ra">The right acension of the field center. Degrees.</param>
103
+
/// <param name="dec">The declination of the field center. Degrees.</param>
104
104
/// <param name="scale">The plate scale in arcseconds per pixel.</param>
105
105
/// <param name="pixwidth">The number of horizontal pixels of the image.</param>
106
106
/// <param name="pixheight">The number of vertical pixels of the image</param>
@@ -110,6 +110,9 @@ public static void Help()
110
110
/// <br />Boolean arguments do not require a value, and their presence indicates true. For example the presence of optArgs.Add("-fitsout") equates to true for writing the file as a FITS bintable.</param>
/// <summary>Gets all extension names of a specified extension type in the FITS file. If no extensions of the type exist, returns and empty array.</summary>
7454
+
/// <summary>Gets all extension names of a specified extension type in the FITS file. If no extensions of the type exist, returns an empty array.</summary>
7455
7455
/// <param name="FileName">The full file name to read from disk.</param>
Copy file name to clipboardExpand all lines: JPFITS/FITSImage.cs
+10-10Lines changed: 10 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -64,7 +64,7 @@ public FITSImage(string fullFileName, bool mayContainExtensions)
64
64
/// <param name="imageArrayVectorData">The data array or vector to use for the FITS image data. The precision and rank of the underlying array will be automatically determined. Vectors will be converted to a 1D array.</param>
65
65
/// <param name="doStats">Optionally perform the statistics to determine min, max, mean, median, and standard deviation of the image data - saves time if you don't need those.</param>
66
66
/// <param name="doParallel">Populate the FITSImage object ImageData and perform stats (if true) with parallelization.</param>
/// <param name="populateData">Optionally populate the image data array - sometimes you just want the header and don't need the data.</param>
310
310
/// <param name="doStats">Optionally perform the statistics to determine min, max, mean, median, and standard deviation of the image data (if populated) - saves time if you don't need those.</param>
311
311
/// <param name="doParallel">Populate the FITSImage object ImageData and perform stats (if true) with parallelization.</param>
@@ -359,7 +359,7 @@ public FITSImage(string fullFileName, int[]? range, bool populateHeader, bool po
359
359
/// <param name="populateData">Optionally populate the image data array - sometimes you just want the header and don't need the data.</param>
360
360
/// <param name="doStats">Optionally perform the statistics to determine min, max, mean, median, and standard deviation of the image data (if populated) - saves time if you don't need those.</param>
361
361
/// <param name="doParallel">Populate the FITSImage object ImageData and perform stats (if true) with parallelization.</param>
@@ -428,7 +428,7 @@ public FITSImage(string fullFileName, string extensionName, int[]? range, bool p
428
428
/// <param name="populateData">Optionally populate the image data array - sometimes you just want the header and don't need the data.</param>
429
429
/// <param name="doStats">Optionally perform the statistics to determine min, max, mean, median, and standard deviation of the image data (if populated) - saves time if you don't need those.</param>
430
430
/// <param name="doParallel">Populate the FITSImage object ImageData and perform stats (if true) with parallelization.</param>
/// <br />If the file name already exists on disk, the primary unit will be overwritten, and any existing extensions will be appended to conserve the data file.</summary>
936
936
/// <param name="precision">Byte precision at which to write the image data.</param>
937
937
/// <param name="doParallel">Populate the underlying byte arrays for writing with parallelization.</param>
/// <param name="overwriteExtensionIfExists">If the image extension already exists it can be overwritten. If it exists and the option is given to not overwrite it, then an exception will be thrown.</param>
973
973
/// <param name="precision">Byte precision at which to write the image data.</param>
974
974
/// <param name="doParallel">Populate the underlying byte arrays for writing with parallelization.</param>
0 commit comments