All Projects → bragboy → horoscope

bragboy / horoscope

Licence: MIT license
Open source horoscope generation engine

Programming Languages

ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to horoscope

HoroscopeDrawer
JavaScript-Library to draw celestial charts in SVG-Format.
Stars: ✭ 51 (+183.33%)
Mutual labels:  astrology, horoscope
awsdtc
AWS Data Transfer Cost Explorer
Stars: ✭ 90 (+400%)
Mutual labels:  chart
helm-postgresql
Helm Chart for postgresql
Stars: ✭ 35 (+94.44%)
Mutual labels:  chart
ng-charts
🎨📉 A fully functional Angular 14+ Chart.js library based from ng2-charts
Stars: ✭ 14 (-22.22%)
Mutual labels:  chart
git-pretty
🤖 A helpful CLI for your git troubles!
Stars: ✭ 29 (+61.11%)
Mutual labels:  chart
Android-System-Related-Charts
各种与Android系统相关的框架图、流程图
Stars: ✭ 52 (+188.89%)
Mutual labels:  chart
chartjs-chart-timeline
Google-like timeline chart for Chart.js.
Stars: ✭ 44 (+144.44%)
Mutual labels:  chart
chart4s
Draw a web chart by Scala
Stars: ✭ 36 (+100%)
Mutual labels:  chart
LineChartView
An interactive line chart written in SwiftUI with many customizations (colors, line size, dots, haptic feedbacks). Support value and time series.
Stars: ✭ 59 (+227.78%)
Mutual labels:  chart
gke-toolbox
A Helm Chart with pre-configured tools for your Container Engine clusters
Stars: ✭ 20 (+11.11%)
Mutual labels:  chart
kerykeion
Kerykeion is a python library for astrology. It can generate SVG charts and extract all data about a birthchart, a composite chart and a transit chart.
Stars: ✭ 72 (+300%)
Mutual labels:  astrology
area3d vis
3D Graph Visualization for Kibana 5
Stars: ✭ 28 (+55.56%)
Mutual labels:  chart
wxcharts
微信小程序 chart 、K线图、分时图
Stars: ✭ 11 (-38.89%)
Mutual labels:  chart
sprite
🖌 Draw charts in code. Render in real-time. Embed anywhere as .png.
Stars: ✭ 202 (+1022.22%)
Mutual labels:  chart
helm-charts
Helm charts for sigstore project
Stars: ✭ 33 (+83.33%)
Mutual labels:  chart
PieCharts
Easy to use and highly customizable pie charts library for iOS
Stars: ✭ 501 (+2683.33%)
Mutual labels:  chart
UCharts
UCharts allows creating radar charts, pie charts, half pie chart in your Unity3d Games.
Stars: ✭ 33 (+83.33%)
Mutual labels:  chart
Mermaid
Provides a parser function to generate diagrams and flowcharts with the help of the mermaid script language
Stars: ✭ 27 (+50%)
Mutual labels:  chart
ChartTheStockMarket
🔥 📈 💸 Chart the Stock Market - FCC Challenge
Stars: ✭ 39 (+116.67%)
Mutual labels:  chart
ScalaTIKZ
ScalaTIKZ is an open-source library for PGF/TIKZ vector graphics.
Stars: ✭ 18 (+0%)
Mutual labels:  chart

Horoscope

Calculate the accurate horoscope of a person using Vedic Horoscope technique given the birth time and birth place of the subject. The gem is available at https://rubygems.org/gems/horoscope

Travis CI   Coveralls   Gem Version

Installation

Add this line to your application's Gemfile (Rails):

gem 'horoscope'

And then execute:

$ bundle

Or install it yourself as:

$ gem install horoscope

Then you can start using this by passing a Time object along with latitude and longitude

#To calculate Sachin Tendulkar's horoscope
h = Horoscope::Horo.new(
    datetime: Time.utc(1973, 4, 24, 14, 25), 
    zone: 5.5,
    lat: 18.60, lon: -72.50)
h.compute
 => {"As"=>4, "Su"=>0, "Mo"=>8, "Ma"=>9, "Me"=>11, "Ju"=>9, "Ve"=>0, "Sa"=>1, "Ra"=>8, "Ke"=>2}

h.create_chart #This will generate the horoscope chart to your working directory

h.create_chart format: :html #This will generate the horoscope chart as html text and can be embedded onto any html container

Sachin Tendulkar's horoscope

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

Future Development

Need to add North Indian Chart type. Also show more data like Birth Star, Dasha directions etc., Follow this page for more updates

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].