Skip to content
GitLab
Projects Groups Topics Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
  • Sign in
  • M MAPIES
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributor statistics
    • Graph
    • Compare revisions
  • Issues 25
    • Issues 25
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 2
    • Merge requests 2
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Terraform modules
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • Atmospheric Composition
  • MAPIES
  • Issues
  • #40
Closed
Open
Issue created Feb 03, 2025 by Calum Meikle@cmeikleMaintainer

Update the Grids configuration

Change the way the Grids are done. Creating a new class for each possible option using python dataclasses.

For example:

from dataclasses import dataclass

@dataclass
class CAMS(Grid):
    centre_lat: float = 35.
    centre_lon: float = 20.
    west: float = -51.
    south: float = -35.
    dlon: float = 0.1
    dlat: float = 0.1
    
    ...

Instead of writing the grid config in the satillite yaml config. So then the user would only have to specify the which grid they want grid_repr="cams". Or add a new grid repr that they want.

@cgile @eemili @gmonteil

Edited Feb 03, 2025 by Calum Meikle
Assignee
Assign to
Time tracking