OceanParcels / plasticparcels

Repository for PlasticParcels tool
MIT License
3 stars 1 forks source link

Wrong names for Longitude and Latitude in agg_data_fisheries_info_NEMO0083.csv #17

Closed michaeldenes closed 1 month ago

michaeldenes commented 2 months ago

The create_release_maps.py file in plasticparcels/scripts has a function create_fisheries_gfwv2_release_map(). The data needs two columns renamed to work in plasticparcels. The following line needs to be added just before the return statement:

model_agg_data_fisheries_info = model_agg_data_fisheries_info.rename(columns={'ModelLatitude': 'Latitude', 'ModelLongitude': 'Longitude'})

michaeldenes commented 1 month ago

This has been solved in #30.