Commit ba40e963 authored by Kristin Berry's avatar Kristin Berry
Browse files

Updated formatting for isd json spec

parent 3d673d83
Loading
Loading
Loading
Loading
+183 −192
Original line number Diff line number Diff line
@@ -5,16 +5,6 @@
   "type": "object",

   "properties": {
       "BORESIGHT": {
	   "description": "Boresight (x,y,z) vector",
           "type": "array",
	    "items": {
                 "type": "number",
		 "description": "Component of the boresight vector",
		 "minItems": 3,
                 "maxItems": 3
            }
       },
       "DETECTOR_CENTER": {
          "description": "Center of the detector in pixel coordinates",
          "type": "array",
@@ -54,14 +44,15 @@
           "description": "The the number of samples in the image",
           "type": "number"
       },

       "RADII": {
           "description": "The radii of the target.",
           "type": "array",
           "items": {
              "type": "number",
              "description": "The first element is the semi-major axis. The second element is the
                                 semi-minor axis.",
              "minItems": 1,
                 "maxItems": 3
              "maxItems": 2
          }
       },
       "OPTICAL_DISTORTION": {
@@ -72,16 +63,17 @@
                 "type": "array",
                 "items": {
                    "type": "number"
                    "description": "Each coefficient used for the distortion equation in order of
                                    increasing degrees." 
                   }
                },
                "key" : {
                   "type": "string",
		    "description": "key into LUT to determine equation to use"
                   "description": "Key into LUT to determine equation to use."
               }
            },
            "required": ["coefficients", "equation_key"]
       },

       "STARTING_DETECTOR_SAMPLE": {
          "description": "The sample on the detector where the data starts",
          "type": "number"
@@ -101,7 +93,9 @@
          "description": "Transformation y coefficients from focal plane (mm) to pixel coordinates",
          "type": "array",
          "items": {
                 "type": "number"
             "type": "number",
             "minItems": 3,
             "maxItems": 3
           }
       },
       "SENSOR_LOCATION": {
@@ -152,7 +146,6 @@
            }
         }
      },

      "ORIENTATION" : {
         "description": "Orientation of the sensor provided in quaternions",
         "type": "array",
@@ -165,8 +158,7 @@
            }
         }
      },

       "DETECTOR_LINE_RATE": {
      "LINE_SCAN_RATE": {
         "description": "The line rates of the detector map with the associated start line and time",
         "type": "array",
         "items": {
@@ -180,13 +172,15 @@
               },
               "EXPOSURE_TIME": {
                  "type": "number"
                  "description": "The exposure time in seconds." 
               },
               "required": [ "EXPOSURE_TIME"]
            }
         }
      }, 
      "DETECTOR_SAMPLE_SUMMING": {
           "description": "The summing in the sample-direction",
         "description": "The summing in the sample-direction. A summing of 1 indicates no summing, 
                         summing of 2 indicates 2 pixel summing, 4 indicates 4 pixel summing, etc",
         "type": "number"
      },
      "DETECTOR_LINE_SUMMING": {
@@ -234,9 +228,6 @@
         "description": "The type of interpolation method to use.",
         "type": "string"
      },


   "required": ["FOCAL_LENGTH", "BORESIGHT","CCD_CENTER","IMAGE_LINES","IMAGE_SAMPLES" ]

   }
}