New Packages
Three new Metatab data packages are now in the data repository
We have three new data packages in the data repository, under the 'water-project' tag. See them all at:
https://data.sandiegodata.org/dataset?tags=water-project
To use these packages, click into the resource for the .csv or .zip package file, and you'l' see the resource documentation includes some python code. For instance, for the CSV package for the Beachwatch data you'll see:
import metapack as mp
pkg = mp.open_package('http://library.metatab.org/ceden.waterboards.ca.gov-beachwatch-sandiego-1.csv')
Then, you can use the pkg
to get a Pandas dataframe:
df = pkg.read_csv()
Later today or tomorrow I'll be posting some examples and challenges using these data packages.
Comments