├── .bandit ├── .gitattributes ├── .gitchangelog.rc ├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── ci.yaml │ └── deploy-sdist.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── AUTHORS.md ├── CHANGELOG.md ├── LICENSE.txt ├── MANIFEST.in ├── README ├── README.rst ├── RELEASING.md ├── continuous_integration └── environment.yaml ├── docs ├── Makefile └── source │ ├── api │ └── .gitkeep │ ├── conf.py │ ├── config.rst │ ├── graticule.rst │ ├── high_quality_contours.rst │ ├── images │ ├── BMNG_clouds_201109181715_areaT2.png │ ├── brazil_shapefiles_agg.png │ ├── euro_coast.png │ ├── euro_coast_agg.png │ ├── euro_coast_grid_agg.png │ ├── euro_grid.png │ ├── euro_grid_agg.png │ ├── geos_coast.png │ ├── geos_coast_agg.png │ ├── grid_geos_agg.png │ ├── nh_grid_coarse_agg.png │ ├── nh_points_agg.png │ ├── nh_polygons_agg.png │ └── nh_polygons_lines_agg.png │ ├── index.rst │ ├── installation.rst │ ├── points.rst │ ├── polygons_and_lines.rst │ ├── shapefiles.rst │ ├── test.rst │ └── usage.rst ├── pycoast ├── __init__.py ├── conftest.py ├── cw_agg.py ├── cw_base.py ├── cw_pil.py ├── tests │ ├── __init__.py │ ├── brazil_shapefiles.png │ ├── brazil_shapefiles_agg.png │ ├── coasts_and_grid.ini │ ├── coasts_and_grid_agg.ini │ ├── contours_europe.png │ ├── contours_europe_agg.png │ ├── contours_europe_alpha.png │ ├── contours_geos.png │ ├── contours_geos_agg.png │ ├── dateline_boundary_cross.png │ ├── dateline_cross.png │ ├── eastern_shapes_agg.png │ ├── eastern_shapes_pil.png │ ├── grid_europe.png │ ├── grid_europe_agg.png │ ├── grid_europe_agg_txt.png │ ├── grid_from_dict_agg.png │ ├── grid_from_dict_pil.png │ ├── grid_geos.png │ ├── grid_geos_agg.png │ ├── grid_germ.png │ ├── grid_nh.png │ ├── grid_nh_agg.png │ ├── grid_nh_cfg_agg.png │ ├── lonlat_boundary_cross.png │ ├── nh_cities_agg.ini │ ├── nh_cities_agg.png │ ├── nh_cities_from_dict_agg.png │ ├── nh_cities_from_dict_pil.png │ ├── nh_cities_pil.ini │ ├── nh_cities_pil.png │ ├── nh_one_shapefile.ini │ ├── nh_points_agg.ini │ ├── nh_points_agg.png │ ├── nh_points_cfg_pil.png │ ├── nh_points_pil.ini │ ├── nh_points_pil.png │ ├── nh_polygons.png │ ├── nh_polygons_agg.png │ ├── no_h_scratch_agg.png │ ├── no_h_scratch_pil.png │ ├── no_v_scratch_agg.png │ ├── no_v_scratch_pil.png │ ├── one_shapefile_from_cfg_agg.png │ ├── one_shapefile_from_cfg_pil.png │ ├── test_data │ │ ├── DejaVuSerif.ttf │ │ ├── gshhs │ │ │ ├── CITIES │ │ │ │ └── cities.txt │ │ │ ├── GSHHS_shp │ │ │ │ └── l │ │ │ │ │ ├── GSHHS_l_L1.dbf │ │ │ │ │ ├── GSHHS_l_L1.prj │ │ │ │ │ ├── GSHHS_l_L1.shp │ │ │ │ │ ├── GSHHS_l_L1.shx │ │ │ │ │ ├── GSHHS_l_L2.dbf │ │ │ │ │ ├── GSHHS_l_L2.prj │ │ │ │ │ ├── GSHHS_l_L2.shp │ │ │ │ │ ├── GSHHS_l_L2.shx │ │ │ │ │ ├── GSHHS_l_L3.dbf │ │ │ │ │ ├── GSHHS_l_L3.prj │ │ │ │ │ ├── GSHHS_l_L3.shp │ │ │ │ │ ├── GSHHS_l_L3.shx │ │ │ │ │ ├── GSHHS_l_L4.dbf │ │ │ │ │ ├── GSHHS_l_L4.prj │ │ │ │ │ ├── GSHHS_l_L4.shp │ │ │ │ │ └── GSHHS_l_L4.shx │ │ │ └── WDBII_shp │ │ │ │ └── c │ │ │ │ ├── WDBII_border_c_L1.dbf │ │ │ │ ├── WDBII_border_c_L1.prj │ │ │ │ ├── WDBII_border_c_L1.shp │ │ │ │ ├── WDBII_border_c_L1.shx │ │ │ │ ├── WDBII_border_c_L2.dbf │ │ │ │ ├── WDBII_border_c_L2.prj │ │ │ │ ├── WDBII_border_c_L2.shp │ │ │ │ ├── WDBII_border_c_L2.shx │ │ │ │ ├── WDBII_border_c_L3.dbf │ │ │ │ ├── WDBII_border_c_L3.prj │ │ │ │ ├── WDBII_border_c_L3.shp │ │ │ │ ├── WDBII_border_c_L3.shx │ │ │ │ ├── WDBII_river_c_L01.dbf │ │ │ │ ├── WDBII_river_c_L01.prj │ │ │ │ ├── WDBII_river_c_L01.shp │ │ │ │ ├── WDBII_river_c_L01.shx │ │ │ │ ├── WDBII_river_c_L02.dbf │ │ │ │ ├── WDBII_river_c_L02.prj │ │ │ │ ├── WDBII_river_c_L02.shp │ │ │ │ ├── WDBII_river_c_L02.shx │ │ │ │ ├── WDBII_river_c_L03.dbf │ │ │ │ ├── WDBII_river_c_L03.prj │ │ │ │ ├── WDBII_river_c_L03.shp │ │ │ │ ├── WDBII_river_c_L03.shx │ │ │ │ ├── WDBII_river_c_L04.dbf │ │ │ │ ├── WDBII_river_c_L04.prj │ │ │ │ ├── WDBII_river_c_L04.shp │ │ │ │ ├── WDBII_river_c_L04.shx │ │ │ │ ├── WDBII_river_c_L05.dbf │ │ │ │ ├── WDBII_river_c_L05.prj │ │ │ │ ├── WDBII_river_c_L05.shp │ │ │ │ ├── WDBII_river_c_L05.shx │ │ │ │ ├── WDBII_river_c_L06.dbf │ │ │ │ ├── WDBII_river_c_L06.prj │ │ │ │ ├── WDBII_river_c_L06.shp │ │ │ │ ├── WDBII_river_c_L06.shx │ │ │ │ ├── WDBII_river_c_L07.dbf │ │ │ │ ├── WDBII_river_c_L07.prj │ │ │ │ ├── WDBII_river_c_L07.shp │ │ │ │ ├── WDBII_river_c_L07.shx │ │ │ │ ├── WDBII_river_c_L08.dbf │ │ │ │ ├── WDBII_river_c_L08.prj │ │ │ │ ├── WDBII_river_c_L08.shp │ │ │ │ ├── WDBII_river_c_L08.shx │ │ │ │ ├── WDBII_river_c_L09.dbf │ │ │ │ ├── WDBII_river_c_L09.prj │ │ │ │ ├── WDBII_river_c_L09.shp │ │ │ │ ├── WDBII_river_c_L09.shx │ │ │ │ ├── WDBII_river_c_L1.dbf │ │ │ │ ├── WDBII_river_c_L1.shp │ │ │ │ ├── WDBII_river_c_L1.shx │ │ │ │ ├── WDBII_river_c_L10.dbf │ │ │ │ ├── WDBII_river_c_L10.prj │ │ │ │ ├── WDBII_river_c_L10.shp │ │ │ │ ├── WDBII_river_c_L10.shx │ │ │ │ ├── WDBII_river_c_L11.dbf │ │ │ │ ├── WDBII_river_c_L11.prj │ │ │ │ ├── WDBII_river_c_L11.shp │ │ │ │ ├── WDBII_river_c_L11.shx │ │ │ │ ├── WDBII_river_c_L2.dbf │ │ │ │ ├── WDBII_river_c_L2.shp │ │ │ │ ├── WDBII_river_c_L2.shx │ │ │ │ ├── WDBII_river_c_L3.dbf │ │ │ │ ├── WDBII_river_c_L3.shp │ │ │ │ └── WDBII_river_c_L3.shx │ │ ├── shapes │ │ │ ├── Metareas.dbf │ │ │ ├── Metareas.mxd │ │ │ ├── Metareas.prj │ │ │ ├── Metareas.sbn │ │ │ ├── Metareas.sbx │ │ │ ├── Metareas.shp │ │ │ ├── Metareas.shx │ │ │ ├── README │ │ │ ├── divisao_politica │ │ │ │ ├── BRASIL.dbf │ │ │ │ ├── BRASIL.shp │ │ │ │ ├── BRASIL.shx │ │ │ │ ├── BR_Capitais.dbf │ │ │ │ ├── BR_Capitais.shp │ │ │ │ ├── BR_Capitais.shx │ │ │ │ ├── BR_Contorno.dbf │ │ │ │ ├── BR_Contorno.shp │ │ │ │ ├── BR_Contorno.shx │ │ │ │ ├── BR_Regioes.dbf │ │ │ │ ├── BR_Regioes.shp │ │ │ │ ├── BR_Regioes.shx │ │ │ │ ├── divisao_politica.txt │ │ │ │ └── leia.txt │ │ │ ├── metarea5.gsf │ │ │ ├── metarea5.tbl │ │ │ └── metarea5.tbl.info │ │ └── test_config.ini │ ├── test_pycoast.py │ ├── two_shapefiles_agg.png │ ├── two_shapefiles_pil.png │ ├── western_shapes_agg.png │ └── western_shapes_pil.png └── version.py ├── pyproject.toml ├── scripts ├── countries.json └── create_contributor_map.py ├── setup.cfg ├── setup.py └── versioneer.py /.bandit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/.bandit -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | pycoast/version.py export-subst 2 | -------------------------------------------------------------------------------- /.gitchangelog.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/.gitchangelog.rc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/deploy-sdist.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/.github/workflows/deploy-sdist.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | README.rst -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/README.rst -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/RELEASING.md -------------------------------------------------------------------------------- /continuous_integration/environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/continuous_integration/environment.yaml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/source/api/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/docs/source/config.rst -------------------------------------------------------------------------------- /docs/source/graticule.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/docs/source/graticule.rst -------------------------------------------------------------------------------- /docs/source/high_quality_contours.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/docs/source/high_quality_contours.rst -------------------------------------------------------------------------------- /docs/source/images/BMNG_clouds_201109181715_areaT2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/docs/source/images/BMNG_clouds_201109181715_areaT2.png -------------------------------------------------------------------------------- /docs/source/images/brazil_shapefiles_agg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/docs/source/images/brazil_shapefiles_agg.png -------------------------------------------------------------------------------- /docs/source/images/euro_coast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/docs/source/images/euro_coast.png -------------------------------------------------------------------------------- /docs/source/images/euro_coast_agg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/docs/source/images/euro_coast_agg.png -------------------------------------------------------------------------------- /docs/source/images/euro_coast_grid_agg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/docs/source/images/euro_coast_grid_agg.png -------------------------------------------------------------------------------- /docs/source/images/euro_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/docs/source/images/euro_grid.png -------------------------------------------------------------------------------- /docs/source/images/euro_grid_agg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/docs/source/images/euro_grid_agg.png -------------------------------------------------------------------------------- /docs/source/images/geos_coast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/docs/source/images/geos_coast.png -------------------------------------------------------------------------------- /docs/source/images/geos_coast_agg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/docs/source/images/geos_coast_agg.png -------------------------------------------------------------------------------- /docs/source/images/grid_geos_agg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/docs/source/images/grid_geos_agg.png -------------------------------------------------------------------------------- /docs/source/images/nh_grid_coarse_agg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/docs/source/images/nh_grid_coarse_agg.png -------------------------------------------------------------------------------- /docs/source/images/nh_points_agg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/docs/source/images/nh_points_agg.png -------------------------------------------------------------------------------- /docs/source/images/nh_polygons_agg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/docs/source/images/nh_polygons_agg.png -------------------------------------------------------------------------------- /docs/source/images/nh_polygons_lines_agg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/docs/source/images/nh_polygons_lines_agg.png -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/docs/source/installation.rst -------------------------------------------------------------------------------- /docs/source/points.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/docs/source/points.rst -------------------------------------------------------------------------------- /docs/source/polygons_and_lines.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/docs/source/polygons_and_lines.rst -------------------------------------------------------------------------------- /docs/source/shapefiles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/docs/source/shapefiles.rst -------------------------------------------------------------------------------- /docs/source/test.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/docs/source/test.rst -------------------------------------------------------------------------------- /docs/source/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/docs/source/usage.rst -------------------------------------------------------------------------------- /pycoast/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/__init__.py -------------------------------------------------------------------------------- /pycoast/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/conftest.py -------------------------------------------------------------------------------- /pycoast/cw_agg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/cw_agg.py -------------------------------------------------------------------------------- /pycoast/cw_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/cw_base.py -------------------------------------------------------------------------------- /pycoast/cw_pil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/cw_pil.py -------------------------------------------------------------------------------- /pycoast/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/__init__.py -------------------------------------------------------------------------------- /pycoast/tests/brazil_shapefiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/brazil_shapefiles.png -------------------------------------------------------------------------------- /pycoast/tests/brazil_shapefiles_agg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/brazil_shapefiles_agg.png -------------------------------------------------------------------------------- /pycoast/tests/coasts_and_grid.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/coasts_and_grid.ini -------------------------------------------------------------------------------- /pycoast/tests/coasts_and_grid_agg.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/coasts_and_grid_agg.ini -------------------------------------------------------------------------------- /pycoast/tests/contours_europe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/contours_europe.png -------------------------------------------------------------------------------- /pycoast/tests/contours_europe_agg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/contours_europe_agg.png -------------------------------------------------------------------------------- /pycoast/tests/contours_europe_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/contours_europe_alpha.png -------------------------------------------------------------------------------- /pycoast/tests/contours_geos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/contours_geos.png -------------------------------------------------------------------------------- /pycoast/tests/contours_geos_agg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/contours_geos_agg.png -------------------------------------------------------------------------------- /pycoast/tests/dateline_boundary_cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/dateline_boundary_cross.png -------------------------------------------------------------------------------- /pycoast/tests/dateline_cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/dateline_cross.png -------------------------------------------------------------------------------- /pycoast/tests/eastern_shapes_agg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/eastern_shapes_agg.png -------------------------------------------------------------------------------- /pycoast/tests/eastern_shapes_pil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/eastern_shapes_pil.png -------------------------------------------------------------------------------- /pycoast/tests/grid_europe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/grid_europe.png -------------------------------------------------------------------------------- /pycoast/tests/grid_europe_agg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/grid_europe_agg.png -------------------------------------------------------------------------------- /pycoast/tests/grid_europe_agg_txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/grid_europe_agg_txt.png -------------------------------------------------------------------------------- /pycoast/tests/grid_from_dict_agg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/grid_from_dict_agg.png -------------------------------------------------------------------------------- /pycoast/tests/grid_from_dict_pil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/grid_from_dict_pil.png -------------------------------------------------------------------------------- /pycoast/tests/grid_geos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/grid_geos.png -------------------------------------------------------------------------------- /pycoast/tests/grid_geos_agg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/grid_geos_agg.png -------------------------------------------------------------------------------- /pycoast/tests/grid_germ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/grid_germ.png -------------------------------------------------------------------------------- /pycoast/tests/grid_nh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/grid_nh.png -------------------------------------------------------------------------------- /pycoast/tests/grid_nh_agg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/grid_nh_agg.png -------------------------------------------------------------------------------- /pycoast/tests/grid_nh_cfg_agg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/grid_nh_cfg_agg.png -------------------------------------------------------------------------------- /pycoast/tests/lonlat_boundary_cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/lonlat_boundary_cross.png -------------------------------------------------------------------------------- /pycoast/tests/nh_cities_agg.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/nh_cities_agg.ini -------------------------------------------------------------------------------- /pycoast/tests/nh_cities_agg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/nh_cities_agg.png -------------------------------------------------------------------------------- /pycoast/tests/nh_cities_from_dict_agg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/nh_cities_from_dict_agg.png -------------------------------------------------------------------------------- /pycoast/tests/nh_cities_from_dict_pil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/nh_cities_from_dict_pil.png -------------------------------------------------------------------------------- /pycoast/tests/nh_cities_pil.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/nh_cities_pil.ini -------------------------------------------------------------------------------- /pycoast/tests/nh_cities_pil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/nh_cities_pil.png -------------------------------------------------------------------------------- /pycoast/tests/nh_one_shapefile.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/nh_one_shapefile.ini -------------------------------------------------------------------------------- /pycoast/tests/nh_points_agg.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/nh_points_agg.ini -------------------------------------------------------------------------------- /pycoast/tests/nh_points_agg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/nh_points_agg.png -------------------------------------------------------------------------------- /pycoast/tests/nh_points_cfg_pil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/nh_points_cfg_pil.png -------------------------------------------------------------------------------- /pycoast/tests/nh_points_pil.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/nh_points_pil.ini -------------------------------------------------------------------------------- /pycoast/tests/nh_points_pil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/nh_points_pil.png -------------------------------------------------------------------------------- /pycoast/tests/nh_polygons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/nh_polygons.png -------------------------------------------------------------------------------- /pycoast/tests/nh_polygons_agg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/nh_polygons_agg.png -------------------------------------------------------------------------------- /pycoast/tests/no_h_scratch_agg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/no_h_scratch_agg.png -------------------------------------------------------------------------------- /pycoast/tests/no_h_scratch_pil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/no_h_scratch_pil.png -------------------------------------------------------------------------------- /pycoast/tests/no_v_scratch_agg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/no_v_scratch_agg.png -------------------------------------------------------------------------------- /pycoast/tests/no_v_scratch_pil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/no_v_scratch_pil.png -------------------------------------------------------------------------------- /pycoast/tests/one_shapefile_from_cfg_agg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/one_shapefile_from_cfg_agg.png -------------------------------------------------------------------------------- /pycoast/tests/one_shapefile_from_cfg_pil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/one_shapefile_from_cfg_pil.png -------------------------------------------------------------------------------- /pycoast/tests/test_data/DejaVuSerif.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/DejaVuSerif.ttf -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/CITIES/cities.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/CITIES/cities.txt -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/GSHHS_shp/l/GSHHS_l_L1.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/GSHHS_shp/l/GSHHS_l_L1.dbf -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/GSHHS_shp/l/GSHHS_l_L1.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/GSHHS_shp/l/GSHHS_l_L1.prj -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/GSHHS_shp/l/GSHHS_l_L1.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/GSHHS_shp/l/GSHHS_l_L1.shp -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/GSHHS_shp/l/GSHHS_l_L1.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/GSHHS_shp/l/GSHHS_l_L1.shx -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/GSHHS_shp/l/GSHHS_l_L2.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/GSHHS_shp/l/GSHHS_l_L2.dbf -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/GSHHS_shp/l/GSHHS_l_L2.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/GSHHS_shp/l/GSHHS_l_L2.prj -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/GSHHS_shp/l/GSHHS_l_L2.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/GSHHS_shp/l/GSHHS_l_L2.shp -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/GSHHS_shp/l/GSHHS_l_L2.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/GSHHS_shp/l/GSHHS_l_L2.shx -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/GSHHS_shp/l/GSHHS_l_L3.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/GSHHS_shp/l/GSHHS_l_L3.dbf -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/GSHHS_shp/l/GSHHS_l_L3.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/GSHHS_shp/l/GSHHS_l_L3.prj -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/GSHHS_shp/l/GSHHS_l_L3.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/GSHHS_shp/l/GSHHS_l_L3.shp -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/GSHHS_shp/l/GSHHS_l_L3.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/GSHHS_shp/l/GSHHS_l_L3.shx -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/GSHHS_shp/l/GSHHS_l_L4.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/GSHHS_shp/l/GSHHS_l_L4.dbf -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/GSHHS_shp/l/GSHHS_l_L4.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/GSHHS_shp/l/GSHHS_l_L4.prj -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/GSHHS_shp/l/GSHHS_l_L4.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/GSHHS_shp/l/GSHHS_l_L4.shp -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/GSHHS_shp/l/GSHHS_l_L4.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/GSHHS_shp/l/GSHHS_l_L4.shx -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_border_c_L1.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_border_c_L1.dbf -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_border_c_L1.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_border_c_L1.prj -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_border_c_L1.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_border_c_L1.shp -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_border_c_L1.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_border_c_L1.shx -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_border_c_L2.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_border_c_L2.dbf -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_border_c_L2.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_border_c_L2.prj -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_border_c_L2.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_border_c_L2.shp -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_border_c_L2.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_border_c_L2.shx -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_border_c_L3.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_border_c_L3.dbf -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_border_c_L3.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_border_c_L3.prj -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_border_c_L3.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_border_c_L3.shp -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_border_c_L3.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_border_c_L3.shx -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L01.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L01.dbf -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L01.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L01.prj -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L01.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L01.shp -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L01.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L01.shx -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L02.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L02.dbf -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L02.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L02.prj -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L02.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L02.shp -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L02.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L02.shx -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L03.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L03.dbf -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L03.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L03.prj -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L03.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L03.shp -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L03.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L03.shx -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L04.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L04.dbf -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L04.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L04.prj -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L04.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L04.shp -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L04.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L04.shx -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L05.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L05.dbf -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L05.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L05.prj -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L05.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L05.shp -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L05.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L05.shx -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L06.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L06.dbf -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L06.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L06.prj -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L06.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L06.shp -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L06.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L06.shx -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L07.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L07.dbf -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L07.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L07.prj -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L07.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L07.shp -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L07.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L07.shx -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L08.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L08.dbf -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L08.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L08.prj -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L08.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L08.shp -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L08.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L08.shx -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L09.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L09.dbf -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L09.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L09.prj -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L09.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L09.shp -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L09.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L09.shx -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L1.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L1.dbf -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L1.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L1.shp -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L1.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L1.shx -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L10.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L10.dbf -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L10.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L10.prj -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L10.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L10.shp -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L10.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L10.shx -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L11.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L11.dbf -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L11.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L11.prj -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L11.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L11.shp -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L11.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L11.shx -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L2.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L2.dbf -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L2.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L2.shp -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L2.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L2.shx -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L3.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L3.dbf -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L3.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L3.shp -------------------------------------------------------------------------------- /pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L3.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/gshhs/WDBII_shp/c/WDBII_river_c_L3.shx -------------------------------------------------------------------------------- /pycoast/tests/test_data/shapes/Metareas.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/shapes/Metareas.dbf -------------------------------------------------------------------------------- /pycoast/tests/test_data/shapes/Metareas.mxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/shapes/Metareas.mxd -------------------------------------------------------------------------------- /pycoast/tests/test_data/shapes/Metareas.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/shapes/Metareas.prj -------------------------------------------------------------------------------- /pycoast/tests/test_data/shapes/Metareas.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/shapes/Metareas.sbn -------------------------------------------------------------------------------- /pycoast/tests/test_data/shapes/Metareas.sbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/shapes/Metareas.sbx -------------------------------------------------------------------------------- /pycoast/tests/test_data/shapes/Metareas.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/shapes/Metareas.shp -------------------------------------------------------------------------------- /pycoast/tests/test_data/shapes/Metareas.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/shapes/Metareas.shx -------------------------------------------------------------------------------- /pycoast/tests/test_data/shapes/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/shapes/README -------------------------------------------------------------------------------- /pycoast/tests/test_data/shapes/divisao_politica/BRASIL.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/shapes/divisao_politica/BRASIL.dbf -------------------------------------------------------------------------------- /pycoast/tests/test_data/shapes/divisao_politica/BRASIL.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/shapes/divisao_politica/BRASIL.shp -------------------------------------------------------------------------------- /pycoast/tests/test_data/shapes/divisao_politica/BRASIL.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/shapes/divisao_politica/BRASIL.shx -------------------------------------------------------------------------------- /pycoast/tests/test_data/shapes/divisao_politica/BR_Capitais.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/shapes/divisao_politica/BR_Capitais.dbf -------------------------------------------------------------------------------- /pycoast/tests/test_data/shapes/divisao_politica/BR_Capitais.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/shapes/divisao_politica/BR_Capitais.shp -------------------------------------------------------------------------------- /pycoast/tests/test_data/shapes/divisao_politica/BR_Capitais.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/shapes/divisao_politica/BR_Capitais.shx -------------------------------------------------------------------------------- /pycoast/tests/test_data/shapes/divisao_politica/BR_Contorno.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/shapes/divisao_politica/BR_Contorno.dbf -------------------------------------------------------------------------------- /pycoast/tests/test_data/shapes/divisao_politica/BR_Contorno.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/shapes/divisao_politica/BR_Contorno.shp -------------------------------------------------------------------------------- /pycoast/tests/test_data/shapes/divisao_politica/BR_Contorno.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/shapes/divisao_politica/BR_Contorno.shx -------------------------------------------------------------------------------- /pycoast/tests/test_data/shapes/divisao_politica/BR_Regioes.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/shapes/divisao_politica/BR_Regioes.dbf -------------------------------------------------------------------------------- /pycoast/tests/test_data/shapes/divisao_politica/BR_Regioes.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/shapes/divisao_politica/BR_Regioes.shp -------------------------------------------------------------------------------- /pycoast/tests/test_data/shapes/divisao_politica/BR_Regioes.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/shapes/divisao_politica/BR_Regioes.shx -------------------------------------------------------------------------------- /pycoast/tests/test_data/shapes/divisao_politica/divisao_politica.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/shapes/divisao_politica/divisao_politica.txt -------------------------------------------------------------------------------- /pycoast/tests/test_data/shapes/divisao_politica/leia.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/shapes/divisao_politica/leia.txt -------------------------------------------------------------------------------- /pycoast/tests/test_data/shapes/metarea5.gsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/shapes/metarea5.gsf -------------------------------------------------------------------------------- /pycoast/tests/test_data/shapes/metarea5.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/shapes/metarea5.tbl -------------------------------------------------------------------------------- /pycoast/tests/test_data/shapes/metarea5.tbl.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/shapes/metarea5.tbl.info -------------------------------------------------------------------------------- /pycoast/tests/test_data/test_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_data/test_config.ini -------------------------------------------------------------------------------- /pycoast/tests/test_pycoast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/test_pycoast.py -------------------------------------------------------------------------------- /pycoast/tests/two_shapefiles_agg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/two_shapefiles_agg.png -------------------------------------------------------------------------------- /pycoast/tests/two_shapefiles_pil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/two_shapefiles_pil.png -------------------------------------------------------------------------------- /pycoast/tests/western_shapes_agg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/western_shapes_agg.png -------------------------------------------------------------------------------- /pycoast/tests/western_shapes_pil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/tests/western_shapes_pil.png -------------------------------------------------------------------------------- /pycoast/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pycoast/version.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/countries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/scripts/countries.json -------------------------------------------------------------------------------- /scripts/create_contributor_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/scripts/create_contributor_map.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/setup.py -------------------------------------------------------------------------------- /versioneer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/pycoast/HEAD/versioneer.py --------------------------------------------------------------------------------