Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

Gravity data for doing the homework

The australia_gravity.csv file contains a set of gravity observations over Alice Spings, Australia. The data points where obtained through a block-reduction of a large compilation of gravity observations over Australia (Wynne, 2018; Uieda, 2021). The original dataset is available in 10.6084/m9.figshare.13643837 under a Creative Commons Attribution 4.0 International license. while the instructions to download and load it using Pooch are in https://github.com/compgeolab/australia-gravity-data.

The _prepare_australia_data.ipynb notebook downloads the original dataset, crops it to the Alice Springs region and block reduce the data points using blocks of 5 arc minutes. It finally stores the resulting observations in the australia_gravity.csv file.

How to download

You can easily download and load this data file using Pooch and Pandas:

import pooch
import pandas as pd

gravity_path = pooch.retrieve(
    url="https://raw.githubusercontent.com/santisoler/coco-fatiando-tutorial/homework/homework_data/australia_gravity.csv",
    known_hash="sha256:b0f44e5b523a3ca034d07820022c23e5b65875956a88e6eda4cd69f9b66da9fc",
)

data = pd.read_csv(gravity_path)

Citations