# CrossCompute
search_address = '2435 Grand Concourse, Bronx, NY 10468'
search_count = 5
source_table_url = 'https://www.nycgovparks.org/bigapps/DPR_Basketball_001.json'
target_folder = '/tmp'
import pandas as pd
t = pd.read_json(source_table_url)
t.head()
from os.path import join
target_path = join(target_folder, 'table.csv')
t.to_csv(target_path)
print('x_table_path = %s' % target_path)
print('selected_location_geotable_path = %s' % target_path)
t.iloc[70]