This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
""" | |
Script to loop through images and categorize them in some way. | |
""" | |
import os | |
import tkinter | |
import pandas as pd | |
from PIL import Image | |
from PIL import ImageTk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python2 | |
""" | |
Script that allows for conversion of a netcdf file to | |
a stack of geotiff files with each raster being a time | |
slice from the input file. | |
Base implementation taken from: | |
https://www.linkedin.com/pulse/convert-netcdf4-file-geotiff-using-python-chonghua-yin | |
Usage: |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module testmod | |
implicit none | |
integer, parameter :: i4b = SELECTED_INT_KIND(9) | |
integer, parameter :: dp = KIND(1.0D0) | |
type t1 | |
integer :: i | |
end type t1 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var | |
x : array[0..99] of single; | |
y : array[0..99] of single; | |
i : Integer; | |
N : Integer; | |
s : Integer; | |
nn : Integer; | |
x_s : single; | |
y_s : single; | |
x_dist : single; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.