Re: [datameet] Reverse Geocoding

2022-10-07 Thread Shivangi Desai
Thank you all for the information and suggestions. Will look into it and
try figuring it out.
I will need reverse geocoding for the whole of India and might need to call
the API atleast 100 times a day!

Thanks,
Shivangi


On Wed, Oct 5, 2022 at 3:24 PM sreeram kandimalla <
kandimalla.sree...@gmail.com> wrote:

> Cloudflare R2 is also an option for storage.. zero egress charges.. and
> yes bulk processing can always be dockerized by the pulling the data and
> running the code locally.
>
> On Wed, 5 Oct, 2022, 3:04 pm sreeram kandimalla, <
> kandimalla.sree...@gmail.com> wrote:
>
>> I think this can be run out of a flatgeobuf file hosted on GitHub
>> releases and fly.io free tier container for api.. or the processing can
>> be moved to the client side as a library.
>>
>> On Wed, 5 Oct, 2022, 8:31 am Nikhil VJ,  wrote:
>>
>>> Hi,
>>>
>>> In my Pmgsy habitations project i had implemented this in an api call,
>>> for the block boundaries data got from pmgsy. Openapi link:
>>>
>>>
>>> https://server.nikhilvj.co.in/pmgsy/docs#/geospatial/blockFromMap_API_blockFromMap__lat___lon__get
>>>
>>> Of course, the boundaries shared by Pmgsy aren't to be taken as official
>>> admin boundaries as told by themselves, so pls don't.
>>>
>>> I'm on course to add in more datasets and expand this api, esp recent
>>> SOI village boundaries and toponyms data.
>>>
>>> We could make a centralised server, but then limitations kick in like
>>> rate limiting that will make it useless for folks who want to do bulk
>>> operations.
>>>
>>> Scaling up can only happen if users are willing to pay, but that makes
>>> it another paid service, and the output quality won't be refined enough to
>>> justify.
>>>
>>> For the folks needing bulk ops, how about we make a dockerised
>>> recipe-program that people can start up on their systems?
>>>
>>> -Nikhil
>>> https://nikhilvj.co.in
>>>
>>>
>>> On Tue, Oct 4, 2022, 21:18 Arun Ganesh  wrote:
>>>
 One quick option using a hosted service is the Mapbox tilequery API
 https://docs.mapbox.com/playground/tilequery/ which offers 100k free
 requests per month. Once you upload the data, you can use the tilequery
 endpoint as an API to request details of the vector feature at any
 coordinate.

 On Tue, Oct 4, 2022 at 5:55 AM sreeram kandimalla <
 kandimalla.sree...@gmail.com> wrote:

> This exists from bhuvan at https://bhuvan-app1.nrsc.gov.in/api/ . Was
> mentioned in a recent OSM telegram conversation. Only works for Andhra
> Pradesh and Karnataka right now.
>
> On Tue, 4 Oct, 2022, 1:22 pm Deepak Sharda, 
> wrote:
>
>> You can directly get it working from a postgres table. Use pincode
>> layer available with datameet GitHub and run a query point in polygon.
>>
>>
>> it will work
>>
>> So steps
>>
>> 1. get pincode layer
>> 2. update in any postgres install postgis
>> 3. run a query ST_intersects(polygon.geom ,
>> ST_SetSrid(ST_Make_point(long,lat),4326)
>>
>> 3. use any language python , javascript to make a connection
>>
>>
>>
>> On Tue, 4 Oct, 2022, 12:07 pm Dammalapati Sai Krishna, <
>> saikrishnadammalap...@gmail.com> wrote:
>>
>>> Hey Shivangi,
>>>
>>> I was thinking on creating an API for this. Let me know if you would
>>> be interested to work together on this! Or share if you get to know this
>>> service already exists :)
>>>
>>> Regards,
>>> Sai
>>>
>>> Sent from my iPhone
>>>
>>> On 04-Oct-2022, at 11:47 AM, Shivangi Desai <
>>> shivangi.de...@gmail.com> wrote:
>>>
>>> 
>>> Hey All,
>>>
>>> Wanted to check with you all what is the general consensus on doing
>>> Reverse Geocoding (for points in mostly rural parts of India)?
>>>
>>> Should we create a self hosted geo server (which exposes REST API)
>>> to do this? or
>>> Is it better to use any already available and reliable online REST
>>> API service?
>>>
>>> We would need boundary hierarchy to be returned, i.e. State,
>>> District, Block, Village/City etc.
>>>
>>> Any recommendations?
>>>
>>> Thanks & Regards,
>>> Shivangi
>>>
>>> --
>>> 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/CAB%3DRKFvq9_tNkArdNQqjuf9BKihCY_ub4bBHws0P6jYXJH0JzA%40mail.gmail.com
>>> 
>>> .
>>>
>>> --
>

Re: [datameet] Reverse Geocoding

2022-10-05 Thread sreeram kandimalla
Cloudflare R2 is also an option for storage.. zero egress charges.. and yes
bulk processing can always be dockerized by the pulling the data and
running the code locally.

On Wed, 5 Oct, 2022, 3:04 pm sreeram kandimalla, <
kandimalla.sree...@gmail.com> wrote:

> I think this can be run out of a flatgeobuf file hosted on GitHub releases
> and fly.io free tier container for api.. or the processing can be moved
> to the client side as a library.
>
> On Wed, 5 Oct, 2022, 8:31 am Nikhil VJ,  wrote:
>
>> Hi,
>>
>> In my Pmgsy habitations project i had implemented this in an api call,
>> for the block boundaries data got from pmgsy. Openapi link:
>>
>>
>> https://server.nikhilvj.co.in/pmgsy/docs#/geospatial/blockFromMap_API_blockFromMap__lat___lon__get
>>
>> Of course, the boundaries shared by Pmgsy aren't to be taken as official
>> admin boundaries as told by themselves, so pls don't.
>>
>> I'm on course to add in more datasets and expand this api, esp recent SOI
>> village boundaries and toponyms data.
>>
>> We could make a centralised server, but then limitations kick in like
>> rate limiting that will make it useless for folks who want to do bulk
>> operations.
>>
>> Scaling up can only happen if users are willing to pay, but that makes it
>> another paid service, and the output quality won't be refined enough to
>> justify.
>>
>> For the folks needing bulk ops, how about we make a dockerised
>> recipe-program that people can start up on their systems?
>>
>> -Nikhil
>> https://nikhilvj.co.in
>>
>>
>> On Tue, Oct 4, 2022, 21:18 Arun Ganesh  wrote:
>>
>>> One quick option using a hosted service is the Mapbox tilequery API
>>> https://docs.mapbox.com/playground/tilequery/ which offers 100k free
>>> requests per month. Once you upload the data, you can use the tilequery
>>> endpoint as an API to request details of the vector feature at any
>>> coordinate.
>>>
>>> On Tue, Oct 4, 2022 at 5:55 AM sreeram kandimalla <
>>> kandimalla.sree...@gmail.com> wrote:
>>>
 This exists from bhuvan at https://bhuvan-app1.nrsc.gov.in/api/ . Was
 mentioned in a recent OSM telegram conversation. Only works for Andhra
 Pradesh and Karnataka right now.

 On Tue, 4 Oct, 2022, 1:22 pm Deepak Sharda, 
 wrote:

> You can directly get it working from a postgres table. Use pincode
> layer available with datameet GitHub and run a query point in polygon.
>
>
> it will work
>
> So steps
>
> 1. get pincode layer
> 2. update in any postgres install postgis
> 3. run a query ST_intersects(polygon.geom ,
> ST_SetSrid(ST_Make_point(long,lat),4326)
>
> 3. use any language python , javascript to make a connection
>
>
>
> On Tue, 4 Oct, 2022, 12:07 pm Dammalapati Sai Krishna, <
> saikrishnadammalap...@gmail.com> wrote:
>
>> Hey Shivangi,
>>
>> I was thinking on creating an API for this. Let me know if you would
>> be interested to work together on this! Or share if you get to know this
>> service already exists :)
>>
>> Regards,
>> Sai
>>
>> Sent from my iPhone
>>
>> On 04-Oct-2022, at 11:47 AM, Shivangi Desai 
>> wrote:
>>
>> 
>> Hey All,
>>
>> Wanted to check with you all what is the general consensus on doing
>> Reverse Geocoding (for points in mostly rural parts of India)?
>>
>> Should we create a self hosted geo server (which exposes REST API) to
>> do this? or
>> Is it better to use any already available and reliable online REST
>> API service?
>>
>> We would need boundary hierarchy to be returned, i.e. State,
>> District, Block, Village/City etc.
>>
>> Any recommendations?
>>
>> Thanks & Regards,
>> Shivangi
>>
>> --
>> 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/CAB%3DRKFvq9_tNkArdNQqjuf9BKihCY_ub4bBHws0P6jYXJH0JzA%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

Re: [datameet] Reverse Geocoding

2022-10-05 Thread sreeram kandimalla
I think this can be run out of a flatgeobuf file hosted on GitHub releases
and fly.io free tier container for api.. or the processing can be moved to
the client side as a library.

On Wed, 5 Oct, 2022, 8:31 am Nikhil VJ,  wrote:

> Hi,
>
> In my Pmgsy habitations project i had implemented this in an api call, for
> the block boundaries data got from pmgsy. Openapi link:
>
>
> https://server.nikhilvj.co.in/pmgsy/docs#/geospatial/blockFromMap_API_blockFromMap__lat___lon__get
>
> Of course, the boundaries shared by Pmgsy aren't to be taken as official
> admin boundaries as told by themselves, so pls don't.
>
> I'm on course to add in more datasets and expand this api, esp recent SOI
> village boundaries and toponyms data.
>
> We could make a centralised server, but then limitations kick in like rate
> limiting that will make it useless for folks who want to do bulk
> operations.
>
> Scaling up can only happen if users are willing to pay, but that makes it
> another paid service, and the output quality won't be refined enough to
> justify.
>
> For the folks needing bulk ops, how about we make a dockerised
> recipe-program that people can start up on their systems?
>
> -Nikhil
> https://nikhilvj.co.in
>
>
> On Tue, Oct 4, 2022, 21:18 Arun Ganesh  wrote:
>
>> One quick option using a hosted service is the Mapbox tilequery API
>> https://docs.mapbox.com/playground/tilequery/ which offers 100k free
>> requests per month. Once you upload the data, you can use the tilequery
>> endpoint as an API to request details of the vector feature at any
>> coordinate.
>>
>> On Tue, Oct 4, 2022 at 5:55 AM sreeram kandimalla <
>> kandimalla.sree...@gmail.com> wrote:
>>
>>> This exists from bhuvan at https://bhuvan-app1.nrsc.gov.in/api/ . Was
>>> mentioned in a recent OSM telegram conversation. Only works for Andhra
>>> Pradesh and Karnataka right now.
>>>
>>> On Tue, 4 Oct, 2022, 1:22 pm Deepak Sharda, 
>>> wrote:
>>>
 You can directly get it working from a postgres table. Use pincode
 layer available with datameet GitHub and run a query point in polygon.


 it will work

 So steps

 1. get pincode layer
 2. update in any postgres install postgis
 3. run a query ST_intersects(polygon.geom ,
 ST_SetSrid(ST_Make_point(long,lat),4326)

 3. use any language python , javascript to make a connection



 On Tue, 4 Oct, 2022, 12:07 pm Dammalapati Sai Krishna, <
 saikrishnadammalap...@gmail.com> wrote:

> Hey Shivangi,
>
> I was thinking on creating an API for this. Let me know if you would
> be interested to work together on this! Or share if you get to know this
> service already exists :)
>
> Regards,
> Sai
>
> Sent from my iPhone
>
> On 04-Oct-2022, at 11:47 AM, Shivangi Desai 
> wrote:
>
> 
> Hey All,
>
> Wanted to check with you all what is the general consensus on doing
> Reverse Geocoding (for points in mostly rural parts of India)?
>
> Should we create a self hosted geo server (which exposes REST API) to
> do this? or
> Is it better to use any already available and reliable online REST API
> service?
>
> We would need boundary hierarchy to be returned, i.e. State, District,
> Block, Village/City etc.
>
> Any recommendations?
>
> Thanks & Regards,
> Shivangi
>
> --
> 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/CAB%3DRKFvq9_tNkArdNQqjuf9BKihCY_ub4bBHws0P6jYXJH0JzA%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/5F3D41F8-12FF-4A13-92DF-85BFBBAB691F%40gmail.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 subscrib

Re: [datameet] Reverse Geocoding

2022-10-04 Thread Nikhil VJ
Hi,

In my Pmgsy habitations project i had implemented this in an api call, for
the block boundaries data got from pmgsy. Openapi link:

https://server.nikhilvj.co.in/pmgsy/docs#/geospatial/blockFromMap_API_blockFromMap__lat___lon__get

Of course, the boundaries shared by Pmgsy aren't to be taken as official
admin boundaries as told by themselves, so pls don't.

I'm on course to add in more datasets and expand this api, esp recent SOI
village boundaries and toponyms data.

We could make a centralised server, but then limitations kick in like rate
limiting that will make it useless for folks who want to do bulk
operations.

Scaling up can only happen if users are willing to pay, but that makes it
another paid service, and the output quality won't be refined enough to
justify.

For the folks needing bulk ops, how about we make a dockerised
recipe-program that people can start up on their systems?

-Nikhil
https://nikhilvj.co.in


On Tue, Oct 4, 2022, 21:18 Arun Ganesh  wrote:

> One quick option using a hosted service is the Mapbox tilequery API
> https://docs.mapbox.com/playground/tilequery/ which offers 100k free
> requests per month. Once you upload the data, you can use the tilequery
> endpoint as an API to request details of the vector feature at any
> coordinate.
>
> On Tue, Oct 4, 2022 at 5:55 AM sreeram kandimalla <
> kandimalla.sree...@gmail.com> wrote:
>
>> This exists from bhuvan at https://bhuvan-app1.nrsc.gov.in/api/ . Was
>> mentioned in a recent OSM telegram conversation. Only works for Andhra
>> Pradesh and Karnataka right now.
>>
>> On Tue, 4 Oct, 2022, 1:22 pm Deepak Sharda,  wrote:
>>
>>> You can directly get it working from a postgres table. Use pincode layer
>>> available with datameet GitHub and run a query point in polygon.
>>>
>>>
>>> it will work
>>>
>>> So steps
>>>
>>> 1. get pincode layer
>>> 2. update in any postgres install postgis
>>> 3. run a query ST_intersects(polygon.geom ,
>>> ST_SetSrid(ST_Make_point(long,lat),4326)
>>>
>>> 3. use any language python , javascript to make a connection
>>>
>>>
>>>
>>> On Tue, 4 Oct, 2022, 12:07 pm Dammalapati Sai Krishna, <
>>> saikrishnadammalap...@gmail.com> wrote:
>>>
 Hey Shivangi,

 I was thinking on creating an API for this. Let me know if you would be
 interested to work together on this! Or share if you get to know this
 service already exists :)

 Regards,
 Sai

 Sent from my iPhone

 On 04-Oct-2022, at 11:47 AM, Shivangi Desai 
 wrote:

 
 Hey All,

 Wanted to check with you all what is the general consensus on doing
 Reverse Geocoding (for points in mostly rural parts of India)?

 Should we create a self hosted geo server (which exposes REST API) to
 do this? or
 Is it better to use any already available and reliable online REST API
 service?

 We would need boundary hierarchy to be returned, i.e. State, District,
 Block, Village/City etc.

 Any recommendations?

 Thanks & Regards,
 Shivangi

 --
 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/CAB%3DRKFvq9_tNkArdNQqjuf9BKihCY_ub4bBHws0P6jYXJH0JzA%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/5F3D41F8-12FF-4A13-92DF-85BFBBAB691F%40gmail.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/CA%2B4SsQB1YKpN8LWUmMjDFSkxz8nL-rjsdcJ4jajtjF8XmB9c_A%40mail.gmail.com
>>> 

Re: [datameet] Reverse Geocoding

2022-10-04 Thread Arun Ganesh
One quick option using a hosted service is the Mapbox tilequery API
https://docs.mapbox.com/playground/tilequery/ which offers 100k free
requests per month. Once you upload the data, you can use the tilequery
endpoint as an API to request details of the vector feature at any
coordinate.

On Tue, Oct 4, 2022 at 5:55 AM sreeram kandimalla <
kandimalla.sree...@gmail.com> wrote:

> This exists from bhuvan at https://bhuvan-app1.nrsc.gov.in/api/ . Was
> mentioned in a recent OSM telegram conversation. Only works for Andhra
> Pradesh and Karnataka right now.
>
> On Tue, 4 Oct, 2022, 1:22 pm Deepak Sharda,  wrote:
>
>> You can directly get it working from a postgres table. Use pincode layer
>> available with datameet GitHub and run a query point in polygon.
>>
>>
>> it will work
>>
>> So steps
>>
>> 1. get pincode layer
>> 2. update in any postgres install postgis
>> 3. run a query ST_intersects(polygon.geom ,
>> ST_SetSrid(ST_Make_point(long,lat),4326)
>>
>> 3. use any language python , javascript to make a connection
>>
>>
>>
>> On Tue, 4 Oct, 2022, 12:07 pm Dammalapati Sai Krishna, <
>> saikrishnadammalap...@gmail.com> wrote:
>>
>>> Hey Shivangi,
>>>
>>> I was thinking on creating an API for this. Let me know if you would be
>>> interested to work together on this! Or share if you get to know this
>>> service already exists :)
>>>
>>> Regards,
>>> Sai
>>>
>>> Sent from my iPhone
>>>
>>> On 04-Oct-2022, at 11:47 AM, Shivangi Desai 
>>> wrote:
>>>
>>> 
>>> Hey All,
>>>
>>> Wanted to check with you all what is the general consensus on doing
>>> Reverse Geocoding (for points in mostly rural parts of India)?
>>>
>>> Should we create a self hosted geo server (which exposes REST API) to do
>>> this? or
>>> Is it better to use any already available and reliable online REST API
>>> service?
>>>
>>> We would need boundary hierarchy to be returned, i.e. State, District,
>>> Block, Village/City etc.
>>>
>>> Any recommendations?
>>>
>>> Thanks & Regards,
>>> Shivangi
>>>
>>> --
>>> 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/CAB%3DRKFvq9_tNkArdNQqjuf9BKihCY_ub4bBHws0P6jYXJH0JzA%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/5F3D41F8-12FF-4A13-92DF-85BFBBAB691F%40gmail.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/CA%2B4SsQB1YKpN8LWUmMjDFSkxz8nL-rjsdcJ4jajtjF8XmB9c_A%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/CAMgvHC76Bi3g292A%2BqV-eMVqK_TJ9S_in98keXUCuLoEqMNMFg%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+unsubs

Re: [datameet] Reverse Geocoding

2022-10-04 Thread sreeram kandimalla
This exists from bhuvan at https://bhuvan-app1.nrsc.gov.in/api/ . Was
mentioned in a recent OSM telegram conversation. Only works for Andhra
Pradesh and Karnataka right now.

On Tue, 4 Oct, 2022, 1:22 pm Deepak Sharda,  wrote:

> You can directly get it working from a postgres table. Use pincode layer
> available with datameet GitHub and run a query point in polygon.
>
>
> it will work
>
> So steps
>
> 1. get pincode layer
> 2. update in any postgres install postgis
> 3. run a query ST_intersects(polygon.geom ,
> ST_SetSrid(ST_Make_point(long,lat),4326)
>
> 3. use any language python , javascript to make a connection
>
>
>
> On Tue, 4 Oct, 2022, 12:07 pm Dammalapati Sai Krishna, <
> saikrishnadammalap...@gmail.com> wrote:
>
>> Hey Shivangi,
>>
>> I was thinking on creating an API for this. Let me know if you would be
>> interested to work together on this! Or share if you get to know this
>> service already exists :)
>>
>> Regards,
>> Sai
>>
>> Sent from my iPhone
>>
>> On 04-Oct-2022, at 11:47 AM, Shivangi Desai 
>> wrote:
>>
>> 
>> Hey All,
>>
>> Wanted to check with you all what is the general consensus on doing
>> Reverse Geocoding (for points in mostly rural parts of India)?
>>
>> Should we create a self hosted geo server (which exposes REST API) to do
>> this? or
>> Is it better to use any already available and reliable online REST API
>> service?
>>
>> We would need boundary hierarchy to be returned, i.e. State, District,
>> Block, Village/City etc.
>>
>> Any recommendations?
>>
>> Thanks & Regards,
>> Shivangi
>>
>> --
>> 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/CAB%3DRKFvq9_tNkArdNQqjuf9BKihCY_ub4bBHws0P6jYXJH0JzA%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/5F3D41F8-12FF-4A13-92DF-85BFBBAB691F%40gmail.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/CA%2B4SsQB1YKpN8LWUmMjDFSkxz8nL-rjsdcJ4jajtjF8XmB9c_A%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/CAMgvHC76Bi3g292A%2BqV-eMVqK_TJ9S_in98keXUCuLoEqMNMFg%40mail.gmail.com.


Re: [datameet] Reverse Geocoding

2022-10-04 Thread Deepak Sharda
You can directly get it working from a postgres table. Use pincode layer
available with datameet GitHub and run a query point in polygon.


it will work

So steps

1. get pincode layer
2. update in any postgres install postgis
3. run a query ST_intersects(polygon.geom ,
ST_SetSrid(ST_Make_point(long,lat),4326)

3. use any language python , javascript to make a connection



On Tue, 4 Oct, 2022, 12:07 pm Dammalapati Sai Krishna, <
saikrishnadammalap...@gmail.com> wrote:

> Hey Shivangi,
>
> I was thinking on creating an API for this. Let me know if you would be
> interested to work together on this! Or share if you get to know this
> service already exists :)
>
> Regards,
> Sai
>
> Sent from my iPhone
>
> On 04-Oct-2022, at 11:47 AM, Shivangi Desai 
> wrote:
>
> 
> Hey All,
>
> Wanted to check with you all what is the general consensus on doing
> Reverse Geocoding (for points in mostly rural parts of India)?
>
> Should we create a self hosted geo server (which exposes REST API) to do
> this? or
> Is it better to use any already available and reliable online REST API
> service?
>
> We would need boundary hierarchy to be returned, i.e. State, District,
> Block, Village/City etc.
>
> Any recommendations?
>
> Thanks & Regards,
> Shivangi
>
> --
> 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/CAB%3DRKFvq9_tNkArdNQqjuf9BKihCY_ub4bBHws0P6jYXJH0JzA%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/5F3D41F8-12FF-4A13-92DF-85BFBBAB691F%40gmail.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/CA%2B4SsQB1YKpN8LWUmMjDFSkxz8nL-rjsdcJ4jajtjF8XmB9c_A%40mail.gmail.com.


Re: [datameet] Reverse Geocoding

2022-10-03 Thread Dammalapati Sai Krishna
Hey Shivangi,

I was thinking on creating an API for this. Let me know if you would be 
interested to work together on this! Or share if you get to know this service 
already exists :)

Regards,
Sai

Sent from my iPhone

> On 04-Oct-2022, at 11:47 AM, Shivangi Desai  wrote:
> 
> 
> Hey All,
> 
> Wanted to check with you all what is the general consensus on doing Reverse 
> Geocoding (for points in mostly rural parts of India)?
> 
> Should we create a self hosted geo server (which exposes REST API) to do 
> this? or 
> Is it better to use any already available and reliable online REST API 
> service?
> 
> We would need boundary hierarchy to be returned, i.e. State, District, Block, 
> Village/City etc.
> 
> Any recommendations?
> 
> Thanks & Regards,
> Shivangi
> -- 
> 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/CAB%3DRKFvq9_tNkArdNQqjuf9BKihCY_ub4bBHws0P6jYXJH0JzA%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/5F3D41F8-12FF-4A13-92DF-85BFBBAB691F%40gmail.com.


[datameet] Reverse Geocoding

2022-10-03 Thread Shivangi Desai
Hey All,

Wanted to check with you all what is the general consensus on doing Reverse
Geocoding (for points in mostly rural parts of India)?

Should we create a self hosted geo server (which exposes REST API) to do
this? or
Is it better to use any already available and reliable online REST API
service?

We would need boundary hierarchy to be returned, i.e. State, District,
Block, Village/City etc.

Any recommendations?

Thanks & Regards,
Shivangi

-- 
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/CAB%3DRKFvq9_tNkArdNQqjuf9BKihCY_ub4bBHws0P6jYXJH0JzA%40mail.gmail.com.