View bitbucket-pipelines.yml
definitions: | |
steps: | |
- step: &build-and-push | |
script: | |
- IMAGE_TAG=$(cat TAG.txt) | |
- echo ${IMAGE_TAG} | |
- IMAGE_NAME = <your-image-name> | |
- docker build -t $IMAGE_NAME . | |
- pipe: atlassian/aws-ecr-push-image:1.1.1 | |
variables: |
View tokyo-bay-area-map.R
library(rvest) | |
library(stringr) | |
library(leaflet) | |
library(RCurl) | |
library(rjson) | |
library(RgoogleMaps) | |
#住所を文字列で入力すると位置情報をjson形式で返却する関数 | |
GetLocationInformation <-function(address) | |
{ |