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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.46.0/mapbox-gl.js'></script> | |
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.46.0/mapbox-gl.css' rel='stylesheet' /> | |
<script src='https://api.mapbox.com/mapbox-gl-js/plugins/mapbox-gl-compare/v0.1.0/mapbox-gl-compare.js'></script> | |
</head> | |
<body> |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.46.0/mapbox-gl.js'></script> | |
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.46.0/mapbox-gl.css' rel='stylesheet' /> | |
<script src='https://api.mapbox.com/mapbox-gl-js/plugins/mapbox-gl-compare/v0.1.0/mapbox-gl-compare.js'></script> | |
</head> | |
<body> |
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
# -*- coding: utf-8 -*- | |
"""Factories to help in tests.""" | |
import random | |
from datetime import date | |
import factory | |
# noinspection PyPackageRequirements | |
from faker import Faker | |
from .database import db | |
from xxx.controllers import User |
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
note: set accordingly | |
export PATH=$PATH:/users/daryl/dev/gis/osmosis/package/bin | |
note: is space delimited | |
export JAVACMD_OPTIONS="-Xmx5G -Djava.io.tmpdir=/Volumes/1TBHD0/tmp" | |
osmosis \ | |
--read-pbf planet-latest.osm.pbf \ | |
--tf accept-nodes "boundary=administrative" \ | |
--tf reject-relations \ |
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
import os | |
import aiohttp | |
import json | |
import base64 | |
import asyncio | |
import uvloop | |
START_ID = 1000 | |
END_ID = 1020 |
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
FROM python:3.6-alpine | |
ENV CFLAGS="$CFLAGS -L/lib" | |
ENV PYTHONUNBUFFERED 0 | |
RUN apk update \ | |
&& apk upgrade \ | |
&& apk add --update-cache --repository http://dl-3.alpinelinux.org/alpine/edge/testing/ \ | |
--virtual build-deps g++ gcc python3-dev musl-dev binutils \ | |
postgresql-dev libpq mariadb-dev \ |
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
https://www.cnblogs.com/jiukun/p/7481287.html |
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
from snappy import snappy_formats | |
method = snappy_formats.get_compress_function(snappy_formats.DEFAULT_FORMAT) | |
out_file = 'out_file.snappy' | |
with open('in_file.csv', 'r') as fr, open(out_file, 'w') as fw: | |
method(fr, fw) |
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
FROM python:3.6-alpine | |
ENV CFLAGS="$CFLAGS -L/lib" | |
ENV PYTHONUNBUFFERED 0 | |
RUN apk update && \ | |
apk upgrade && \ | |
apk add --update-cache --repository http://dl-3.alpinelinux.org/alpine/edge/testing/ \ | |
binutils \ | |
gcc \ | |
gdal \ | |
geos \ |