-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathindex.Rmd
146 lines (85 loc) · 4.65 KB
/
index.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
---
title: "Where you Are from?"
output:
flexdashboard::flex_dashboard:
self_contained: False
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(warning = FALSE, message = FALSE)
library(flexdashboard)
library(leaflet)
library(tidygeocoder)
loc <- read.csv("data/location.csv", sep = "|")
```
<style type="text/css"> p {font-size: 20px;}
</style>
Home {data-icon="fa-home"}
=====================================
Column {data-width=650}
-----------------------------------------------------------------------
###
```{r}
loc |>
geocode(home_city_country, method = "osm", lat = latitude, long = longitude) |>
leaflet() |>
addProviderTiles(providers$CartoDB.Positron) |>
setView(85.32058, 28.37890, zoom = 7) |>
addMarkers(
lng = ~longitude,
lat = ~latitude,
popup = paste0(loc$name, "<br>", loc$home_city_country),
clusterOptions = markerClusterOptions()
)
```
Column {data-width=250}
-----------------------------------------------------------------------
###
```{r}
knitr::kable(loc) |>
kableExtra::kable_styling("striped", full_width = T) |>
kableExtra::scroll_box(height = "500px")
```
Instruction {data-icon=""}
=====================================
Let's help you submit your first `Pull Request`.
Once your pull request is being merged, your profile will be visible in the Submissions section of this page. For this exercise you'll be adding a new entry to the source code of this website with your profile details. Excited? Let's begin!
Row {.tabset .tabset-fade}
-------------------------------------
### Step 1
- Go to this [GitHub repository](https://github.com/bjungbogati/flexdash_map) and fork the project to your account.
- Click on the fork button on the top right corner of the repository page to do it.
- Once done, GitHub will take you to the forked copy in your account.
Eg: `https://github.com/YOUR-USERNAME/flexdash_map`
### Step 2
- Clone the forked repository to your local machine. Click on the big green button saying "Clone or download" and copy the https url of your repository.
- Fire up the terminal (on linux systems ctrl+alt+t. on Windows open the Git-bash ) navigate to your desired directory and type the following command.
- Replace the link with the clone URL of your repository and hit Enter.
git clone https://github.com/YOUR_USERNAME/flexdash_map.git
### Step 3
- Let's start working on the changes required now! First **cd** into the cloned folder by typing the following command.
- `cd flexdash_map`
- Now, Before jumping in to the code, make sure you're working on a different branch and not in master.
- To create a new branch, from the terminal inside your current project directory type the following command.
- `git branch YOUR_BRANCH_NAME`
- Replace the YOUR_USERNAME with your GitHub username or you can give any name to your branch which describes the purpose of the branch. Since here we're adding your profile, we'll simply give the name of the branch as above. eg: git branch binod-location.
- Once you have created the new branch we'll change the current branch from main to your newly created branch. Execute the following command on your terminal.
- `git checkout YOUR_BRANCH_NAME`
### Step 4
- In your file manager/terminal navigate to the downloaded repo.
- Open the sub-directory ***data/location.csv** and add your respective name and location
name | home_city_country <br>
Your Name | Bhaktapur, Nepal
- Note: Please, separate name and location by pipe **|**.
### Step 5
- Commit the changes with a suitable commit message. First we need to stage all the changes we made. Open the terminal inside the project directory and execute following commands.
- `git add .`
- The above command stages all the changes, now lets commit it with a suitable message.
- `git commit -m "YOUR_COMMIT_MESSAGE"`
### Step 6
- Let's push the changes to your repository! execute the following command to push all the changes to the forked copy in your GitHub account.
- `git push -u origin YOUR_BRANCH_NAME`
### Step 7
- Now, open your web browser and goto the original repository on GitHub. If your changes has been pushed to your forked copy, You'll be able to see an option saying "New Pull Request" in the original repository.
- Click on the option, one next page choose the master branch of the main repo against your created-branch name ( choose your branch name we created and not master). the click on create pull request.
- Once you fill in the commit message and comment click on submit pull request. and you are all done! Wait for a reviewer to review your file and merge it to the master.
- Once its been successfully merged, your name and location map will be visible in the home tab.