Gathering detailed insights and metrics for bom-stat
Gathering detailed insights and metrics for bom-stat
Gathering detailed insights and metrics for bom-stat
Gathering detailed insights and metrics for bom-stat
npm install bom-stat
Typescript
Module System
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
1 Stars
7 Commits
1 Forks
1 Watchers
11 Branches
1 Contributors
Updated on May 16, 2020
Latest Version
1.2.0
Package Id
bom-stat@1.2.0
Unpacked Size
12.84 kB
Size
3.91 kB
File Count
5
NPM Version
6.13.4
Node Version
12.16.1
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
This is a dead simple api to fetch a range of statistics, recent weather observations and climate data from the Australian Data Archive for Meteorology, a database which holds weather observations dating back to the mid 1800s.
It provide same functionality of Climate Data Online (CDO).
Provide station number and it will return all the historical data, rainfall, minimum, or maximum temperature.
npm install bom-scraper --save
const { getHistoricalData } = require('bom-stat')
const params = {
station: '086338',
type: 'monthly',
about: 'rainfall'
}
getHistoricalData(params, function (err, data) {
console.log(data)
})
[
{
station: '086338', // Station Number
year: '2013',
data: {
annual: '374.4',
months: [64.4, 54.2, ...] // 12 elements, each represents a month, Jan, Feb, ...
}
},
...
]
All the params are similar to the inputs in the Climate Data Online system.
A unique 6-digits number represent a station. You could get this by lat/lon according to the Observations List from BOM.
The type of data.
The type of data.
Only use for daily data. Set it to null for all years of data.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no SAST tool detected
Details
Reason
Found 0/7 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
license file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
29 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More