Skip to content

Commit

Permalink
Reordering package loading/importing order
Browse files Browse the repository at this point in the history
  • Loading branch information
natgeo-wong committed Jan 6, 2023
1 parent 41b291c commit af96901
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ERA5Reanalysis.jl
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ using NCDatasets
using PrettyTables
using Statistics

import Base: show, read, download, split
import GeoRegions: getLandSea

## Reexporting exported functions within these modules
using Reexport
@reexport using Dates
@reexport using GeoRegions
@reexport using NCDatasets: nomissing

import Base: show, read, download, split
import GeoRegions: getLandSea

## Exporting the following functions:
export
ERA5Dataset, ERA5Hourly, ERA5Daily, ERA5Monthly,
Expand Down

2 comments on commit af96901

@natgeo-wong
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register

Release Notes:

  • Reordering LandSea functionality to import from GeoRegions.jl first
  • Debugging getLandSea functionality and add weighted-grid for latitude
  • Updating [compat] requirements
  • Additional functionalities: hour2day, timeseries (avg, ocean, land), spatial smoothing
  • Debugging downloading

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/76836

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.2.1 -m "<description of version>" af96901974e44591254532db98f3664eef1748de
git push origin v0.2.1

Please sign in to comment.