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 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
""" Script for generating .kml files for Ocean and Sea Ice Satellite Application Facility(OSI-SAF) products. | |
Made as a show case. | |
USAGE: | |
python OSISAF_kml_generator.py [with arguments] | |
EXAMPLES: | |
python OSISAF_kml_generator.py -p conc |
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
fimex --input.file=http://nbstds.met.no/thredds/dodsC/NBS/S1B/2019/10/14/EW/S1B_EW_GRDM_1SDH_20191014T084352_20191014T084452_018469_022CC3_15BE.nc --input.type=nc4 --output.type=NetCDF --extract.selectVariables=Amplitude_HV --extract.removeVariable=crsWGS84 --interpolate.method=forward_mean --interpolate.projString="+proj=stere +lat_0=90 +lat_ts=71 +lon_0=0 +k=1 +x_0=0 +y_0=0 +datum=WGS84 +units=m +no_defs" --interpolate.xAxisValues=-815464.0,-815262.435,...,-613899.0 --interpolate.yAxisValues=-1671949.0,-1671796.504,...,-1519453.0 --interpolate.xAxisUnit=m --interpolate.yAxisUnit=m --output.file int_swath.nc |
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.
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 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
# inspired by https://scitools.org.uk/cartopy/docs/v0.16/gallery/effects_of_the_ellipse.html | |
import matplotlib.pyplot as plt | |
import matplotlib | |
import cartopy.crs as ccrs | |
import cartopy.feature as cfeature | |
from matplotlib.patheffects import Stroke | |
import numpy as np | |
import shapely.geometry as sgeom | |
import matplotlib.ticker as mticker |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
OlderNewer