I have a challenge in converting a batch of ENVI binary files(BSQ) temperature data(gotten from SAFARI 2000 AVHRR-Derived LST) to geotiff files. How can i read them and convert it to geotiff?
An example of one such file is 'afn_011-011_96.n14-LST_UL'
Conversion of ENVI binary files to tiff
836 Views Asked by grace cherotich At
1
There are 1 best solutions below
Related Questions in RSTUDIO
- R cannot open file with cfa()
- Missing projection file in R's rgdal package for geospatial analysis
- rJava load error in RStudio/R after "upgrading" to OSX Yosemite
- Plotting Modeled Data as my Regression Curve in R/RStudio
- RStudio - blank screen on Mac
- Prompt user without waiting
- The error when publishing a shiny app
- R. Why is the output data becoming ranks of the data instead of the original data?
- Is there any way to disable environment pane in RStudio?
- Can I change significant figures on the fly
- Web scraping the make/model/year of VIN numbers in RStudio
- Unable to install RStudio on Mac OSX 10.10
- Connecting R to mysql DB via SSH tunnel
- Can't install devtools in RStudio -- Dependencies not found (xml2/rversions)
- RODBC with MAC not working. Using unixODBC and Rstudio
Related Questions in DATA-CONVERSION
- Mysql cell conversion
- Binary to CSV record Converstion
- Converting data structures to other data structures
- Which encoding replaces "í" with "\303 \255"?
- Converting a 'long' type into a binary String
- Convert .mat files to signal .slx file
- How to convert a Numpy array (Rows x Cols) to an array of XYZ coordinates?
- Converting "weekstring" to enum
- C# List which could contain only image or string
- byte array with variable length to number
- Convert nested JSON to CSV file in Python
- Convert Date format in shell
- Why is my preferences data being returned as an array instead of a string?
- Converting .fasta files to .gff3 files
- Converting String To Float number in android
Related Questions in ENVI
- HOW to get the same ENVI result in IDL using CONVOL function?
- How to read wavelength information from envi file in spectral python libraray?
- How to use spatial PCA analysis to group hyperspectral image?
- How to run IDL procedure to perform Band Math on all band?
- How do I convert a .nc file with multiple layers into a file readible in ENVI in R
- Error when trying to calculate mean and SD of environmental dataset with loop from .nc data
- IDL variable name based on input file name
- How to transform a HDR Envi Image into a PNG image (using GDAL)
- How to read HDR envi image in the Java (using GDAL or Opencv)?
- QGIS How do I set the spatial resolution of a raster?
- How to use envi setup head function?
- How to perform raster calculation in R
- How to open/read an ENVI file in R
- Conversion of ENVI binary files to tiff
- Can't find .pro file for Convert Map Projection?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You would need to provide a proper sample dataset and the corresponding meta-data that tells you the image dimensions in pixels, the data type and so on, but in principle you can do it with ImageMagick which is included in most Linux distros and is available for macOS and Windows.
So, using the dataset here sample dataset and knowing the data is unsigned 8 bit and 360x180 pixels, you would run this command in Terminal (or Command Prompt if on Windows):
If your data is multi-band band-sequential, you may have to use:
Or, if you cannot get that to work, you may need to extract each band separately using a byte offset and then combine them afterwards, something like:
Note that if you install ImageMagick v7 or newer, the above commands change to:
rather than:
Keywords: ImageMagick, command-line, command line, image, image processing, satellite, ENVI, band-sequential, planar, imagery, AVHRR, convert