This file contains hidden or 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
""" | |
Created on Thu Mar 4 19:14:00 2021 | |
@author: nma | |
""" | |
import os | |
raster_f = "A_raster_file.tif" | |
raster_s = "B_raster_file.tif" |
This file contains hidden or 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
""" | |
Created on Thu Mar 4 19:14:00 2021 | |
@author: nma | |
""" | |
import numpy as np | |
from osgeo import gdal,osr | |
This file contains hidden or 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
""" | |
Created on Thu Mar 4 19:14:00 2021 | |
@author: nma | |
""" | |
import numpy as np | |
from osgeo import gdal,gdal_array | |
This file contains hidden or 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
import wrf | |
import pandas as pd | |
import numpy as np | |
import plotly.figure_factory as FF | |
import plotly.graph_objects as go | |
import time | |
from scipy.spatial import Delaunay | |
from netCDF4 import Dataset | |
direc = "wrfoutput_location" | |
datain = Dataset(direc) |
NewerOlder