Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Magics Version 4.12.0 

      Have a look at the notebook  or  try it on binder : BinderImage Added

  • EPSG:3035 projection

map = magics.mmap(
  subpage_map_projection = 'EPSG:3035',
)

Image Added

  • Automatic adjustment of the projection according to the data extend

area = magics.mmap( subpage_map_projection = 'EPSG:3035',
                   subpage_map_area_definition = "data") 

Image Added

      • Automatic selection of the best suited projection according to the data extend

map = magics.mmap(
  subpage_map_projection = 'automatic',
)

Image Added


  • Introduction of a new way to work with palette of colour lists.

contour = magics.mcont(
        legend                       = 'on',
        contour                      = 'off',
        contour_shade                = 'on',
        contour_label                = 'off',
        contour_level_selection_type = "count",
        contour_level_count =  30,
        contour_interval             = contour_interval,
        contour_level_tolerance      = 0,
        contour_shade_method         = 'area_fill',
        contour_shade_palette_name   = "colorbrewer_RdBl",
        contour_shade_colour_list_policy = "dynamic",
        contour_shade_colour_reverse_list = contour_shade_colour_reverse_list,
        contour_shade_colour_method  = "palette")
        


Image Added

  • Thinning of the wind when using NetCDF data.



Magics Version 4.11.0 

  • User defined coastlines: Magics has the possibility for users to use their own set of shapefiles as coastlines. In this version, we added a parameter map_user_layer_land_colour(Default:NONE). If given a colour , the user coastlines will be filled.


    Image Added
  • Observations plotting using template(Small issues fixed): Magics allows users to define a XML template to display observations-like information.
    The template describes how to position the information.  Users is able to pass a json object as observation, and Magics will use the template to position the different items of the observation.

Image Added

  • LineString in GeoJSon: Magics is now supporting the feature Linestring from the GeoJSON format.

    Image Added

  • Fortran interface : A bug fix when calling popen/pclose several times. 

Versions in use at ECMWF 

...

Magics Version 4.10.0 

  • The list of predefined geographical areas has been aligned with the list of geographical areas offered in the opencharts catalogue. To use them :

...