Eric Busboom
Eric Busboom
Allow the API to set and report the data dictionary attached to a resource. It's an awesome feature! So I'd really like to be able to use it programmatically.
Solving issues #41 and #42 would almost surely require resources to be set with a richer interface than a dict. It would be valuable to have a separate interface for...
The process_merge.py file has the special handling for the [Sequence_Number_and_Table_Number_Lookup.xls](Sequence_Number_and_Table_Number_Lookup.xls) file lines that are headings, but which are missing the decimal point, by looking for a break in line number...
The `OpenCageResult.bbox` property is defined as: @property def bbox(self): south = self._bounds.get('southwest', {}).get('lat') north = self._bounds.get('northeast', {}).get('lat') west = self._bounds.get('southwest', {}).get('lng') east = self._bounds.get('northeast', {}).get('lng') if all([south, west, north, east]):...