Package edu.harvard.hul.ois.ots.schemas.MIX

Examples of edu.harvard.hul.ois.ots.schemas.MIX.DigitalCameraCapture


        BasicDigitalObjectInformation bdoi = mix.getBasicDigitalObjectInformation();
        String byteOrder = bdoi.getByteOrder().toString ();
        assertEquals ("big endian", byteOrder);
       
        ImageCaptureMetadata icm = mix.getImageCaptureMetadata();
        DigitalCameraCapture dcc = icm.getDigitalCameraCapture();
        CameraCaptureSettings ccs = dcc.getCameraCaptureSettings();
        GPSData gps = ccs.getGPSData();
        String gpsVersionID = gps.getGpsVersionID().toString();
        assertEquals ("99.5", gpsVersionID);
       
        GPSDestLatitude dlat = gps.getGPSDestLatitude();
View Full Code Here


            gps = new GPSData ();               // Add this to ccs if needed
            sd = new SubjectDistance ();        // Add this to id if needed
           
            // Build DigitalCameraCapture with subelements, but don't hook it to icm
            // until it's needed.
            dcc = new DigitalCameraCapture ();
            dcm = new DigitalCameraModel ();
            dcc.setDigitalCameraModel(dcm);
            ccs = new CameraCaptureSettings ();
            dcc.setCameraCaptureSettings(ccs);
           
View Full Code Here

TOP

Related Classes of edu.harvard.hul.ois.ots.schemas.MIX.DigitalCameraCapture

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.