Re: [datameet] Help regarding scraping mobile application

2023-07-08 Thread Gaurav Meena
Try to find out the API endpoints the app uses.
Ideally, the APIs should be scrapped only if they are provided for that
purpose.


On Sat, 8 Jul 2023 at 00:40, Railway Research <
researchrailways2...@gmail.com> wrote:

> Hello all,
> Does anyone know how to scrape data from the popular mobile application
> "where is my train"?
>
> Regards
> Shyamal
>
> --
> Datameet is a community of Data Science enthusiasts in India. Know more
> about us by visiting http://datameet.org
> ---
> You received this message because you are subscribed to the Google Groups
> "datameet" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to datameet+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/datameet/CAAUQX0N-_6LDTM2HrgQnoYF0Cp0OUEUbJ__UUufeGwkLo1y6zg%40mail.gmail.com
> 
> .
>

-- 
Datameet is a community of Data Science enthusiasts in India. Know more about 
us by visiting http://datameet.org
--- 
You received this message because you are subscribed to the Google Groups 
"datameet" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to datameet+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/datameet/CAEqZKg_5ScL6oxGG0gTsO_-BczQpqB3c5C1DbuZmUGxf4tT%3DSw%40mail.gmail.com.


Re: [datameet] Pincode Boundaries of India

2023-01-11 Thread Gaurav Meena
Thank You for prompt reply and new data

On Wed, 11 Jan 2023 at 19:24, Vaidya  wrote:

> Hi Gaurav,
>
> 562112 seems to point to Harohalli which is in Ramanagara district?
> There is a new pincode map here that has some 562XXX codes that cover the
> suburbs of Bangalore.
> Hope this helps.
>
> https://data.opencity.in/dataset/pincode-maps-of-cities/resource/pincode-map---bengaluru
>
> Thanks,
> Vaidya
>
>
> On Wed, Jan 11, 2023 at 1:30 PM gauravm...@gmail.com <
> gauravmeena0...@gmail.com> wrote:
>
>> I was just using the Bengaluru file for pincode visualization. relaised
>> that new pincodes like 562112 is not available here.
>> how to add these?
>>
>> On Wednesday, 8 March, 2017 at 9:15:58 pm UTC+5:30 Vaishnavi Jayakumar
>> (Inclusive India) wrote:
>>
>>> Thanks Devdatta. If you could point out problematic areas, we could look
>>> at
>>> having it fixed.
>>> On 08-Mar-2017 2:39 pm, "Devdatta Tengshe"  wrote:
>>>
>>>> Hey Vaishnavi,
>>>> That looks interesting.
>>>>
>>>> I've scraped the boundaries for the 6 cities, and put them here:
>>>> https://github.com/datameet/PincodeBoundary
>>>>
>>>> At first glance, there are some oddities in the data, so I'll suggest
>>>> that you cross check before using them.
>>>>
>>>>
>>>> Regards,
>>>> Devdatta
>>>>
>>>
>>>> On Wed, Mar 8, 2017 at 12:52 PM, Vaishnavi Jayakumar (Inclusive India)
>>>>  wrote:
>>>>
>>>>> Reminder in case anyone has inputs on this a year later - the
>>>>> geo-entities standard bit.
>>>>>
>>>>> ALSO - what is the latest feedback on postal GIS? Any feedback I could
>>>>> pass on? In July 2016 it was still work in progress.
>>>>>
>>>>> http://postoffice.umd.nic.in:8080/nicutility/#
>>>>> FYI
>>>>>
>>>>> *#Pincode*
>>>>>
>>>>> I had spoken a week back to a friend from the Indian Postal service
>>>>> regarding pincode layers, here's what she replied :
>>>>>
>>>>> "We do not have an official map yet. Currently am working in
>>>>> geotagging all our post offices with delivery boundaries. We have 
>>>>> geotagged
>>>>> 15 post offices. Drawing pincode boundaries with ISRO. Hope to provide
>>>>> public access in 4-5 months."
>>>>>
>>>>> So will check with her again in August.
>>>>>
>>>>> *#Geocodes #GLC*
>>>>>
>>>>> On a related matter, I was wondering what the group's knowledge is on
>>>>> standardised codes for government properties. To explain - in the last
>>>>> couple of months I have been struggling with poorly specified addresses
>>>>> provided by Government authorities for purposes as diverse as Chennai rain
>>>>> shelter locations to assembly election polling booths. If the rain shelter
>>>>> information provided was maddeningly obfuscatory, the polling booth 
>>>>> entries
>>>>> were uniquely different for the SAME polling station location. Extensive
>>>>> manual cleanup by volunteers had to happen before it could even be
>>>>> processed by the polling booth access audit app.
>>>>>
>>>>> My question is this :
>>>>>
>>>>> Surely as part of data.gov.in an initiative that standardises data
>>>>> collection codes across departments and ministries can be developed which
>>>>> will save everyone a lot of time and effort? So while the thrust would be
>>>>> on ALL government buildings initially - layers like schools, parks,
>>>>> post-office, revenue office, ration shop etc should be available on a 
>>>>> drill
>>>>> down basis.
>>>>>
>>>>> So if one needs to reference a particular postoffice in rural Tamil
>>>>> Nadu - a code comprising standard census state, district downwards code +
>>>>> rural / urban indicator + administrative allotment (political, centre vs
>>>>> state cs Municipal vs panchayat) + purpose
>>>>> <https://www.doi.gov/sites/doi.gov/files/migrated/pam/programs/property_management/upload/GSArealguidance.pdf>
>>>>> indicator + building particulars (toilet availability, parking facility
>>>>> et

Re: [datameet] Rivers of India shape files

2022-12-12 Thread Gaurav Meena
https://www.diva-gis.org/gdata

just found above. Not sure about authenticity or quality comparison with
other dataset.

On Mon, 5 Dec 2022 at 13:41, sreeram kandimalla <
kandimalla.sree...@gmail.com> wrote:

> I have found the pyesridump  python
> package quite useful for scraping arcgis servers.
>
> In this particular case, when opening the url
> https://indiawris.gov.in/wris/#/riverBasins  in a browser, one can
> observe that the arcgis rest services endpoint is
> https://arc.indiawris.gov.in/server/rest/services by looking at the
> network calls being made by the webpage.
>
> This URL can be directly used in the browser to locate the individual
> layers available on the server.. In this case the rivers layer was found at
> https://arc.indiawris.gov.in/server/rest/services/Common/River_WRP/MapServer/1
>
>
> On a machine with python and pip installed, you can run the following
> commands to get the rivers data
>
> One time installation of esridump:
> *pip install esridump*
>
> Retrieval of the Rivers Layer:
>
> *esri2geojson -m 100 --jsonlines
> https://arc.indiawris.gov.in/server/rest/services/Common/River_WRP/MapServer/1
> 
> rivers.geojsonl*
>
> The timeouts, batch size ( -m ) command line arguments can be adjusted if
> the default settings fail.
>
> The layer is retrieved here into the geojsonl file *rivers.geojsonl. *
>
> Other layers can be similarly retrieved.
>
>
>
>
>
> On Fri, Dec 2, 2022 at 10:44 AM Vaidya  wrote:
>
>> Hello,
>>
>> Has anyone got the shapefiles for IndaWris river basins map?
>> https://indiawris.gov.in/wris/#/riverBasins
>> More than the basins, trying to find the map of rivers themselves.
>>
>> Thanks,
>> Vaidya
>>
>> --
>> Datameet is a community of Data Science enthusiasts in India. Know more
>> about us by visiting http://datameet.org
>> ---
>> You received this message because you are subscribed to the Google Groups
>> "datameet" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to datameet+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/datameet/CAHVy6PE2%3DN-PV_ZjzMyD_VB5aV59nXgHM1BJEB81JjKBHg8qJA%40mail.gmail.com
>> 
>> .
>>
> --
> Datameet is a community of Data Science enthusiasts in India. Know more
> about us by visiting http://datameet.org
> ---
> You received this message because you are subscribed to the Google Groups
> "datameet" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to datameet+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/datameet/CAMgvHC58EBX3Sngavq97ycfhk2m2QMsdLMSkcQac-FQECN0jBw%40mail.gmail.com
> 
> .
>

-- 
Datameet is a community of Data Science enthusiasts in India. Know more about 
us by visiting http://datameet.org
--- 
You received this message because you are subscribed to the Google Groups 
"datameet" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to datameet+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/datameet/CAEqZKg_n7x2N1WRYsv5nwQhp47KF9mqwowX7ZAefm3HM3F6Q-g%40mail.gmail.com.


[datameet] Looking for Toposheets of Varanasi District, Uttar Pradesh, India

2021-07-17 Thread VIKRAM GAURAV SINGH
He'llo everyone

I am looking for Toposheets of Varanasi District, Uttar Pradesh, India for
a research assignment. Please help me in this  regard.
Thank you

On Thu, 8 Jul 2021, 09:28 Kensuke Maeba, <
kensukemaeba2...@u.northwestern.edu> wrote:

> Hi,
>
> Is the list of critical/vulnerable polling stations in TN (particularly in
> Pudukkottai district) for the 2019 general election available somewhere?
>
> Best,
> Kensuke
>
> --
> Datameet is a community of Data Science enthusiasts in India. Know more
> about us by visiting http://datameet.org
> ---
> You received this message because you are subscribed to the Google Groups
> "datameet" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to datameet+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/datameet/a3fa4169-4905-4a49-84ab-528725de4985n%40googlegroups.com
> 
> .
>

-- 
Datameet is a community of Data Science enthusiasts in India. Know more about 
us by visiting http://datameet.org
--- 
You received this message because you are subscribed to the Google Groups 
"datameet" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to datameet+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/datameet/CAO%3DfxFeFV-9ihGb3Z6-gJtCMgNVBuF1fqPv4i5%2BPPj1BnQczbQ%40mail.gmail.com.


[datameet] Need Dehradun and Shillong Municipal boundaries shapefile

2020-12-21 Thread Gaurav Mittal
Hi everyone,

I was wondering if anyone would have the shapefiles for the boundaries of 
Dehradun Nagar Nigam and Shillong Municipal Board? 

Just the city boundaries are required, not the ward boundaries. Also, if 
anyone would have land use changes data for urban agglomeration around 
these cities, that would be really helpful.

Kind regards,
Gaurav

-- 
Datameet is a community of Data Science enthusiasts in India. Know more about 
us by visiting http://datameet.org
--- 
You received this message because you are subscribed to the Google Groups 
"datameet" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to datameet+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/datameet/a4499831-d212-446f-9d3d-5e9ed813ae7an%40googlegroups.com.


[datameet] Pincode data with Month level frequency

2019-05-27 Thread Gaurav
Hi All,

Can you please help me to understand how can I get the data for following
at the pincode with month level frequency for 5 years.

*Type*

*Sub Type*

Weather

Rainfall

Weather

Cyclone

Weather

Temperature

Crime

NA

Vehicle



Unemployment Rate



Average yield of crops



Horticulture



Milk Production



Employment In Shops And Commercial Establishments



No of Educational Institutions



Regards,
Gaurav Khatwani

-- 
Datameet is a community of Data Science enthusiasts in India. Know more about 
us by visiting http://datameet.org
--- 
You received this message because you are subscribed to the Google Groups 
"datameet" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to datameet+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/datameet/CAFqaFx2t39Ne9tTG%3Dh7k9pQFuh1HGRDy%2B-R5VT5sR%3DJByBphvA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[datameet] Civc Tech Survey for Civic Tech India Accelerator 2018

2018-05-16 Thread Gaurav Godhwani
Hi DMers,
 
Omidyar Network <https://www.omidyar.com/> has partnered with venture 
capital firm, Village Capital, to run the first-of-its kind Civic Tech 
India 2018 Accelerator <https://vilcap.com/program/civictech-india-2018/> 
program. 
This six-month accelerator will equip early-stage civic engagement ventures 
in India with access to mentors, connection to funders and an ecosystem of 
support to entrepreneurs to develop solutions to tackle the country’s 
toughest problems across its civic and social sectors.
 
In addition to encouraging entrepreneurs to confidently step into the civic 
tech playing field, the purpose of the program is to guide them into 
identifying the civic and social spaces that urgently warrant technological 
intervention. And they would require your inputs in identifying the areas 
in which you believe, the intervention of technology, could assist in 
driving greater public engagement in the overall decision-making process 
that affects the community.
 
Hence, they have commissioned a survey aimed at deriving insights from 
fellow Indian residents about the everyday problems they that they face 
within their community, town or city; and their views about how the 
intervention of technological solutions may assist in mitigating these 
issues. 
 
If you have expectations from emerging technology that could address 
certain public or community issues, they request you to spare five minutes 
from your schedule to complete this *questionnaire 
<https://www.surveymonkey.com/r/civictechCS>*. 
 
Your responses will be an indispensable part of their program and will help 
participating ventures effectively address these gap areas with their 
innovation.
 
We look forward to your participation and support. 
 
Best regards, 
Gaurav

-- 
Datameet is a community of Data Science enthusiasts in India. Know more about 
us by visiting http://datameet.org
--- 
You received this message because you are subscribed to the Google Groups 
"datameet" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to datameet+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[datameet] Re: Where is GIGW 2? No website accessibility without content and data accessibility!

2017-06-08 Thread Gaurav Godhwani
Dear Vaishnavi,

Thanks a ton for pointing this out. We have created a Github issue for the 
same: https://github.com/cbgaindia/ckanext-openbudgetsin_theme/issues/37 
and hope to fix it in coming weeks. 

We are a community led open initiative(in BETA phase) and we welcome such 
crucial feedback, suggestions, and contributions. Please feel free to reach 
us at i...@openbudgetsindia.org.

Regards,
Gaurav


On Wednesday, 7 June 2017 20:12:03 UTC+5:30, Vaishnavi Jayakumar wrote:
>
> Dear Datameeters,
>
> Nisha thought this as off-topic and wanted me to add a few lines to 
> explain how this was of relevance to DataMeet so here goes...
>
> DataMeet partnered with CBGA and others to bring out the Open Budgets 
> website this year: openbudgetsindia.org
>
> Here's what the 5 minute feedback on accessibility revealed :
>
> --
> From: Meenakshi B. <meenak...@equalscpsj.org>
> Date: Tue, Mar 28, 2017 at 2:12 PM
>
> MEENAKSHI
>
> Hi,
>
> I Have already made a representation to CBGA. It isn't accessible.
>
> Thanks & Regards
> Meenakshi
> --
> RAGHU
>
> The Site is good and is accessible to navigate, but the charts, formats, 
> provided as examples are in jpeg, png or image formats all of them should 
> be in accessible word documents So that it would enable the Screen Reader 
> user to understand easily.
>
> SHANKAR
>
> A good resource with all information in one place. Unfortunately, many of 
> the sections like Budget documents (PDF) are not giving the last mile 
> accessibility. Able to navigate using screen reader.
>
> Let us request them to check each page after development to check with 
> WAVE (Web Accessibility Evaluation tool) from webaim.org. It's a free 
> tool. 
>
> http://wave.webaim.org/
>
> I tested two pages after finding the screen reader not able to move 
> further.
>
> http://wave.webaim.org/report#/https://openbudgetsindia.org/
>
>
> http://wave.webaim.org/report#/https://openbudgetsindia.org/dataset?res_format=PDF
>
>
>
> So in effect, there's no point in making data *open* unless it's first 
> *accessible* to print disabled.
>
> Now read on!
> *--*
> *Only 38 of 7,000 govt websites disabled-friendly, says petitioner *PIL 
> 29214/2015 <https://indiankanoon.org/doc/179818968/> 
>
> 6/24/2016
>
> *Chennai: *Of the 7000 such websites, only 38 of them have made the cut.  
> This unfortunately leaves an estimated 70 million disabled people out 
> ‘Digital India’ initiative, aimed at simplifying governance. The disconnect 
> in enabling web services came to light after a physically challenged 
> petitioner, A Syed Ansari from Avadi, moved the Madras High Court in 2015. 
> He had missed out applying for the civil services exams because the site 
> meant for it was not disabled friendly. He had sought the court to direct 
> the government to maintain its websites as per National Informatics Centre 
> (NIC) standards. 
>
> The disabled use various assistive technologies to browse the Web. 
> However, if a website is not constructed as per the Web Content 
> Accessibility Guidelines (WCAG), the assistive technology fails to help 
> those it is meant for. The NIC’s Guidelines for Indian Government Websites 
> (GIGW), makes it mandatory for all government websites to conform to the 
> international accessibility standards, the World Wide Web Consortium (W3C) 
> and the Web Content Accessibility Guidelines (WCAG) 2.0. 
>
> The government’s failure to respond to the High Court’s notice prompted it 
> to rap the agencies concerned, with a threat of imposing costs. When the 
> counters were filed the first bench led by Chief Justice Sanjay Kishan 
> Kaul, said, “We are not satisfied with the response from the Central 
> Government as to what the time period is or who is monitoring the whole 
> issue.” The NIC then initiated the ‘Development of Common Minimum Framework 
> for Government websites’ to convert 100 sites as feature rich and GIGW 
> compliant websites. 
>
> Only a fraction of them been are disabled friendly. When the case came up 
> for hearing recently, the first bench comprising Chief Justice Sanjay 
> Kishan Kaul and Justice R Mahadevan wondered if government agency intends 
> to complete the task only by the next century, and granted a year’s time to 
> finish the process.
>
>
> dtnext.in/News/City/2016/06/24002012/Only-38-of-7000-govt-websites-disabledfriendly-says.vpf
>
> --- 
>
>> From:Vaishnavi Jayakumar <jayakumar.vaishn...@gmail.com> 
>> Subject:[WeThePwd:1939] Re: Accessible version of Niti Ayog 
>> Action Plan document 
>>
>>  
>
>> NITI AAYOG Draft Three Year Action Agenda, 2017-18 to 2019-20 

[datameet] Regarding pincode and population data

2017-03-24 Thread Gaurav
Hi All,

Can anyone please help me to know that from where I can get pincode wise
population data.

Regards,
Gaurav

-- 
Datameet is a community of Data Science enthusiasts in India. Know more about 
us by visiting http://datameet.org
--- 
You received this message because you are subscribed to the Google Groups 
"datameet" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to datameet+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[datameet] Linking customer info

2017-03-14 Thread Gaurav
Is there a way to sync customer Aadhar No, PAN No and other identification
info during ekyc using APIs like India stack.

Please guide

-- 
Datameet is a community of Data Science enthusiasts in India. Know more about 
us by visiting http://datameet.org
--- 
You received this message because you are subscribed to the Google Groups 
"datameet" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to datameet+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[datameet] hey anybody with gis file census boundary gurgaon and mc boundary

2016-07-01 Thread Gaurav Engles
hey anybody with gis file census boundary gurgaon and mc boundary

-- 
Datameet is a community of Data Science enthusiasts in India. Know more about 
us by visiting http://datameet.org
--- 
You received this message because you are subscribed to the Google Groups 
"datameet" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to datameet+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [datameet] Invitation for DataKind Bangalore's first DataDive

2015-03-13 Thread Gaurav Godhwani
Hi Gautham,

I will share the hackpads post the event in the same thread!

Regards,
Gaurav

On Friday, 13 March 2015 10:29:57 UTC+5:30, Gautham R wrote:

 Are the insights from these sessions going to be shared on the forum? 
 Would be interesting for those of us in other cities.

 Best,

 G

  

  

 *Gautham Ravichander*

 *+91-110437*

 “A human being should be able to change a diaper, plan an invasion, 
 butcher a hog, conn a ship, design a building, write a sonnet, balance 
 accounts, build a wall, set a bone, comfort the dying, take orders, give 
 orders, cooperate, act alone, solve equations, analyze a new problem, pitch 
 manure, program a computer, cook a tasty meal, fight efficiently, die 
 gallantly. Specialization is for insects.” - Robert A. Heinlein

  

 On Thu, Mar 12, 2015 at 11:15 PM, Gaurav Godhwani gggod...@gmail.com 
 javascript: wrote:

 Hey Data Do-Gooders! 

 I like to invite you to our very first DataDive 
 http://www.meetup.com/DataKind-Bangalore/events/220944346/! 

 DataDives http://www.datakind.org/howitworks/datadives/ are 
 weekend-long, marathon-style, events where mission-driven organizations 
 work alongside teams of our volunteer data scientists, developers, and 
 designers to use their data to gain insight into their programs, the 
 communities they serve, and more. Volunteers of all levels of data science 
 - from beginners to experts are welcomed to enhance their skills, network, 
 build community, and see how they can use their skills for good! 

 Our non-profit partners for this DataDive are: Teach For India, Digital 
 Green and Janaagraha (iChangeMyCity). These organizations have talked about 
 their high-impact work and discussed their data challenges with us in our 
 Project 
 Accelerator Night (PAN) 
 http://social.yourstory.com/2015/01/data-science-tfi-digital-green-janaagraha-klp/,
  
 also we have wrangled and cleansed their datasets in our action packed 
 DataJam http://www.meetup.com/DataKind-Bangalore/events/220161476/. 

 *Note: Do remember to bring your Laptops*

 *Timings:*
 March 21 - 22, 2015 (Sat-Sun) 10:00 AM to 6:00 PM

 *Venue:*
 Apigee, 17/2, 3rd Floor 2nd B Cross, Off. 80 Ft. Road, 7th A Main Road, 
 Koramangala 3rd Block, Bangalore (http://goo.gl/GM3FKX)

 Regards,
 Gaurav Godhwani,
 DataKind Bangalore
 Email: bang...@datakind.org javascript:
 Mob: +91-9742685400

 -- 
 Datameet is a community of Data Science enthusiasts in India. Know more 
 about us by visiting http://datameet.org
 --- 
 You received this message because you are subscribed to the Google Groups 
 datameet group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to datameet+u...@googlegroups.com javascript:.
 For more options, visit https://groups.google.com/d/optout.




-- 
Datameet is a community of Data Science enthusiasts in India. Know more about 
us by visiting http://datameet.org
--- 
You received this message because you are subscribed to the Google Groups 
datameet group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to datameet+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[datameet] Value of Rupee on Purchasing Power Parity

2014-08-25 Thread Gaurav Mittal
Dear All,

I was wondering if anybody can provide with a table of Value of Rupee on
Purchasing Power Parity since 1947 on yearly basis. The base value could be
either current value or 1947 value.

Warmly,
Gaurav

-- 
Regards,
Gaurav Mittal,
Hyderabad Urban Lab
10-5-71/1,* Gulshan*-*E*-*Khalil*, Masab Tank,
Opposite Garden Tower,
Hyderabad
India - 500028

Phone: +91-7032407352, 9833891202

-- 
Datameet is a community of Data Science enthusiasts in India. Know more about 
us by visiting http://datameet.org
--- 
You received this message because you are subscribed to the Google Groups 
datameet group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to datameet+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [datameet] Value of Rupee on Purchasing Power Parity

2014-08-25 Thread Gaurav Mittal
Thanks Aashish.

On Monday, 25 August 2014 13:03:03 UTC+5:30, Aashish Gupta wrote:

 http://data.worldbank.org/indicator/PA.NUS.PPP

 This has data from 1990. 


 On 25 August 2014 10:09, Gaurav Mittal mittal...@gmail.com javascript: 
 wrote:

 Dear All,

 I was wondering if anybody can provide with a table of Value of Rupee on 
 Purchasing Power Parity since 1947 on yearly basis. The base value could be 
 either current value or 1947 value.

 Warmly,
 Gaurav 

 -- 
 Regards,
 Gaurav Mittal,
 Hyderabad Urban Lab
 10-5-71/1,* Gulshan*-*E*-*Khalil*, Masab Tank,
 Opposite Garden Tower, 
 Hyderabad
 India - 500028

 Phone: +91-7032407352, 9833891202
  
 -- 
 Datameet is a community of Data Science enthusiasts in India. Know more 
 about us by visiting http://datameet.org
 --- 
 You received this message because you are subscribed to the Google Groups 
 datameet group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to datameet+u...@googlegroups.com javascript:.
 For more options, visit https://groups.google.com/d/optout.




-- 
Datameet is a community of Data Science enthusiasts in India. Know more about 
us by visiting http://datameet.org
--- 
You received this message because you are subscribed to the Google Groups 
datameet group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to datameet+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.