Commit 12b599f1 authored by Tyler Wilson's avatar Tyler Wilson
Browse files

Removed Euler Angle references and made some corrections to ensure a valid JSON schema

parent 5f3e262f
Loading
Loading
Loading
Loading
+58 −70
Original line number Diff line number Diff line
@@ -160,22 +160,9 @@
		        }
	         }
	     },

       "ORIENTATION" : {
           "description": "Orientation of the sensor provided in Euler angles or quaternions",
           "type": "object",
	   "properties" : {
	      "euler_angles" : {
		 "type": "array",
		    "items": {
		       "type": "array",
			"items" : {
			  "type": "number",
			  "minItems": 3,
                          "maxItems": 3
			}
		     }
		},
	      "quaternions" : {
           "description": "Orientation of the sensor provided in quaternions",
           "type": "array",
           "items": {
               "type": "array",
@@ -185,9 +172,8 @@
                  "maxItems": 4
           }
          }
		}
	    }
      },

       "DETECTOR_LINE_RATE": {
           "description": "The line rates of the detector map with the associated start line and time",
           "type": "array",
@@ -252,6 +238,8 @@
           "type": "string"
       },

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

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

 }
}