Hello, I was hoping someone could please help. I need to collect data for a project i have which looks at all the states a route goes through. For example going from Jacksonville Florida to Lexington Kentucky the route would go through: Georgia Tennessee I have over 100 routes and to look and write down each state a route goes through manually wouldn't be time effective so i wanted to see if there's a better way. Is there a way i am able to get an output of this data from this site or another site base on the different origin and destination i have please? I would be grateful for your help, suggestion and guidance. Thank you. asked 28 Jul '21, 04:51 Studnt123 |
If you are looking for web service that magically solves your problem - I'm afraid I don't know any. What needs to be done is:
One way to automate this is loading your routes and state boundaries into a PostGIS database. Then (let's assume you have loaded the routes with an ID into a "routes" table and the states with their names into a "states" table) the database can do the work for you with a simple query like
answered 28 Jul '21, 11:31 Frederik Ramm ♦ Thank you very much for your suggestion and advice! I appreciate it!
(29 Jul '21, 04:37)
Studnt123
|