Skip to content

Commit

Permalink
fix flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
sliu008 committed Aug 12, 2024
1 parent 9abd11a commit 5baa064
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions podaac/forge_py/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,8 @@ def main(args=None):
cutoff_lat = read_config.get('footprint', {}).get('cutoff_lat', None)
smooth_poles = read_config.get('footprint', {}).get('smooth_poles', None)

print(cutoff_lat)
print(smooth_poles)

# Generate footprint
with xr.open_dataset(local_file, decode_times=False) as ds:
with xr.open_dataset(local_file, group=group, decode_times=False) as ds:
lon_data = ds[longitude_var]
lat_data = ds[latitude_var]
wkt_representation = forge.generate_footprint(lon_data, lat_data, thinning_fac=thinning_fac, alpha=alpha, is360=is360, simplify=simplify,
Expand Down

0 comments on commit 5baa064

Please sign in to comment.