How to use the pvl._collections.PVLObject function in pvl

To help you get started, we’ve selected a few pvl examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Arcanewinds / FDL-LunarResources / testNAC.py View on Github external
def _load_info_lbl(image):
        """ Load info on the image
        Note:
            If the image is from LOLA, the .LBL is parsed and the
            information is returned.
            If the image is from NAC, the .IMG file is parsed using
            the library `pvl`_ which provide nice method to extract
            the information in the header of the image.
        .. _pvl: http://pvl.readthedocs.org/en/latest/
        """
        label = load_label(image.img)
        for key, val in label.iteritems():
            if type(val) == pvl._collections.PVLObject:
                for key, value in val.iteritems():
                    try:
                        setattr(image, key, value.value)
                    except:
                        setattr(image, key, value)
            else:
                setattr(image, key, val)
        image.start_byte = image.RECORD_BYTES
        image.bytesize = 4
        image.projection = str(label['IMAGE_MAP_PROJECTION'][
                                  'MAP_PROJECTION_TYPE'])
        image.dtype = np.float32
github Arcanewinds / FDL-LunarResources / DataPreparation / AlternativeUnused / coordinateTransform.py View on Github external
def _load_info_lbl(self):
        """ Load info on the image
        Note:
            If the image is from LOLA, the .LBL is parsed and the
            information is returned.
            If the image is from NAC, the .IMG file is parsed using
            the library `pvl`_ which provide nice method to extract
            the information in the header of the image.
        .. _pvl: http://pvl.readthedocs.org/en/latest/
        """

        if self.grid == 'WAC':
            label = load_label(self.img)
            for key, val in label.iteritems():
                if type(val) == pvl._collections.PVLObject:
                    for key, value in val.iteritems():
                        try:
                            setattr(self, key, value.value)
                        except:
                            setattr(self, key, value)
                else:
                    setattr(self, key, val)
            self.start_byte = self.RECORD_BYTES
            self.bytesize = 4
            self.projection = str(label['IMAGE_MAP_PROJECTION'][
                                      'MAP_PROJECTION_TYPE'])
            self.dtype = np.float32
        elif self.grid == 'NAC':
            label = load_label(self.img)
            for key, val in label.iteritems():
                if type(val) == pvl._collections.PVLObject:
github Arcanewinds / FDL-LunarResources / DataPreparation / AlternativeUnused / lat_lon_coordinate_calculator.py View on Github external
def _load_info_lbl(image):
        """ Load info on the image
        Note:
            If the image is from LOLA, the .LBL is parsed and the
            information is returned.
            If the image is from NAC, the .IMG file is parsed using
            the library `pvl`_ which provide nice method to extract
            the information in the header of the image.
        .. _pvl: http://pvl.readthedocs.org/en/latest/
        """
        label = load_label(image.img)
        for key, val in label.iteritems():
            if type(val) == pvl._collections.PVLObject:
                for key, value in val.iteritems():
                    try:
                        setattr(image, key, value.value)
                    except:
                        setattr(image, key, value)
            else:
                setattr(image, key, val)
        image.start_byte = image.RECORD_BYTES
        image.bytesize = 4
        image.projection = str(label['IMAGE_MAP_PROJECTION'][
                                  'MAP_PROJECTION_TYPE'])
        image.dtype = np.float32

pvl

Python implementation for PVL (Parameter Value Language) parsing and encoding.

BSD-3-Clause
Latest version published 2 years ago

Package Health Score

51 / 100
Full package analysis

Similar packages