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
| FROM osrf/ros:noetic-desktop-full | |
| MAINTAINER Chenhui Zhang | |
| LABEL version="1.0" | |
| LABEL description="Docker Image for GEM Simulator" | |
| ARG USER=ros | |
| ARG PASS=ros | |
| RUN apt update && apt install -y curl wget git vim htop xauth psmisc zsh tmux |
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
| https://data.lpdaac.earthdatacloud.nasa.gov/lp-prod-protected/HLSS30.015/HLS.S30.T16TCK.2021095T163839.v1.5.B03.tif | |
| https://data.lpdaac.earthdatacloud.nasa.gov/lp-prod-protected/HLSS30.015/HLS.S30.T16TCK.2021095T163839.v1.5.SAA.tif | |
| https://data.lpdaac.earthdatacloud.nasa.gov/lp-prod-protected/HLSS30.015/HLS.S30.T16TCK.2021095T163839.v1.5.B04.tif | |
| https://data.lpdaac.earthdatacloud.nasa.gov/lp-prod-protected/HLSS30.015/HLS.S30.T16TCK.2021095T163839.v1.5.B05.tif | |
| https://data.lpdaac.earthdatacloud.nasa.gov/lp-prod-protected/HLSS30.015/HLS.S30.T16TCK.2021095T163839.v1.5.B07.tif | |
| https://data.lpdaac.earthdatacloud.nasa.gov/lp-prod-protected/HLSS30.015/HLS.S30.T16TCK.2021095T163839.v1.5.SZA.tif | |
| https://data.lpdaac.earthdatacloud.nasa.gov/lp-prod-protected/HLSS30.015/HLS.S30.T16TCK.2021095T163839.v1.5.B10.tif | |
| https://data.lpdaac.earthdatacloud.nasa.gov/lp-prod-protected/HLSS30.015/HLS.S30.T16TCK.2021095T163839.v1.5.B8A.tif | |
| https://data.lpdaac.earthdatacloud.nasa.gov/lp-prod-protected/HLSS30.015/HLS.S30.T16TCK.2021095T |
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
| https://lpdaac.earthdata.nasa.gov/lp-prod-public/HLSS30.015/HLS.S30.T16TDK.2020306T164441.v1.5.jpg | |
| https://cmr.earthdata.nasa.gov/search/concepts/G1962020993-LPCLOUD.xml | |
| https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSS30.015/HLS.S30.T16TDK.2020306T164441.v1.5.Fmask.tif | |
| https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSS30.015/HLS.S30.T16TDK.2020306T164441.v1.5.B01.tif | |
| https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSS30.015/HLS.S30.T16TDK.2020306T164441.v1.5.B02.tif | |
| https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSS30.015/HLS.S30.T16TDK.2020306T164441.v1.5.B03.tif | |
| https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSS30.015/HLS.S30.T16TDK.2020306T164441.v1.5.B04.tif | |
| https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSS30.015/HLS.S30.T16TDK.2020306T164441.v1.5.B05.tif | |
| https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSS30.015/HLS.S30.T16TDK.2020306T164441.v1.5.B06.tif | |
| https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSS30.015/HLS.S30.T16TDK.2020306T164441.v1.5.B07.tif |
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
| #!/bin/bash | |
| GREP_OPTIONS='' | |
| cookiejar=$(mktemp cookies.XXXXXXXXXX) | |
| netrc=$(mktemp netrc.XXXXXXXXXX) | |
| chmod 0600 "$cookiejar" "$netrc" | |
| function finish { | |
| rm -rf "$cookiejar" "$netrc" | |
| } |
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
| { | |
| "cropName":"soybeans", | |
| "reportYear":2020, | |
| "plotHeroImagePath":"/content/dam/asgrow/en-us/images/website-imagery/hero-images/plot-detail-hero/asgrow-hybrids-soybeans-plots.jpg", | |
| "cooperatorName":"Mickey Williams", | |
| "harvestDate":"Oct 01 2020", | |
| "plantingDate":"May 12 2020", | |
| "plantingRate":"", | |
| "seedRate":"129,000", | |
| "plantingRateUom":"", |
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
| import numpy as np | |
| import matplotlib.pyplot as plt | |
| # TODO: Change us! | |
| f = lambda x: (x - 2.2) ** 2 | |
| a = -3 | |
| b = 8 | |
| brackets = [] |
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
| import numpy as np | |
| roots = [] | |
| for a, b in intervals: | |
| if function(a) * function(b) > 0 or a >= b: | |
| roots.append(None) | |
| continue | |
| m = None | |
| for i in range(n_iter): |
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
| Density | bodyfat | Age | Weight | Height | Neck | Chest | Abdomen | Hip | Thigh | Knee | Ankle | Biceps | Forearm | Wrist | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1.0708 | 12.3 | 23 | 154.25 | 67.75 | 36.2 | 93.1 | 85.2 | 94.5 | 59 | 37.3 | 21.9 | 32 | 27.4 | 17.1 | |
| 1.0853 | 6.1 | 22 | 173.25 | 72.25 | 38.5 | 93.6 | 83 | 98.7 | 58.7 | 37.3 | 23.4 | 30.5 | 28.9 | 18.2 | |
| 1.0414 | 25.3 | 22 | 154 | 66.25 | 34 | 95.8 | 87.9 | 99.2 | 59.6 | 38.9 | 24 | 28.8 | 25.2 | 16.6 | |
| 1.0751 | 10.4 | 26 | 184.75 | 72.25 | 37.4 | 101.8 | 86.4 | 101.2 | 60.1 | 37.3 | 22.8 | 32.4 | 29.4 | 18.2 | |
| 1.034 | 28.7 | 24 | 184.25 | 71.25 | 34.4 | 97.3 | 100 | 101.9 | 63.2 | 42.2 | 24 | 32.2 | 27.7 | 17.7 | |
| 1.0502 | 20.9 | 24 | 210.25 | 74.75 | 39 | 104.5 | 94.4 | 107.8 | 66 | 42 | 25.6 | 35.7 | 30.6 | 18.8 | |
| 1.0549 | 19.2 | 26 | 181 | 69.75 | 36.4 | 105.1 | 90.7 | 100.3 | 58.4 | 38.3 | 22.9 | 31.9 | 27.8 | 17.7 | |
| 1.0704 | 12.4 | 25 | 176 | 72.5 | 37.8 | 99.6 | 88.5 | 97.1 | 60 | 39.4 | 23.2 | 30.5 | 29 | 18.8 | |
| 1.09 | 4.1 | 25 | 191 | 74 | 38.1 | 100.9 | 82.5 | 99.9 | 62.9 | 38.3 | 23.8 | 35.9 | 31.1 | 18.2 |
NewerOlder