netcdf to shape
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from netCDF4 import Dataset
from osgeo import ogr,osr
from shapely import geometry
import os
set filepath="C:\some path\having spaces.txt" | |
for /F "delims=" %%i in (%filepath%) do set dirname="%%~dpi" | |
for /F "delims=" %%i in (%filepath%) do set filename="%%~nxi" | |
for /F "delims=" %%i in (%filepath%) do set basename="%%~ni" | |
echo %dirname% | |
echo %filename% | |
echo %basename% |
<html> | |
<head> | |
<!-- | |
@tag hta:application | |
@attribute ApplicationName Sets the name of the HTA. | |
@attribute Border [Thick]|Thin|None | |
@attribute BorderStyle [Normal]|Raised|Sunken|Complex|Static | |
@attribute Caption [Yes]|No |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from netCDF4 import Dataset
from osgeo import ogr,osr
from shapely import geometry
import os
.sketch-underline {
# background: url(https://www.monicahq.com/img/sketch_underline.svg) 0 100% no-repeat;
background: url(https://raw.githubusercontent.com/gist/soiqualang/f90714627f4ad186c47a974720fafb3c/raw/17f56b29fef699eee952959aeb9f57554aba762d/sketch_underline.svg) 0 100% no-repeat;
background-size: 100% .75rem;
padding-bottom: .6rem;
}
Video Hướng dẫn
import os
os.environ['KMP_DUPLICATE_LIB_OK']='True'
// Define the string
var string = 'Hello World!';
// Encode the String
var encodedString = btoa(string);
console.log(encodedString); // Outputs: "SGVsbG8gV29ybGQh"
// Decode the String
var decodedString = atob(encodedString);