I would like to build an air cargo app. I want each cargo to be attached to one destination airport.
I found this JSON file. Sample:
"iata": "FOB",
"lon": "-123.79444",
"iso": "US",
"status": 1,
"name": "Fort Bragg Airport",
"continent": "NA",
"type": "airport",
"lat": "39.474445",
"size": "small"
- Where should I put the JSON file in a rails 4 app?
- How can I autocomplete airports both in "iata" and "name" field?
- Given the size(~1.7mb) of the file which method other than "filter method" should I use, preferably in reactjs?