Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions tilequeue/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,8 @@ def lookup_source(source):
result = Source('wof', source)
elif source == 'tilezen.org':
result = Source('shp', source)
elif source == 'viewfinderpanoramas.org':
result = Source('vfp', source)

return result

Expand Down Expand Up @@ -676,6 +678,7 @@ def convert_source_data_to_feature_layers(rows, layer_data, unpadded_bounds, zoo
transit=row.pop('__transit_properties__', None),
water=row.pop('__water_properties__', None),
admin_areas=row.pop('__admin_areas_properties__', None),
contours=row.pop('__contours_properties__', None),
)

# TODO at first pass, simulate the structure that we're
Expand Down