Skip to content

Instantly share code, notes, and snippets.

View emileten's full-sized avatar

Emile Tenezakis emileten

  • Development Seed
  • Seoul, Korea
View GitHub Profile
@emileten
emileten / test-lonboard-env.yaml
Created November 9, 2023 11:25
test lonboard env
name: lonboard
channels:
- conda-forge
- defaults
dependencies:
- python==3.10.12
- pip==23.2.1
- pip:
- pyogrio
@emileten
emileten / try-lonboard.ipynb
Created November 9, 2023 11:24
try-lonboard
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@emileten
emileten / tiling.ipynb
Created November 3, 2023 12:04
tiling.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@emileten
emileten / fix-datetimes.ipynb
Created September 25, 2023 09:38
fix datetimes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@emileten
emileten / export-gh-env-vars-to-text
Created September 4, 2023 02:43
Export github environment variables to current shell environment through github api
eval $(gh api repos/{owner}/{repo}/environments/{environment_name}/variables | jq -r '.variables[] | "export \(.name)=\(.value)"')
@emileten
emileten / create_CCI_mosaic.ipynb
Created June 23, 2023 09:14
create CCI mosaic
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@emileten
emileten / test-titiler-pgstac.ipynb
Last active May 24, 2023 02:40
test titiler pgstac
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@emileten
emileten / test-titiler-pgstac
Created May 24, 2023 02:38
test-titiler-pgstac
{
"cells": [
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
"## titiler.PgSTAC Demo\n",
"\n",
"This Notebook aims to show the different features provided by titiler.pgstac application\n",
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@emileten
emileten / get-AWS-lambda-environment-variables-in-dotenv-format.sh
Created April 28, 2023 06:02
get-AWS-lambda-environment-variables-in-dotenv-format
aws lambda get-function-configuration --function-name <function-name> --query 'Environment.Variables' --output json | jq -r 'to_entries | .[] | .key + "=" + .value' > .env