Re: [datameet] Get Smart Route to Avoid Containment Zone

2020-07-07 Thread Dilawar Singh
Thanks for the pointers Abhishek. The token can be obtained using a GET
request: "
https://covid19.quantela.com/qpa/1.0.0/public/token/bbmp.com/6a4d20c0-87dd-556b-9319-ab7147e388d9
";

I've created an automated pipeline for our institute App. Here is a
PHP+CURL solution to fetch the zone information:
https://github.com/dilawar/hippo/blob/master/system/extra/covid19.php

best,
Dilawar

On Sat, Jul 4, 2020 at 10:24 PM Abhishek  wrote:

> Hey Mohit,
> You can get the updated data from BBMP's dashboard
>
> curl --location --request POST '
> https://covid19.quantela.com/qpa/1.0.0/public/dashboard/getData/bbmp.com/7WGKgnEBHZrt-aeeDTHg/TmpE-XEBiNslxwBhF2EA
> ' \
> --header 'Authorization: Bearer 3a9d616a-5db2-3f0d-a2b6-5e2dd06a4037' \
> --header 'Content-Type: application/json' \
> --data-raw '{}'
>
> If this auth token expires you can obtain one from
> https://analysis.bbmpgov.in/#/dashboards/7WGKgnEBHZrt-aeeDTHg?embedd=1=0=bbmp.com
>
> Cheers
> -Abhishek
>
> On Sat, Jul 4, 2020 at 7:50 PM mohit K  wrote:
>
>> Hi Guys,
>>
>> Is there a place I can get Bangalore containment zones data?
>>
>> Appreciate your help.
>>
>> Mohit
>>
>> On Sun, May 17, 2020 at 8:35 PM Souvik Sankar Mitra <
>> souviksankar2...@gmail.com> wrote:
>>
>>> Thank you very much for your advice sir. I will try to implement of
>>> getting location by clicking. Actually sir I use Google's Direction API
>>> here. But I can try to implement it using open source routing.
>>> Thank you for the Stack Overflow link sir. It will help me..
>>>
>>> With regards ,
>>> Souvik Sankar Mitra
>>> M.Tech(Geoinformatics) , Indian Institute of Remote Sensing
>>>
>>> On Sunday, May 17, 2020 at 11:26:42 AM UTC+5:30, Nikhil VJ wrote:

 Hi Souvik,

 Good work!

 Suggestion on UI end: can you find a way to capture clicks or
 right-clicks on the map and let the user add to/from addresses that way,
 other than typing?
 That might also save on place api usage.

 I've made custom context menus / click-to-pin feature in Leaflet maps,
 not sure how its done in google maps but I've seen such implementations
 elsewhere.
 Here's a link from a quick search:
 https://stackoverflow.com/questions/7168394/google-map-v3-context-menu#10957262

 Another for-later suggestion: Is your routing running on google's api
 or other? If other, then it might be a good bet to change the ui to leaflet
 and avoid google's usage costs that hit when visitor count increases.

 --
 Cheers,
 Nikhil VJ
 https://nikhilvj.co.in


 On Wed, May 13, 2020 at 12:29 PM Souvik Sankar Mitra <
 souviksa...@gmail.com> wrote:

> I have developed a smart navigation application to avoid containment
> zone. It gives a safe route between source and destination which does not
> go through any containment zone. Till now it only available for Kolkata 
> and
> Howrah but it can be implemented for other cities also.
>
> You can check it here - http://shampa.covidrespons.in/
> For more information you can check out this video -
> https://www.youtube.com/watch?v=UtUaCDmJV_M
>
> Hope you like it.
> Thank you.
>
> Souvik Sankar Mitra
> M.Tech (Geoinformatics) , Indian Institute of Remote Sensing
>
> --
> 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 data...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/datameet/41afc5f7-aafe-4451-9d94-1d09ab15feb3%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/fb9b81da-98d0-4b05-9561-0084f6ce7a4f%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 

Re: [datameet] Get Smart Route to Avoid Containment Zone

2020-07-07 Thread mohit K
Thanks buddy, will take a look.

On Mon, Jul 6, 2020 at 10:08 PM Ark Arjun  wrote:

> Hi Mohit,
>
> See whether this helps you or not.
> https://covid19.bbmpgov.in/
>
> On Sat, 4 Jul 2020 at 19:50, mohit K  wrote:
>
>> Hi Guys,
>>
>> Is there a place I can get Bangalore containment zones data?
>>
>> Appreciate your help.
>>
>> Mohit
>>
>> On Sun, May 17, 2020 at 8:35 PM Souvik Sankar Mitra <
>> souviksankar2...@gmail.com> wrote:
>>
>>> Thank you very much for your advice sir. I will try to implement of
>>> getting location by clicking. Actually sir I use Google's Direction API
>>> here. But I can try to implement it using open source routing.
>>> Thank you for the Stack Overflow link sir. It will help me..
>>>
>>> With regards ,
>>> Souvik Sankar Mitra
>>> M.Tech(Geoinformatics) , Indian Institute of Remote Sensing
>>>
>>> On Sunday, May 17, 2020 at 11:26:42 AM UTC+5:30, Nikhil VJ wrote:

 Hi Souvik,

 Good work!

 Suggestion on UI end: can you find a way to capture clicks or
 right-clicks on the map and let the user add to/from addresses that way,
 other than typing?
 That might also save on place api usage.

 I've made custom context menus / click-to-pin feature in Leaflet maps,
 not sure how its done in google maps but I've seen such implementations
 elsewhere.
 Here's a link from a quick search:
 https://stackoverflow.com/questions/7168394/google-map-v3-context-menu#10957262

 Another for-later suggestion: Is your routing running on google's api
 or other? If other, then it might be a good bet to change the ui to leaflet
 and avoid google's usage costs that hit when visitor count increases.

 --
 Cheers,
 Nikhil VJ
 https://nikhilvj.co.in


 On Wed, May 13, 2020 at 12:29 PM Souvik Sankar Mitra <
 souviksa...@gmail.com> wrote:

> I have developed a smart navigation application to avoid containment
> zone. It gives a safe route between source and destination which does not
> go through any containment zone. Till now it only available for Kolkata 
> and
> Howrah but it can be implemented for other cities also.
>
> You can check it here - http://shampa.covidrespons.in/
> For more information you can check out this video -
> https://www.youtube.com/watch?v=UtUaCDmJV_M
>
> Hope you like it.
> Thank you.
>
> Souvik Sankar Mitra
> M.Tech (Geoinformatics) , Indian Institute of Remote Sensing
>
> --
> 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 data...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/datameet/41afc5f7-aafe-4451-9d94-1d09ab15feb3%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/fb9b81da-98d0-4b05-9561-0084f6ce7a4f%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/CAJk6f4B0zXnqHRFQ0cg270YuSH3PB0dWw8n1zQAp8RyDOfUBEQ%40mail.gmail.com
>> 
>> .
>>
>
>
> --
> Regards,
> *ark Arjun*
> arkives.in
>
> --
> 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
> 

Re: [datameet] Get Smart Route to Avoid Containment Zone

2020-07-06 Thread Ark Arjun
Hi Mohit,

See whether this helps you or not.
https://covid19.bbmpgov.in/

On Sat, 4 Jul 2020 at 19:50, mohit K  wrote:

> Hi Guys,
>
> Is there a place I can get Bangalore containment zones data?
>
> Appreciate your help.
>
> Mohit
>
> On Sun, May 17, 2020 at 8:35 PM Souvik Sankar Mitra <
> souviksankar2...@gmail.com> wrote:
>
>> Thank you very much for your advice sir. I will try to implement of
>> getting location by clicking. Actually sir I use Google's Direction API
>> here. But I can try to implement it using open source routing.
>> Thank you for the Stack Overflow link sir. It will help me..
>>
>> With regards ,
>> Souvik Sankar Mitra
>> M.Tech(Geoinformatics) , Indian Institute of Remote Sensing
>>
>> On Sunday, May 17, 2020 at 11:26:42 AM UTC+5:30, Nikhil VJ wrote:
>>>
>>> Hi Souvik,
>>>
>>> Good work!
>>>
>>> Suggestion on UI end: can you find a way to capture clicks or
>>> right-clicks on the map and let the user add to/from addresses that way,
>>> other than typing?
>>> That might also save on place api usage.
>>>
>>> I've made custom context menus / click-to-pin feature in Leaflet maps,
>>> not sure how its done in google maps but I've seen such implementations
>>> elsewhere.
>>> Here's a link from a quick search:
>>> https://stackoverflow.com/questions/7168394/google-map-v3-context-menu#10957262
>>>
>>> Another for-later suggestion: Is your routing running on google's api or
>>> other? If other, then it might be a good bet to change the ui to leaflet
>>> and avoid google's usage costs that hit when visitor count increases.
>>>
>>> --
>>> Cheers,
>>> Nikhil VJ
>>> https://nikhilvj.co.in
>>>
>>>
>>> On Wed, May 13, 2020 at 12:29 PM Souvik Sankar Mitra <
>>> souviksa...@gmail.com> wrote:
>>>
 I have developed a smart navigation application to avoid containment
 zone. It gives a safe route between source and destination which does not
 go through any containment zone. Till now it only available for Kolkata and
 Howrah but it can be implemented for other cities also.

 You can check it here - http://shampa.covidrespons.in/
 For more information you can check out this video -
 https://www.youtube.com/watch?v=UtUaCDmJV_M

 Hope you like it.
 Thank you.

 Souvik Sankar Mitra
 M.Tech (Geoinformatics) , Indian Institute of Remote Sensing

 --
 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 data...@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/datameet/41afc5f7-aafe-4451-9d94-1d09ab15feb3%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/fb9b81da-98d0-4b05-9561-0084f6ce7a4f%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/CAJk6f4B0zXnqHRFQ0cg270YuSH3PB0dWw8n1zQAp8RyDOfUBEQ%40mail.gmail.com
> 
> .
>


-- 
Regards,
*ark Arjun*
arkives.in

-- 
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/CAA7TKjJyvPV87rY575LBfCx68Z2g1TuwGSwtDK%2BYhhqsijjMbA%40mail.gmail.com.


Re: [datameet] Get Smart Route to Avoid Containment Zone

2020-07-06 Thread mohit K
Thanks Abhishek, this is helpful.

On Sat, 4 Jul 2020 at 22:24, Abhishek  wrote:

> Hey Mohit,
> You can get the updated data from BBMP's dashboard
>
> curl --location --request POST '
> https://covid19.quantela.com/qpa/1.0.0/public/dashboard/getData/bbmp.com/7WGKgnEBHZrt-aeeDTHg/TmpE-XEBiNslxwBhF2EA
> ' \
> --header 'Authorization: Bearer 3a9d616a-5db2-3f0d-a2b6-5e2dd06a4037' \
> --header 'Content-Type: application/json' \
> --data-raw '{}'
>
> If this auth token expires you can obtain one from
> https://analysis.bbmpgov.in/#/dashboards/7WGKgnEBHZrt-aeeDTHg?embedd=1=0=bbmp.com
>
> Cheers
> -Abhishek
>
> On Sat, Jul 4, 2020 at 7:50 PM mohit K  wrote:
>
>> Hi Guys,
>>
>> Is there a place I can get Bangalore containment zones data?
>>
>> Appreciate your help.
>>
>> Mohit
>>
>> On Sun, May 17, 2020 at 8:35 PM Souvik Sankar Mitra <
>> souviksankar2...@gmail.com> wrote:
>>
>>> Thank you very much for your advice sir. I will try to implement of
>>> getting location by clicking. Actually sir I use Google's Direction API
>>> here. But I can try to implement it using open source routing.
>>> Thank you for the Stack Overflow link sir. It will help me..
>>>
>>> With regards ,
>>> Souvik Sankar Mitra
>>> M.Tech(Geoinformatics) , Indian Institute of Remote Sensing
>>>
>>> On Sunday, May 17, 2020 at 11:26:42 AM UTC+5:30, Nikhil VJ wrote:

 Hi Souvik,

 Good work!

 Suggestion on UI end: can you find a way to capture clicks or
 right-clicks on the map and let the user add to/from addresses that way,
 other than typing?
 That might also save on place api usage.

 I've made custom context menus / click-to-pin feature in Leaflet maps,
 not sure how its done in google maps but I've seen such implementations
 elsewhere.
 Here's a link from a quick search:
 https://stackoverflow.com/questions/7168394/google-map-v3-context-menu#10957262

 Another for-later suggestion: Is your routing running on google's api
 or other? If other, then it might be a good bet to change the ui to leaflet
 and avoid google's usage costs that hit when visitor count increases.

 --
 Cheers,
 Nikhil VJ
 https://nikhilvj.co.in


 On Wed, May 13, 2020 at 12:29 PM Souvik Sankar Mitra <
 souviksa...@gmail.com> wrote:

> I have developed a smart navigation application to avoid containment
> zone. It gives a safe route between source and destination which does not
> go through any containment zone. Till now it only available for Kolkata 
> and
> Howrah but it can be implemented for other cities also.
>
> You can check it here - http://shampa.covidrespons.in/
> For more information you can check out this video -
> https://www.youtube.com/watch?v=UtUaCDmJV_M
>
> Hope you like it.
> Thank you.
>
> Souvik Sankar Mitra
> M.Tech (Geoinformatics) , Indian Institute of Remote Sensing
>
> --
> 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 data...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/datameet/41afc5f7-aafe-4451-9d94-1d09ab15feb3%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/fb9b81da-98d0-4b05-9561-0084f6ce7a4f%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/CAJk6f4B0zXnqHRFQ0cg270YuSH3PB0dWw8n1zQAp8RyDOfUBEQ%40mail.gmail.com
>> 
>> .
>>
> --
> Datameet is a community of 

Re: [datameet] Get Smart Route to Avoid Containment Zone

2020-07-04 Thread Abhishek
Hey Mohit,
You can get the updated data from BBMP's dashboard

curl --location --request POST '
https://covid19.quantela.com/qpa/1.0.0/public/dashboard/getData/bbmp.com/7WGKgnEBHZrt-aeeDTHg/TmpE-XEBiNslxwBhF2EA
' \
--header 'Authorization: Bearer 3a9d616a-5db2-3f0d-a2b6-5e2dd06a4037' \
--header 'Content-Type: application/json' \
--data-raw '{}'

If this auth token expires you can obtain one from
https://analysis.bbmpgov.in/#/dashboards/7WGKgnEBHZrt-aeeDTHg?embedd=1=0=bbmp.com

Cheers
-Abhishek

On Sat, Jul 4, 2020 at 7:50 PM mohit K  wrote:

> Hi Guys,
>
> Is there a place I can get Bangalore containment zones data?
>
> Appreciate your help.
>
> Mohit
>
> On Sun, May 17, 2020 at 8:35 PM Souvik Sankar Mitra <
> souviksankar2...@gmail.com> wrote:
>
>> Thank you very much for your advice sir. I will try to implement of
>> getting location by clicking. Actually sir I use Google's Direction API
>> here. But I can try to implement it using open source routing.
>> Thank you for the Stack Overflow link sir. It will help me..
>>
>> With regards ,
>> Souvik Sankar Mitra
>> M.Tech(Geoinformatics) , Indian Institute of Remote Sensing
>>
>> On Sunday, May 17, 2020 at 11:26:42 AM UTC+5:30, Nikhil VJ wrote:
>>>
>>> Hi Souvik,
>>>
>>> Good work!
>>>
>>> Suggestion on UI end: can you find a way to capture clicks or
>>> right-clicks on the map and let the user add to/from addresses that way,
>>> other than typing?
>>> That might also save on place api usage.
>>>
>>> I've made custom context menus / click-to-pin feature in Leaflet maps,
>>> not sure how its done in google maps but I've seen such implementations
>>> elsewhere.
>>> Here's a link from a quick search:
>>> https://stackoverflow.com/questions/7168394/google-map-v3-context-menu#10957262
>>>
>>> Another for-later suggestion: Is your routing running on google's api or
>>> other? If other, then it might be a good bet to change the ui to leaflet
>>> and avoid google's usage costs that hit when visitor count increases.
>>>
>>> --
>>> Cheers,
>>> Nikhil VJ
>>> https://nikhilvj.co.in
>>>
>>>
>>> On Wed, May 13, 2020 at 12:29 PM Souvik Sankar Mitra <
>>> souviksa...@gmail.com> wrote:
>>>
 I have developed a smart navigation application to avoid containment
 zone. It gives a safe route between source and destination which does not
 go through any containment zone. Till now it only available for Kolkata and
 Howrah but it can be implemented for other cities also.

 You can check it here - http://shampa.covidrespons.in/
 For more information you can check out this video -
 https://www.youtube.com/watch?v=UtUaCDmJV_M

 Hope you like it.
 Thank you.

 Souvik Sankar Mitra
 M.Tech (Geoinformatics) , Indian Institute of Remote Sensing

 --
 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 data...@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/datameet/41afc5f7-aafe-4451-9d94-1d09ab15feb3%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/fb9b81da-98d0-4b05-9561-0084f6ce7a4f%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/CAJk6f4B0zXnqHRFQ0cg270YuSH3PB0dWw8n1zQAp8RyDOfUBEQ%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 

Re: [datameet] Get Smart Route to Avoid Containment Zone

2020-07-04 Thread mohit K
Hi Guys,

Is there a place I can get Bangalore containment zones data?

Appreciate your help.

Mohit

On Sun, May 17, 2020 at 8:35 PM Souvik Sankar Mitra <
souviksankar2...@gmail.com> wrote:

> Thank you very much for your advice sir. I will try to implement of
> getting location by clicking. Actually sir I use Google's Direction API
> here. But I can try to implement it using open source routing.
> Thank you for the Stack Overflow link sir. It will help me..
>
> With regards ,
> Souvik Sankar Mitra
> M.Tech(Geoinformatics) , Indian Institute of Remote Sensing
>
> On Sunday, May 17, 2020 at 11:26:42 AM UTC+5:30, Nikhil VJ wrote:
>>
>> Hi Souvik,
>>
>> Good work!
>>
>> Suggestion on UI end: can you find a way to capture clicks or
>> right-clicks on the map and let the user add to/from addresses that way,
>> other than typing?
>> That might also save on place api usage.
>>
>> I've made custom context menus / click-to-pin feature in Leaflet maps,
>> not sure how its done in google maps but I've seen such implementations
>> elsewhere.
>> Here's a link from a quick search:
>> https://stackoverflow.com/questions/7168394/google-map-v3-context-menu#10957262
>>
>> Another for-later suggestion: Is your routing running on google's api or
>> other? If other, then it might be a good bet to change the ui to leaflet
>> and avoid google's usage costs that hit when visitor count increases.
>>
>> --
>> Cheers,
>> Nikhil VJ
>> https://nikhilvj.co.in
>>
>>
>> On Wed, May 13, 2020 at 12:29 PM Souvik Sankar Mitra <
>> souviksa...@gmail.com> wrote:
>>
>>> I have developed a smart navigation application to avoid containment
>>> zone. It gives a safe route between source and destination which does not
>>> go through any containment zone. Till now it only available for Kolkata and
>>> Howrah but it can be implemented for other cities also.
>>>
>>> You can check it here - http://shampa.covidrespons.in/
>>> For more information you can check out this video -
>>> https://www.youtube.com/watch?v=UtUaCDmJV_M
>>>
>>> Hope you like it.
>>> Thank you.
>>>
>>> Souvik Sankar Mitra
>>> M.Tech (Geoinformatics) , Indian Institute of Remote Sensing
>>>
>>> --
>>> 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 data...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/datameet/41afc5f7-aafe-4451-9d94-1d09ab15feb3%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/fb9b81da-98d0-4b05-9561-0084f6ce7a4f%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/CAJk6f4B0zXnqHRFQ0cg270YuSH3PB0dWw8n1zQAp8RyDOfUBEQ%40mail.gmail.com.


Re: [datameet] Get Smart Route to Avoid Containment Zone

2020-05-17 Thread Souvik Sankar Mitra
Thank you very much for your advice sir. I will try to implement of getting 
location by clicking. Actually sir I use Google's Direction API here. But I 
can try to implement it using open source routing. 
Thank you for the Stack Overflow link sir. It will help me.. 

With regards , 
Souvik Sankar Mitra
M.Tech(Geoinformatics) , Indian Institute of Remote Sensing

On Sunday, May 17, 2020 at 11:26:42 AM UTC+5:30, Nikhil VJ wrote:
>
> Hi Souvik,
>
> Good work!
>
> Suggestion on UI end: can you find a way to capture clicks or right-clicks 
> on the map and let the user add to/from addresses that way, other than 
> typing?
> That might also save on place api usage.
>
> I've made custom context menus / click-to-pin feature in Leaflet maps, not 
> sure how its done in google maps but I've seen such implementations 
> elsewhere.
> Here's a link from a quick search: 
> https://stackoverflow.com/questions/7168394/google-map-v3-context-menu#10957262
>
> Another for-later suggestion: Is your routing running on google's api or 
> other? If other, then it might be a good bet to change the ui to leaflet 
> and avoid google's usage costs that hit when visitor count increases.
>
> --
> Cheers,
> Nikhil VJ
> https://nikhilvj.co.in
>
>
> On Wed, May 13, 2020 at 12:29 PM Souvik Sankar Mitra <
> souviksa...@gmail.com > wrote:
>
>> I have developed a smart navigation application to avoid containment 
>> zone. It gives a safe route between source and destination which does not 
>> go through any containment zone. Till now it only available for Kolkata and 
>> Howrah but it can be implemented for other cities also. 
>>
>> You can check it here - http://shampa.covidrespons.in/
>> For more information you can check out this video - 
>> https://www.youtube.com/watch?v=UtUaCDmJV_M
>>
>> Hope you like it. 
>> Thank you. 
>>
>> Souvik Sankar Mitra
>> M.Tech (Geoinformatics) , Indian Institute of Remote Sensing
>>
>> -- 
>> 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 data...@googlegroups.com .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/datameet/41afc5f7-aafe-4451-9d94-1d09ab15feb3%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/fb9b81da-98d0-4b05-9561-0084f6ce7a4f%40googlegroups.com.