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 <

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

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

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

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,

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

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 ,

Re: [datameet] Reverse Geocoding

2022-10-04 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, > >