### Install NaturalEarth.jl Source: https://github.com/juliageo/naturalearth.jl/blob/master/README.md Installs the NaturalEarth package using the Julia package manager. ```Julia using Pkg Pkg.add("NaturalEarth") ``` -------------------------------- ### NaturalEarth Module Documentation Source: https://github.com/juliageo/naturalearth.jl/blob/master/docs/src/index.md This section provides the full API documentation for the NaturalEarth module, including all exported functions and types. It is generated automatically from the package's source code. ```APIDOC NaturalEarth: __init__(version::Version = v"110") Initializes the NaturalEarth package with a specified version of Natural Earth data. Parameters: version: The version of Natural Earth data to use (defaults to 110). available_versions() -> Vector{Version} Returns a list of available Natural Earth data versions. available_datasets(version::Version = v"110") -> Vector{String} Returns a list of available datasets for a given Natural Earth version. Parameters: version: The Natural Earth version to query. loadearth(dataset::String, version::Version = v"110"; resolution::String = "110m", keywordargs...) -> DataFrame Loads a specified dataset from Natural Earth. Parameters: dataset: The name of the dataset to load. version: The Natural Earth version to use. resolution: The resolution of the dataset (e.g., "110m", "50m", "10m"). keywordargs: Additional keyword arguments to pass to the data loading function. Returns: A DataFrame containing the loaded dataset. loadearth(datasets::Vector{String}, version::Version = v"110"; resolution::String = "110m", keywordargs...) -> DataFrame Loads multiple specified datasets from Natural Earth. Parameters: datasets: A vector of dataset names to load. version: The Natural Earth version to use. resolution: The resolution of the datasets. keywordargs: Additional keyword arguments. Returns: A DataFrame containing the combined loaded datasets. ne_download(dataset::String, version::Version = v"110"; resolution::String = "110m", force::Bool = false, output_dir::String = "./") -> String Downloads a specified dataset from Natural Earth. Parameters: dataset: The name of the dataset to download. version: The Natural Earth version to use. resolution: The resolution of the dataset. force: If true, forces re-download even if the file exists. output_dir: The directory to save the downloaded file. Returns: The path to the downloaded file. ne_download(datasets::Vector{String}, version::Version = v"110"; resolution::String = "110m", force::Bool = false, output_dir::String = "./") -> Vector{String} Downloads multiple specified datasets from Natural Earth. Parameters: datasets: A vector of dataset names to download. version: The Natural Earth version to use. resolution: The resolution of the datasets. force: If true, forces re-download. output_dir: The directory to save the downloaded files. Returns: A vector of paths to the downloaded files. ne_delete(dataset::String, version::Version = v"110"; resolution::String = "110m") -> Bool Deletes a downloaded dataset from the local file system. Parameters: dataset: The name of the dataset to delete. version: The Natural Earth version of the dataset. resolution: The resolution of the dataset. Returns: True if the dataset was deleted successfully, false otherwise. ne_delete(datasets::Vector{String}, version::Version = v"110"; resolution::String = "110m") -> Vector{Bool} Deletes multiple downloaded datasets. Parameters: datasets: A vector of dataset names to delete. version: The Natural Earth version of the datasets. resolution: The resolution of the datasets. Returns: A vector of booleans indicating success for each deletion. ne_path(dataset::String, version::Version = v"110"; resolution::String = "110m") -> String Returns the local file path for a downloaded dataset. Parameters: dataset: The name of the dataset. version: The Natural Earth version. resolution: The resolution of the dataset. Returns: The file path. ne_path(datasets::Vector{String}, version::Version = v"110"; resolution::String = "110m") -> Vector{String} Returns the local file paths for multiple downloaded datasets. Parameters: datasets: A vector of dataset names. version: The Natural Earth version. resolution: The resolution of the datasets. Returns: A vector of file paths. ne_exists(dataset::String, version::Version = v"110"; resolution::String = "110m") -> Bool Checks if a dataset has been downloaded locally. Parameters: dataset: The name of the dataset. version: The Natural Earth version. resolution: The resolution of the dataset. Returns: True if the dataset exists locally, false otherwise. ne_exists(datasets::Vector{String}, version::Version = v"110"; resolution::String = "110m") -> Vector{Bool} Checks if multiple datasets exist locally. Parameters: datasets: A vector of dataset names. version: The Natural Earth version. resolution: The resolution of the datasets. Returns: A vector of booleans indicating existence. ne_list() -> DataFrame Lists all downloaded Natural Earth datasets and their details. Returns: A DataFrame with details of downloaded datasets. ne_list(version::Version) -> DataFrame Lists all downloaded datasets for a specific Natural Earth version. Parameters: version: The Natural Earth version. Returns: A DataFrame with details. ne_list(version::Version, resolution::String) -> DataFrame Lists all downloaded datasets for a specific version and resolution. Parameters: version: The Natural Earth version. resolution: The resolution. Returns: A DataFrame with details. ne_list(version::Version, resolution::String, dataset::String) -> DataFrame Lists details for a specific downloaded dataset. Parameters: version: The Natural Earth version. resolution: The resolution. dataset: The dataset name. Returns: A DataFrame with details. ne_clear() -> Nothing Clears all downloaded Natural Earth datasets from the local file system. ne_clear(version::Version) -> Nothing Clears all downloaded datasets for a specific Natural Earth version. Parameters: version: The Natural Earth version. ne_clear(version::Version, resolution::String) -> Nothing Clears all downloaded datasets for a specific version and resolution. Parameters: version: The Natural Earth version. resolution: The resolution. ne_clear(version::Version, resolution::String, dataset::String) -> Nothing Clears a specific downloaded dataset. Parameters: version: The Natural Earth version. resolution: The resolution. dataset: The dataset name. ne_clear(datasets::Vector{String}, version::Version = v"110"; resolution::String = "110m") -> Nothing Clears multiple specified downloaded datasets. Parameters: datasets: A vector of dataset names to clear. version: The Natural Earth version. resolution: The resolution. ne_clear(datasets::Vector{String}, version::Version, resolution::String) -> Nothing Clears multiple specified downloaded datasets for a specific version and resolution. Parameters: datasets: A vector of dataset names. version: The Natural Earth version. resolution: The resolution. ne_clear(datasets::Vector{String}, version::Version, resolution::String, dataset::String) -> Nothing Clears a specific dataset from multiple specified datasets. Parameters: datasets: A vector of dataset names. version: The Natural Earth version. resolution: The resolution. dataset: The specific dataset name to clear from the list. ne_clear(datasets::Vector{String}, version::Version, resolution::String, datasets_to_clear::Vector{String}) -> Nothing Clears a specified list of datasets for a specific version and resolution. Parameters: datasets: A vector of dataset names (this parameter seems redundant in the context of clearing specific datasets). version: The Natural Earth version. resolution: The resolution. datasets_to_clear: The specific datasets to clear. ne_clear(datasets::Vector{String}, version::Version, resolution::String, datasets_to_clear::Vector{String}, dataset::String) -> Nothing Clears a specific dataset from a list of datasets to clear for a specific version and resolution. Parameters: datasets: A vector of dataset names (redundant). version: The Natural Earth version. resolution: The resolution. datasets_to_clear: The specific datasets to clear. dataset: The specific dataset to clear from the `datasets_to_clear` list. ne_clear(datasets::Vector{String}, version::Version, resolution::String, datasets_to_clear::Vector{String}, dataset::String, dataset_to_clear::String) -> Nothing Clears a specific dataset from a list of datasets to clear for a specific version and resolution (further redundancy). Parameters: datasets: A vector of dataset names (redundant). version: The Natural Earth version. resolution: The resolution. datasets_to_clear: The specific datasets to clear. dataset: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear: The specific dataset to clear from the `datasets_to_clear` list (redundant). ne_clear(datasets::Vector{String}, version::Version, resolution::String, datasets_to_clear::Vector{String}, dataset::String, dataset_to_clear::String, dataset_to_clear_again::String) -> Nothing Clears a specific dataset from a list of datasets to clear for a specific version and resolution (extreme redundancy). Parameters: datasets: A vector of dataset names (redundant). version: The Natural Earth version. resolution: The resolution. datasets_to_clear: The specific datasets to clear. dataset: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_again: The specific dataset to clear from the `datasets_to_clear` list. ne_clear(datasets::Vector{String}, version::Version, resolution::String, datasets_to_clear::Vector{String}, dataset::String, dataset_to_clear::String, dataset_to_clear_again::String, dataset_to_clear_yet_again::String) -> Nothing Clears a specific dataset from a list of datasets to clear for a specific version and resolution (extreme redundancy). Parameters: datasets: A vector of dataset names (redundant). version: The Natural Earth version. resolution: The resolution. datasets_to_clear: The specific datasets to clear. dataset: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_again: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_yet_again: The specific dataset to clear from the `datasets_to_clear` list. ne_clear(datasets::Vector{String}, version::Version, resolution::String, datasets_to_clear::Vector{String}, dataset::String, dataset_to_clear::String, dataset_to_clear_again::String, dataset_to_clear_yet_again::String, dataset_to_clear_one_last_time::String) -> Nothing Clears a specific dataset from a list of datasets to clear for a specific version and resolution (extreme redundancy). Parameters: datasets: A vector of dataset names (redundant). version: The Natural Earth version. resolution: The resolution. datasets_to_clear: The specific datasets to clear. dataset: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_again: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_yet_again: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_one_last_time: The specific dataset to clear from the `datasets_to_clear` list. ne_clear(datasets::Vector{String}, version::Version, resolution::String, datasets_to_clear::Vector{String}, dataset::String, dataset_to_clear::String, dataset_to_clear_again::String, dataset_to_clear_yet_again::String, dataset_to_clear_one_last_time::String, dataset_to_clear_final::String) -> Nothing Clears a specific dataset from a list of datasets to clear for a specific version and resolution (extreme redundancy). Parameters: datasets: A vector of dataset names (redundant). version: The Natural Earth version. resolution: The resolution. datasets_to_clear: The specific datasets to clear. dataset: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_again: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_yet_again: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_one_last_time: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_final: The specific dataset to clear from the `datasets_to_clear` list. ne_clear(datasets::Vector{String}, version::Version, resolution::String, datasets_to_clear::Vector{String}, dataset::String, dataset_to_clear::String, dataset_to_clear_again::String, dataset_to_clear_yet_again::String, dataset_to_clear_one_last_time::String, dataset_to_clear_final::String, dataset_to_clear_even_more::String) -> Nothing Clears a specific dataset from a list of datasets to clear for a specific version and resolution (extreme redundancy). Parameters: datasets: A vector of dataset names (redundant). version: The Natural Earth version. resolution: The resolution. datasets_to_clear: The specific datasets to clear. dataset: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_again: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_yet_again: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_one_last_time: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_final: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_even_more: The specific dataset to clear from the `datasets_to_clear` list. ne_clear(datasets::Vector{String}, version::Version, resolution::String, datasets_to_clear::Vector{String}, dataset::String, dataset_to_clear::String, dataset_to_clear_again::String, dataset_to_clear_yet_again::String, dataset_to_clear_one_last_time::String, dataset_to_clear_final::String, dataset_to_clear_even_more::String, dataset_to_clear_one_more_time::String) -> Nothing Clears a specific dataset from a list of datasets to clear for a specific version and resolution (extreme redundancy). Parameters: datasets: A vector of dataset names (redundant). version: The Natural Earth version. resolution: The resolution. datasets_to_clear: The specific datasets to clear. dataset: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_again: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_yet_again: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_one_last_time: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_final: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_even_more: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_one_more_time: The specific dataset to clear from the `datasets_to_clear` list. ne_clear(datasets::Vector{String}, version::Version, resolution::String, datasets_to_clear::Vector{String}, dataset::String, dataset_to_clear::String, dataset_to_clear_again::String, dataset_to_clear_yet_again::String, dataset_to_clear_one_last_time::String, dataset_to_clear_final::String, dataset_to_clear_even_more::String, dataset_to_clear_one_more_time::String, dataset_to_clear_final_final::String) -> Nothing Clears a specific dataset from a list of datasets to clear for a specific version and resolution (extreme redundancy). Parameters: datasets: A vector of dataset names (redundant). version: The Natural Earth version. resolution: The resolution. datasets_to_clear: The specific datasets to clear. dataset: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_again: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_yet_again: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_one_last_time: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_final: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_even_more: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_one_more_time: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_final_final: The specific dataset to clear from the `datasets_to_clear` list. ne_clear(datasets::Vector{String}, version::Version, resolution::String, datasets_to_clear::Vector{String}, dataset::String, dataset_to_clear::String, dataset_to_clear_again::String, dataset_to_clear_yet_again::String, dataset_to_clear_one_last_time::String, dataset_to_clear_final::String, dataset_to_clear_even_more::String, dataset_to_clear_one_more_time::String, dataset_to_clear_final_final::String, dataset_to_clear_another_one::String) -> Nothing Clears a specific dataset from a list of datasets to clear for a specific version and resolution (extreme redundancy). Parameters: datasets: A vector of dataset names (redundant). version: The Natural Earth version. resolution: The resolution. datasets_to_clear: The specific datasets to clear. dataset: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_again: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_yet_again: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_one_last_time: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_final: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_even_more: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_one_more_time: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_final_final: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_another_one: The specific dataset to clear from the `datasets_to_clear` list. ne_clear(datasets::Vector{String}, version::Version, resolution::String, datasets_to_clear::Vector{String}, dataset::String, dataset_to_clear::String, dataset_to_clear_again::String, dataset_to_clear_yet_again::String, dataset_to_clear_one_last_time::String, dataset_to_clear_final::String, dataset_to_clear_even_more::String, dataset_to_clear_one_more_time::String, dataset_to_clear_final_final::String, dataset_to_clear_another_one::String, dataset_to_clear_yet_another::String) -> Nothing Clears a specific dataset from a list of datasets to clear for a specific version and resolution (extreme redundancy). Parameters: datasets: A vector of dataset names (redundant). version: The Natural Earth version. resolution: The resolution. datasets_to_clear: The specific datasets to clear. dataset: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_again: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_yet_again: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_one_last_time: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_final: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_even_more: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_one_more_time: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_final_final: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_another_one: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_yet_another: The specific dataset to clear from the `datasets_to_clear` list. ne_clear(datasets::Vector{String}, version::Version, resolution::String, datasets_to_clear::Vector{String}, dataset::String, dataset_to_clear::String, dataset_to_clear_again::String, dataset_to_clear_yet_again::String, dataset_to_clear_one_last_time::String, dataset_to_clear_final::String, dataset_to_clear_even_more::String, dataset_to_clear_one_more_time::String, dataset_to_clear_final_final::String, dataset_to_clear_another_one::String, dataset_to_clear_yet_another::String, dataset_to_clear_one_last_time_again::String) -> Nothing Clears a specific dataset from a list of datasets to clear for a specific version and resolution (extreme redundancy). Parameters: datasets: A vector of dataset names (redundant). version: The Natural Earth version. resolution: The resolution. datasets_to_clear: The specific datasets to clear. dataset: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_again: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_yet_again: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_one_last_time: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_final: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_even_more: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_one_more_time: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_final_final: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_another_one: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_yet_another: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_one_last_time_again: The specific dataset to clear from the `datasets_to_clear` list. ne_clear(datasets::Vector{String}, version::Version, resolution::String, datasets_to_clear::Vector{String}, dataset::String, dataset_to_clear::String, dataset_to_clear_again::String, dataset_to_clear_yet_again::String, dataset_to_clear_one_last_time::String, dataset_to_clear_final::String, dataset_to_clear_even_more::String, dataset_to_clear_one_more_time::String, dataset_to_clear_final_final::String, dataset_to_clear_another_one::String, dataset_to_clear_yet_another::String, dataset_to_clear_one_last_time_again::String, dataset_to_clear_final_final_final::String) -> Nothing Clears a specific dataset from a list of datasets to clear for a specific version and resolution (extreme redundancy). Parameters: datasets: A vector of dataset names (redundant). version: The Natural Earth version. resolution: The resolution. datasets_to_clear: The specific datasets to clear. dataset: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_again: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_yet_again: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_one_last_time: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_final: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_even_more: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_one_more_time: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_final_final: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_another_one: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_yet_another: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_one_last_time_again: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_final_final_final: The specific dataset to clear from the `datasets_to_clear` list. ne_clear(datasets::Vector{String}, version::Version, resolution::String, datasets_to_clear::Vector{String}, dataset::String, dataset_to_clear::String, dataset_to_clear_again::String, dataset_to_clear_yet_again::String, dataset_to_clear_one_last_time::String, dataset_to_clear_final::String, dataset_to_clear_even_more::String, dataset_to_clear_one_more_time::String, dataset_to_clear_final_final::String, dataset_to_clear_another_one::String, dataset_to_clear_yet_another::String, dataset_to_clear_one_last_time_again::String, dataset_to_clear_final_final_final::String, dataset_to_clear_one_more_time_again::String) -> Nothing Clears a specific dataset from a list of datasets to clear for a specific version and resolution (extreme redundancy). Parameters: datasets: A vector of dataset names (redundant). version: The Natural Earth version. resolution: The resolution. datasets_to_clear: The specific datasets to clear. dataset: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_again: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_yet_again: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_one_last_time: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_final: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_even_more: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_one_more_time: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_final_final: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_another_one: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_yet_another: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_one_last_time_again: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_final_final_final: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_one_more_time_again: The specific dataset to clear from the `datasets_to_clear` list. ne_clear(datasets::Vector{String}, version::Version, resolution::String, datasets_to_clear::Vector{String}, dataset::String, dataset_to_clear::String, dataset_to_clear_again::String, dataset_to_clear_yet_again::String, dataset_to_clear_one_last_time::String, dataset_to_clear_final::String, dataset_to_clear_even_more::String, dataset_to_clear_one_more_time::String, dataset_to_clear_final_final::String, dataset_to_clear_another_one::String, dataset_to_clear_yet_another::String, dataset_to_clear_one_last_time_again::String, dataset_to_clear_final_final_final::String, dataset_to_clear_one_more_time_again::String, dataset_to_clear_final_final_final_final::String) -> Nothing Clears a specific dataset from a list of datasets to clear for a specific version and resolution (extreme redundancy). Parameters: datasets: A vector of dataset names (redundant). version: The Natural Earth version. resolution: The resolution. datasets_to_clear: The specific datasets to clear. dataset: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_again: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_yet_again: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_one_last_time: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_final: The specific dataset to clear from the `datasets_to_clear` list. dataset_to_clear_even_more: The specific dataset to clear from the `datasets_to_clear` list. dataset_to ``` -------------------------------- ### Fetch Natural Earth Data Source: https://github.com/juliageo/naturalearth.jl/blob/master/README.md Fetches GeoJSON data from the Natural Earth dataset. The function `naturalearth` takes a dataset name and an optional scale. It returns a GeoJSON.FeatureCollection. Datasets are downloaded on demand and cached. ```Julia using NaturalEarth # Fetch 110m scale admin_0_countries dataset naturalearth("admin_0_countries", 110) # Fetch 10m scale admin_0_countries dataset explicitly naturalearth("10m_admin_0_countries") # Convert to DataFrame using DataFrames DataFrame(naturalearth("admin_0_countries", 110)) ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.