GEE series: Unit 1: introduction to Google Earth engine

Unit 1: introduction to Google Earth engine Developed by the Colorado State University graduate degree program in ecology and the laboratory of natural resource ecology Authors: Peder Engelstad, Dan Carver Updated may 2021 1 Introduction2 background3 start using Google Earth engine 3.1 browsing user interface3.2 introducti ...

Posted by unreel on Tue, 15 Feb 2022 00:08:59 +0100

[49] Python full stack -- template rendering

1. Label {% tag%} 1.1 for loop label <ul> <!-- Iteratable objects can use loops --> <!-- Loop list --> {% for foo in hobby %} <li>{{ foo }}</li> {% empty %} <!-- Displayed when the data of the loop is empty or there is no such variable empty The following --> <h1>Not ...

Posted by xx_princess_xx on Mon, 14 Feb 2022 16:48:45 +0100

Python Basics

1. Chain assignment x=y=123 #Equivalent to x=123;y=123 2. Series unpacking assignment a,b,c=4,5,6 #Equivalent to a=4;b=5;c=6 Using series unpacking assignment to realize variable exchange a,b=1,2 a,b=b,a #a. The values of b are interchangeable print(a,b) result: a=2;b=1 3. Constant python does not support constants. The val ...

Posted by Horizon88 on Mon, 14 Feb 2022 16:44:37 +0100

Python Basics (values, variables, operators)

Python Basics (values, variables, operators) pycharm operation Run: ctrl + f10 Run the current file: ctrl +shift + f10 1, Output functions in Python print() function You can output numbersCan be a stringThe output can be an expression containing an operator The print() function can output the content to the destination monitor file #O ...

Posted by ben2005 on Mon, 14 Feb 2022 15:08:49 +0100

Pandas tutorial - Financial Analysis Tutorial

Note: the tutorial content is from https://nbviewer.jupyter.org/github/twiecki/financial-analysis-python-tutorial/tree/master/ This is not a complete system pandas tutorial. The test demo of this foreign tutorial is old, and the new version of pandas may not be compatible with the source program. This tutorial is a correction based on the origi ...

Posted by masalastican on Mon, 14 Feb 2022 13:24:57 +0100

Superset localization under Windows

1. Install python environment Superset is a report system developed based on python. It needs a python environment to run, and anaconda is very convenient to manage the package management of Python. Therefore, anaconda is recommended to help configure the python environment. 1.1 installation of anaconda Install anaconda using Tsinghua im ...

Posted by judgy on Mon, 14 Feb 2022 10:15:46 +0100

Selenium+Python download and upload files

catalogue This article records the automated test script I wrote using Selenium. The function is to download files from the web page and upload the downloaded files to another page. At the same time, some problems and solutions encountered in the process of writing are recorded Download file function Google browser download settings Ent ...

Posted by Sorrow on Mon, 14 Feb 2022 07:05:16 +0100

p10 scheduled task

APScheduler provides tasks based on date, fixed time interval and crontab type, and can persist tasks. APScheduler provides a variety of different schedulers to facilitate developers to use according to their actual needs; At the same time, it also provides different storage mechanisms, which can facilitate collaboration with Redis, database an ...

Posted by janek211 on Mon, 14 Feb 2022 01:38:31 +0100

Python function learning II

python custom function learning II 1, Change of parameters 1. Location parameters Position parameter means that when transferring parameter value, it must correspond to the parameters defined by the function one by one, and the position cannot be disturbed. For example, a user-defined function call with two fixed parameters def test(name,age): ...

Posted by crash58 on Sun, 13 Feb 2022 13:31:46 +0100

Double pointer algorithm based on algorithm c++&python

The core of double pointer: transfer the information expressed by the previous state pointer to the next state, so as to reduce unnecessary search Template: while(i < n && j < m){     if(checked(i, j)) i ++;     j ++; } Topic 1: Given a sequence of integers a1,a2,..., an with a length of nn and a sequence of integers b1 ...

Posted by ignace on Sun, 13 Feb 2022 10:37:24 +0100