Skip to content

Commit

Permalink
Merge pull request #72 from harshityadav95/version-6.3.1
Browse files Browse the repository at this point in the history
Version 6.3.1
  • Loading branch information
harshityadav95 authored Jan 4, 2024
2 parents 6ab4675 + 61bee66 commit 9702c8b
Show file tree
Hide file tree
Showing 156 changed files with 4,746 additions and 145 deletions.
88 changes: 45 additions & 43 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
@@ -1,43 +1,45 @@
name: "Test Build"
on:
push:
branches:
- '*'
- '!main'
pull_request:
branches: ["*"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
# submodules: true
# If using the 'assets' git submodule from Chirpy Starter, uncomment above
# (See: https://github.com/cotes2020/chirpy-starter/tree/main/assets)

- name: Setup Pages
id: pages
uses: actions/configure-pages@v3

- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3 # reads from a '.ruby-version' or '.tools-version' file if 'ruby-version' is omitted
bundler-cache: true

- name: Build site
run: bundle exec jekyll b -d "_site${{ steps.pages.outputs.base_path }}"
env:
JEKYLL_ENV: "production"

- name: Test site
run: |
bundle exec htmlproofer _site --disable-external --check-html --allow_hash_href
name: "Test Build"
on:
push:
branches:
- '*'
- '!main'
pull_request:
branches: ["*"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
# submodules: true
# If using the 'assets' git submodule from Chirpy Starter, uncomment above
# (See: https://github.com/cotes2020/chirpy-starter/tree/main/assets)

- name: Setup Pages
id: pages
uses: actions/configure-pages@v3

- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
bundler-cache: true

- name: Build site
run: bundle exec jekyll b -d "_site${{ steps.pages.outputs.base_path }}"
env:
JEKYLL_ENV: "production"

# - name: Test site
# run: |
# bundle exec htmlproofer _site \
# \-\-disable-external=true \
# \-\-ignore-urls "/^http:\/\/127.0.0.1/,/^http:\/\/0.0.0.0/,/^http:\/\/localhost/"
8 changes: 5 additions & 3 deletions .github/workflows/pages-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
# submodules: true
Expand All @@ -42,7 +42,7 @@ jobs:
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3 # reads from a '.ruby-version' or '.tools-version' file if 'ruby-version' is omitted
ruby-version: 3.2
bundler-cache: true

- name: Build site
Expand All @@ -52,7 +52,9 @@ jobs:

- name: Test site
run: |
bundle exec htmlproofer _site --disable-external --check-html --allow_hash_href
bundle exec htmlproofer _site \
\-\-disable-external=true \
\-\-ignore-urls "/^http:\/\/127.0.0.1/,/^http:\/\/0.0.0.0/,/^http:\/\/localhost/"
- name: Upload site artifact
uses: actions/upload-pages-artifact@v1
Expand Down
28 changes: 15 additions & 13 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
# hidden files
.*
!.git*
!.editorconfig
!.nojekyll
!.travis.yml
!.husky
!.commitlintrc.json
!.versionrc.json
# Bundler cache
.bundle
vendor
Gemfile.lock

# bundler cache
# Jekyll cache
.jekyll-cache
_site
vendor

# rubygem
# RubyGems
*.gem

# npm dependencies
# NPM dependencies
node_modules
package-lock.json

# IDE configurations
.idea
.vscode

# Misc
assets/js/dist
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "assets/lib"]
path = assets/lib
url = https://github.com/cotes2020/chirpy-static-assets.git
9 changes: 2 additions & 7 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

source "https://rubygems.org"

gem "jekyll-theme-chirpy", "~> 6.0", ">= 6.0.1"
gem "jekyll-theme-chirpy", "~> 6.3", ">= 6.3.1"

group :test do
gem "html-proofer", "~> 3.18"
gem "html-proofer", "~> 4.4"
end

# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
Expand All @@ -21,8 +21,3 @@ gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin]
# Lock `http_parser.rb` gem to `v0.6.x` on JRuby builds since newer versions of the gem
# do not have a Java counterpart.
gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby]

# Lock jekyll-sass-converter to 2.x on Linux-musl
if RUBY_PLATFORM =~ /linux-musl/
gem "jekyll-sass-converter", "~> 2.0"
end
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# Chirpy Starter [![Gem Version](https://img.shields.io/gem/v/jekyll-theme-chirpy)](https://rubygems.org/gems/jekyll-theme-chirpy) [![GitHub license](https://img.shields.io/github/license/cotes2020/chirpy-starter.svg?color=blue)][mit]
[chirpy]: https://github.com/cotes2020/jekyll-theme-chirpy/
[use-template]: https://github.com/cotes2020/chirpy-starter/generate
[CD]: https://en.wikipedia.org/wiki/Continuous_deployment
[mit]: https://github.com/cotes2020/chirpy-starter/blob/master/LICENSE
5 changes: 2 additions & 3 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ social:
- https://github.com/harshityadav95 # change to your github homepage
# Uncomment below to add more social links
# - https://www.facebook.com/username
# - https://www.linkedin.com/in/username
- https://www.linkedin.com/in/harshityadav95

google_site_verification: google_meta_tag_verification # fill in to your verification string

Expand Down Expand Up @@ -181,12 +181,11 @@ compress_html:
exclude:
- "*.gem"
- "*.gemspec"
- docs
- tools
- README.md
- CHANGELOG.md
- LICENSE
- rollup.config.js
- node_modules
- package*.json

jekyll-archives:
Expand Down
2 changes: 1 addition & 1 deletion _data/contact.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
icon: "fab fa-github"

- type: twitter
icon: "fab fa-twitter"
icon: "fa-brands fa-x-twitter"

- type: email
icon: "fas fa-envelope"
Expand Down
5 changes: 2 additions & 3 deletions _data/share.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
# Sharing options at the bottom of the post.
# Icons from <https://fontawesome.com/>

platforms:
- type: Twitter
icon: "fab fa-twitter"
icon: "fa-brands fa-square-x-twitter"
link: "https://twitter.com/intent/tweet?text=TITLE&url=URL"

- type: Facebook
Expand All @@ -22,4 +21,4 @@ platforms:
#
- type: Weibo
icon: "fab fa-weibo"
link: "http://service.weibo.com/share/share.php?title=TITLE&url=URL"
link: "https://service.weibo.com/share/share.php?title=TITLE&url=URL"
40 changes: 20 additions & 20 deletions _posts/ai_ml/2021-01-29-indian-data-source.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,41 +4,42 @@ author: harshityadav95
date: 2021-01-29 00:00:00 +0530
categories: [AIML]
tags: [project, Machine Learning, Indian Dataset]

---

# Data Sources

![harshityadav95](https://miro.medium.com/max/2400/1*NYzLvZ56lWm-q3kPPxmtIA.png)
Slide from Ai- For Everyone by Deeplearning.ai on Coursera by Andrew Ng

Starting on my Plan to Build real-world project that serves a function [solvepao.com](https://solvepao.com) the main initial data I needed was GIS data of various coordinates of public utility like school, education, Hospitals, etc for India to start with. These Data sources for other countries are easily available online and used as learning dataset for beginner data science projects and hosted on all major public data set repository, apparently for India there is a rise in the initiative by the government to make the data publicly available, and the NIC (National Informatics Center) working on various projects to make that data more accessible but the GIS data I was looking for is only available in the public domain to preview using [Bharat Map](https://bharatmaps.gov.in/) but not for download, while I was Googling for Data but I did compile a list in the process
Starting on my Plan to Build real-world project that serves a function [solvepao.com](https://solvepao.com) the main initial data I needed was GIS data of various coordinates of public utility like school, education, Hospitals, etc for India to start with. These Data sources for other countries are easily available online and used as learning dataset for beginner data science projects and hosted on all major public data set repository, apparently for India there is a rise in the initiative by the government to make the data publicly available, and the NIC (National Informatics Center) working on various projects to make that data more accessible but the GIS data I was looking for is only available in the public domain to preview using [Bharat Map](https://bharatmaps.gov.in) but not for download, while I was Googling for Data but I did compile a list in the process

Few really good examples to check out are :

1. [https://stategisportal.nic.in/stategisportal/](https://stategisportal.nic.in/stategisportal/)
1. [https://stategisportal.nic.in/stategisportal](https://stategisportal.nic.in/stategisportal)
2. [https://bhuvan.nrsc.gov.in/bhuvan_links.php](https://bhuvan.nrsc.gov.in/bhuvan_links.php)
3. [https://indiabiodiversity.org/?lang=en](https://indiabiodiversity.org/?lang=en)

PS: If you look for other specific data like IRIS data for Indian citizens, street signs, handwriting, and other biomedical data that can be found on various University project sites in India

here is compiled a list of various data sources one can check out when working on the next data science project :

## [1. Data.Gov.In](https://data.gov.in/)
## [1. Data.Gov.In](https://data.gov.in)
It publishes datasets, documents, tools, and applications collected by the government for public use and community participation of the products with visualization, APIs, alerts, etc. It is also a collection of all the government based datasets discussed Below.


Link: [https://data.gov.in/](https://data.gov.in/)
Link: [https://data.gov.in](https://data.gov.in)


## [2. National Portal of India](https://www.india.gov.in/)
## [2. National Portal of India](https://www.india.gov.in)
It was developed by the Indian government to facilitate single window access to information and services of all government entities, A single-point access to a lot of information, has a searchable contact directory, a database of the government website, and others

Link: [https://www.india.gov.in/](https://www.india.gov.in/)
Link: [https://www.india.gov.in](https://www.india.gov.in)

## [3. Ministry Of Statistics And Programme Implementation Dataset](http://mospi.nic.in/data)
## [3. Ministry Of Statistics And Programme Implementation Dataset](https://www.mospi.gov.in/data)
The datasets are collected by conducting large-scale sample surveys across India for various parameters, which eventually leads to the creation of the database. The ministry applies standard statistical techniques and large inspection and supervision to enable this.

Link: [http://mospi.nic.in/data](http://mospi.nic.in/data)
Link: [https://www.mospi.gov.in/data](https://www.mospi.gov.in/data)

## [4. RBI Database Of Indian Economy](https://dbie.rbi.org.in/DBIE/dbie.rbi?site=home)
It is loaded with suitable information and data for researchers, analysts, and general users all alike. It has datasets across money and banking, financial markets, national income, saving and employment, and others. The idea is to make easy present-day styles of data analysis that can provide important real-time numbers about economic activity, prices, and more.
Expand Down Expand Up @@ -69,22 +70,22 @@ Link: [https://www.icegate.gov.in/jsp/DailyReport.jsp](https://data.gov.in/datas
## [9. Wildlife Institute of India Dataset]()
An autonomous institution under the Ministry of Environment Forest and Climate change, the Government of India, has datasets on different wildlife species in India. There are a total of 4591 specimens that are housed at WII herbarium, of which 4322 are digitized and published through the GBIF network. The data is mainly used by researchers and field managers from the respective protected areas of the country to prepare for the management plan and other research.

Link : [WII Herbarium Dataset](https://www.gbif.org/dataset/9e7ea106-0bf8-4087-bb61-dfe4f29e0f17), [GBIF](https://www.gbif.org/en/).
Link : [WII Herbarium Dataset](https://www.gbif.org/dataset/9e7ea106-0bf8-4087-bb61-dfe4f29e0f17), [GBIF](https://www.gbif.org/en).

## [10. Open Data Telangana](https://data.telangana.gov.in/search/type/dataset)
Various Data sets on multiple domains, Industry, Sectors, and Agricultural Data for the State of Telangana

Link: [https://data.telangana.gov.in/search/type/dataset](https://data.telangana.gov.in/search/type/dataset)

## [11. National Data Repository](https://www.ndrdgh.gov.in/NDR/)
## [11. National Data Repository](https://www.ndrdgh.gov.in/NDR)
A Data repository on Seismic Data, Well & Log Data, Spatial Data, Other G&G data like Drilling, Reservoir, Production, Geological, Gravity & Magnetic, etc. Reports and Documents

Link: [https://www.ndrdgh.gov.in/NDR/](https://www.ndrdgh.gov.in/NDR/)
Link: [https://www.ndrdgh.gov.in/NDR](https://www.ndrdgh.gov.in/NDR)

## [12. Indiastat](https://www.indiastat.com/)
## [12. Indiastat](https://www.indiastat.com)
A Private owned site that combines and categorize data from the above data sources

Link: [https://www.indiastat.com/](https://www.indiastat.com/)
Link: [https://www.indiastat.com](https://www.indiastat.com)

## [13. India Biodiversity Portal](https://indiabiodiversity.org/?lang=en)
Free and open access to India's biodiversity information
Expand All @@ -93,25 +94,24 @@ A unique repository of information on India's biodiversity. The Portal aims to a
Link: [https://indiabiodiversity.org/?lang=en](https://indiabiodiversity.org/?lang=en)


## [14. National Health Systems Resource Center](http://nhsrcindia.org/health-systems-database)
## [14. National Health Systems Resource Center](https://nhsrcindia.org/health-systems-database)
A Technical Support Institute with National Health Mission with datasets on Healthcare

Link: [http://nhsrcindia.org/health-systems-database](http://nhsrcindia.org/health-systems-database)
Link: [https://nhsrcindia.org/health-systems-database](https://nhsrcindia.org/health-systems-database)

## [15. Central Library Indian Statistical InstituteLibrary](https://www.isical.ac.in/~library/data.php)
In line with the objectives of the institute, over the years, the library has developed a comprehensive collection of peer-reviewed scholarly literature useful for the faculty and the research community of the institute. The other objective is to serve as a resource center for the scholars and scientific community of the country.

Link: [https://www.isical.ac.in/~library/data.php](https://www.isical.ac.in/~library/data.php)

## [16. Bharat Map](https://bharatmaps.gov.in/)
## [16. Bharat Map](https://bharatmaps.gov.in)

NIC/DeitY has created a Multi-Layer GIS Platform named "Bharat Maps" which depicts core foundation data as "NICMAPS", an integrated base map service using 1:50,000 scale reference data from Survey of India, ISRO, FSI, RGI, and so on. This encompasses 23 layers containing administrative boundaries, transport layers such as roads & railways, forest layers, settlement locations, etc., including terrain map services.

Link: [https://stategisportal.nic.in/stategisportal/](https://stategisportal.nic.in/stategisportal/)
Link: [https://stategisportal.nic.in/stategisportal](https://stategisportal.nic.in/stategisportal)

Link: [https://bharatmaps.gov.in/](https://bharatmaps.gov.in/)
Link: [https://bharatmaps.gov.in](https://bharatmaps.gov.in)

Link: [https://bhuvan.nrsc.gov.in/bhuvan_links.php](https://bhuvan.nrsc.gov.in/bhuvan_links.php)


💡 Find or Gather your own data and try to make some use of out it , the main learning lies in the process
- Find or Gather your own data and try to make some use of out it , the main learning lies in the process
Loading

0 comments on commit 9702c8b

Please sign in to comment.