-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathmeta.yaml
More file actions
160 lines (152 loc) · 5.96 KB
/
meta.yaml
File metadata and controls
160 lines (152 loc) · 5.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
{% set name = "mpas_tools" %}
{% set version = "0.21.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
path: ../..
build:
number: 0
entry_points:
- planar_hex = mpas_tools.planar_hex:main
- translate_planar_grid = mpas_tools.translate:main
- merge_grids = mpas_tools.merge_grids:main
- split_grids = mpas_tools.split_grids:main
- inject_bathymetry = mpas_tools.ocean.inject_bathymetry:main
- inject_preserve_floodplain = mpas_tools.ocean.inject_preserve_floodplain:main
- mpas_to_triangle = mpas_tools.mesh.creation.mpas_to_triangle:main
- triangle_to_netcdf = mpas_tools.mesh.creation.triangle_to_netcdf:main
- jigsaw_to_netcdf = mpas_tools.mesh.creation.jigsaw_to_netcdf:main
- scrip_from_mpas = mpas_tools.scrip.from_mpas:main
- ocean_add_depth = mpas_tools.ocean.depth:main_add_depth
- ocean_add_zmid = mpas_tools.ocean.depth:main_add_zmid
- ocean_write_time_varying_zmid = mpas_tools.ocean.depth:main_write_time_varying_zmid
- plot_ocean_transects = mpas_tools.ocean.viz.transects:main
- compute_mpas_region_masks = mpas_tools.mesh.mask:entry_point_compute_mpas_region_masks
- compute_mpas_transect_masks = mpas_tools.mesh.mask:entry_point_compute_mpas_transect_masks
- compute_mpas_flood_fill_mask = mpas_tools.mesh.mask:entry_point_compute_mpas_flood_fill_mask
- compute_lon_lat_region_masks = mpas_tools.mesh.mask:entry_point_compute_lon_lat_region_masks
- compute_projection_region_masks = mpas_tools.mesh.mask:entry_point_compute_projection_grid_region_masks
- prepare_seaice_partitions = mpas_tools.seaice.partition:prepare_partitions
- create_seaice_partitions = mpas_tools.seaice.partition:create_partitions
- simple_seaice_partitions = mpas_tools.seaice.partition:simple_partitions
- sort_mesh = mpas_tools.mesh.creation.sort_mesh:main
requirements:
build:
- {{ compiler('cxx') }}
- {{ compiler('fortran') }}
- cmake
- pkgconfig
host:
- python
- hdf5
- hdf5 * nompi_*
- libnetcdf
- libnetcdf * nompi_*
- netcdf-fortran
- netcdf-fortran * nompi_*
- setuptools
- netcdf4
- openmp # [osx]
run:
- python
- cartopy
- cmocean
- dask
- geometric_features >=1.0.1,<2.0.0
- hdf5
- importlib_resources # [py<=38]
- inpoly
- jigsaw >=0.9.12
- jigsawpy >=0.2.1
- libnetcdf
- netcdf-fortran
- matplotlib-base
- netcdf4
- numpy
- progressbar2
- pyamg
- pyevtk
- pyproj
- python-igraph
- scikit-image !=0.20.0
- scipy
- shapely >=2.0,<3.0
- xarray
test:
requires:
- pytest
- requests
- pip
source_files:
- mesh_tools/mesh_conversion_tools/test/Arctic_Ocean.geojson
- mesh_tools/mesh_conversion_tools/test/mesh.QU.1920km.151026.nc
- mesh_tools/mesh_conversion_tools/test/land_mask_final.nc
- conda_package/mpas_tools/tests/*
imports:
- mpas_tools
- mpas_tools.mesh.conversion
- mpas_tools.mesh.creation
- mpas_tools.viz
- mpas_tools.conversion
commands:
- planar_hex --nx=10 --ny=20 --dc=1000. --outFileName='periodic_mesh_10x20_1km.nc'
- translate_planar_grid -f 'periodic_mesh_10x20_1km.nc' -x 1000. -y 2000.
- translate_planar_grid -f 'periodic_mesh_10x20_1km.nc' -c
- planar_hex --nx=20 --ny=40 --dc=1000. --outFileName='periodic_mesh_20x40_1km.nc'
- translate_planar_grid -f 'periodic_mesh_10x20_1km.nc' -d 'periodic_mesh_20x40_1km.nc'
- MpasMeshConverter.x mesh_tools/mesh_conversion_tools/test/mesh.QU.1920km.151026.nc mesh.nc
- sort_mesh --mesh-file mesh.nc --sort-file sorted_mesh.nc
- MpasCellCuller.x mesh.nc culled_mesh.nc -m mesh_tools/mesh_conversion_tools/test/land_mask_final.nc
- MpasMaskCreator.x mesh.nc arctic_mask.nc -f mesh_tools/mesh_conversion_tools/test/Arctic_Ocean.geojson
- planar_hex --nx=30 --ny=20 --dc=1000. --npx --npy --outFileName='nonperiodic_mesh_30x20_1km.nc'
- MpasCellCuller.x nonperiodic_mesh_30x20_1km.nc culled_nonperiodic_mesh_30x20_1km.nc
- python -m pytest conda_package/mpas_tools/tests
- mark_horns_for_culling.py --help
- set_lat_lon_fields_in_planar_grid.py --help
- create_SCRIP_file_from_MPAS_mesh.py --help
- create_SCRIP_file_from_planar_rectangular_grid.py --help
- prepare_seaice_partitions --help
- create_seaice_partitions --help
- fix_regrid_output.exe
- create_landice_grid_from_generic_MPAS_grid.py --help
- define_cullMask.py --help
- interpolate_to_mpasli_grid.py --help
- mark_domain_boundaries_dirichlet.py --help
- add_land_locked_cells_to_mask.py --help
- widen_transect_edge_masks.py --help
- add_critical_land_blockages_to_mask.py --help
- moc_southern_boundary_extractor.py --help
- ocean_add_depth --help
- ocean_add_zmid --help
- ocean_write_time_varying_zmid --help
- paraview_vtk_field_extractor.py -f mesh_tools/mesh_conversion_tools/test/mesh.QU.1920km.151026.nc -v latCell,lonCell --ignore_time -o vtk_test
- split_grids --help
- merge_grids --help
- inject_bathymetry mesh_tools/mesh_conversion_tools/test/mesh.QU.1920km.151026.nc
- inject_preserve_floodplain --help
- mpas_to_triangle --help
- triangle_to_netcdf --help
- jigsaw_to_netcdf --help
- scrip_from_mpas --help
- compute_mpas_region_masks --help
- compute_mpas_transect_masks --help
- compute_mpas_flood_fill_mask --help
- compute_lon_lat_region_masks --help
- compute_projection_region_masks --help
- pip check
about:
home: https://github.com/MPAS-Dev/MPAS-Tools/
license: BSD-3-Clause
license_family: BSD
license_file: LICENSE
summary: Mesh tools for Model for Prediction Across Scales (MPAS)
description: |
A set of tools for creating and manipulating meshes for the climate
components based on the Model for Prediction Across Scales (MPAS) framework
doc_url: https://github.com/MPAS-Dev/MPAS-Tools/README.md
dev_url: https://github.com/MPAS-Dev/MPAS-Tools/
extra:
recipe-maintainers:
- xylar
- jhkennedy