File tree 4 files changed +9
-11
lines changed
4 files changed +9
-11
lines changed Original file line number Diff line number Diff line change 15
15
16
16
from dask import delayed , compute
17
17
from loguru import logger
18
- from shared_utils import utils
18
+ from calitp_data_analysis import utils
19
19
from prep import GCS_FILE_PATH
20
20
21
21
fs = gcsfs .GCSFileSystem ()
Original file line number Diff line number Diff line change 31
31
" from siuba import *\n " ,
32
32
" \n " ,
33
33
" from tqdm.notebook import tqdm\n " ,
34
- " \n " ,
35
- " import shared_utils"
34
+ " from calitp_data_analysis import geography_utils"
36
35
]
37
36
},
38
37
{
268
267
"outputs" : [],
269
268
"source" : [
270
269
" # Transform the grid points to your preferred CRS\n " ,
271
- " central = central.to_crs(shared_utils. geography_utils.CA_NAD83Albers).set_index('pointid')\n " ,
270
+ " central = central.to_crs(geography_utils.CA_NAD83Albers).set_index('pointid')\n " ,
272
271
" central = central >> select(-_.Point_ID)"
273
272
]
274
273
},
Original file line number Diff line number Diff line change 12
12
import sys
13
13
14
14
from loguru import logger
15
- from shared_utils import utils
15
+ from calitp_data_analysis import utils
16
16
17
17
GCS_FILE_PATH = "gs://calitp-publish-data-analysis/py_crow_flies/"
18
18
CRS = "EPSG:3857"
Original file line number Diff line number Diff line change 21
21
" from siuba import *\n " ,
22
22
" \n " ,
23
23
" from tqdm.notebook import tqdm\n " ,
24
- " \n " ,
25
- " import shared_utils"
24
+ " from calitp_data_analysis import utils"
26
25
]
27
26
},
28
27
{
78
77
"metadata" : {},
79
78
"outputs" : [],
80
79
"source" : [
81
- " shared_utils. utils.geoparquet_gcs_export(central, crow_folder, 'CentralCal_POIs')"
80
+ " utils.geoparquet_gcs_export(central, crow_folder, 'CentralCal_POIs')"
82
81
]
83
82
},
84
83
{
98
97
"metadata" : {},
99
98
"outputs" : [],
100
99
"source" : [
101
- " shared_utils. utils.geoparquet_gcs_export(nor, crow_folder, 'NorCal_POIs')"
100
+ " utils.geoparquet_gcs_export(nor, crow_folder, 'NorCal_POIs')"
102
101
]
103
102
},
104
103
{
118
117
"metadata" : {},
119
118
"outputs" : [],
120
119
"source" : [
121
- " shared_utils. utils.geoparquet_gcs_export(so, crow_folder, 'SoCal_POIs')"
120
+ " utils.geoparquet_gcs_export(so, crow_folder, 'SoCal_POIs')"
122
121
]
123
122
},
124
123
{
138
137
"metadata" : {},
139
138
"outputs" : [],
140
139
"source" : [
141
- " shared_utils. utils.geoparquet_gcs_export(mo, crow_folder, 'Mojave_POIs')"
140
+ " utils.geoparquet_gcs_export(mo, crow_folder, 'Mojave_POIs')"
142
141
]
143
142
},
144
143
{
You can’t perform that action at this time.
0 commit comments