• Stars
    star
    224
  • Rank 177,792 (Top 4 %)
  • Language
    C++
  • License
    Other
  • Created over 3 years ago
  • Updated about 2 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

The Australian Government, through Positioning Australia (part of Geoscience Australia), is funding the design, development and operational service of a Global Navigation Satellite System (GNSS) position correction system - the Ginan service and toolkit. The application of the Ginan correction service by a GNSS device has the potential to increase positioning accuracy from meters to centimetres across Australia. The suite of software systems in this repository (the Ginan toolkit) will be used to create the service. It is available now under an open source licence. Ginan will give individuals and organisations no-cost access to the Ginan software and service as a public good.

gn_logo

Ginan: Software toolkit and service

: Note - this file is executable.
: You can run it by saving the raw markdown to disk, then chmod +x README.md, then ./README.md
: It will execute all of the code blocks that finish with the :<<'```executable' tag.
: This script will install all dependencies, and clone the Ginan repo into the current directory (if required) and build the Ginan toolkit.
: To check out the stable v1 branch from Github, append "-b ginan-v1" to the clone command below to get the v1 branch source.

Ginan v2.0.1-beta release

Overview

Ginan is a processing package being developed to processes GNSS observations for geodetic applications.

We currently support the processing of:

  • the United States' Global Positioning System (GPS);
  • the European Union's Galileo system (Galileo);
  • the Russian GLONASS system (GLONASS)*;
  • the Chinese Navigation Satellite System (BeiDou)*;
  • the Japanese QZSS develop system (QZSS)*.

We are actively developing Ginan to have the following capabilities and features:

  • Precise Orbit & Clock determination of GNSS satellites (GNSS POD);
  • Precise Point Positioning (PPP) of GNSS stations in network and individual mode;
  • Real-Time corrections for PPP users;
  • Analyse full, single and multi-frequency, multi-GNSS data;
  • Delivering atmospheric products such as ionosphere and troposphere models;
  • Servicing a wide range of users and receiver types;
  • Delivering outputs usable and accessible by non-experts;
  • Providing both a real-time and off-line processing capability;
  • Delivering both position and integrity information;
  • Routinely produce IGS final, rapid, ultra-rapid and real-time (RT) products;
  • Model Ocean Tide Loading (OTL) displacements.

The software consists of three main components:

  • Network Parameter Estimation Algorithm (PEA)
  • Precise Orbit Determination (POD), and
  • Various scripts for combination and analysis of solutions

Supported Platforms

Ginan is supported on the following platforms

  • Linux: tested on Ubuntu 18.04 and 20.04 and 22.04
  • MacOS: tested on 10.15 (x86)
  • Windows: via docker or WSL on Windows 10 and above

NB If you are using Ubuntu 22.04 and gcc11, you will need to make the the following adjustments (applies to WSL as well):

  • Boost 1.74.0
  • Mongo-c-driver 1.21.2
  • Mongocxx 3.7.0
  • manual adjustment of CMakeLists.txt to reflect new boost version

Using Ginan with Docker

You can quickly download a ready-to-run Ginan environment using docker by running:

docker run -it -v /data:/data gnssanalysis/ginan:v2.0.1-beta bash

This command connects the /data directory on the host (your pc), with the /data directory in the container, to allow file access between the two systems, and opens a command line (bash) for executing commands.

You will need to have docker installed to use this method.

To verify you have the Ginan executables available once at the Ginan command line, run:

pea --help

Dependencies

If instead you wish to build Ginan from source, there are several software dependencies:

  • C/C++ and Fortran compiler. We use and recommend gcc, g++, and gfortran
  • BLAS and LAPACK linear algebra libraries. We use and recommend OpenBlas as this contains both libraries required
  • CMAKE > 3.0
  • YAML > 0.6
  • Boost >= 1.73 (tested on 1.73). On Ubuntu 22.04 which uses gcc-11, you need Boost >= 1.74.0
  • Mongo_cxx >= 3.6.0 (and Mongo_C >= 1.17.1). On Ubuntu 22.04, you should use Mongo_cxx >= 3.6.7 (preferably 3.7.0)
  • Eigen3 > 3.4 (we have used 3.4.0)
  • netCDF4
  • Python3 (tested on Python 3.7)

Installing dependencies with Ubuntu

Update the base operating system and install base utilities gcc, gfortran, git, openssl, openblas etc:

dir=$PWD

sudo apt update

sudo apt upgrade -y

sudo apt install -y git gobjc gobjc++ gfortran libopenblas-dev openssl curl net-tools openssh-server cmake make libssl1.0-dev wget sudo python3 software-properties-common

sudo -H pip3 install wheel pandas boto3 unlzw tdqm scipy gnssanalysis
:<<'```executable'

Ginan requires at least version 9 of both gcc and g++, so make sure to update the gcc/g++ alternatives prior to compilation: (this is not required on Ubuntu 22.04)

sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y

sudo apt update

sudo apt install -y gcc-9 g++-9

sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-9 51

sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-9 51
:<<'```executable'

Building additional dependencies

Depending on the user's installation choice: install PEA-only, POD-only or all software packages, a set of additional dependencies that need to be built may change. Below, we explain building all the additional dependencies:

Note that many make commands here have the option -j 2 applied, this will enable parallel compilation and may speed up installation time. The number of threads can be increased by changing the number, such as -j 8, but be aware that each new thread may require up to 2GB of memory.

First, create a temporary directory structure to make the dependencies in, it can be removed after the installation process is done:

mkdir $dir/tmp
:<<'```executable'

YAML-CPP

We are using the yaml-cpp library to parse the configuration files used to run many of the programs found in this library. Here is an example of how to install the yaml library from source:

cd $dir/tmp

git clone https://github.com/jbeder/yaml-cpp.git

cd yaml-cpp

mkdir cmake-build

cd cmake-build

cmake .. -DCMAKE\_INSTALL\_PREFIX=/usr/local/ -DYAML\_CPP\_BUILD\_TESTS=OFF

sudo make install yaml-cpp -j2

cd $dir/tmp

rm -rf yaml-cpp
:<<'```executable'

Boost (PEA)

PEA relies on a number of the utilities provided by boost, such as their time and logging libraries. NB for compilation on Ubuntu 22.04 and using gcc-11, you need to change this to boost_1_74_0

cd $dir/tmp

wget -c https://boostorg.jfrog.io/artifactory/main/release/1.73.0/source/boost_1_73_0.tar.gz

tar -xf boost_1_73_0.tar.gz

cd boost_1_73_0/

./bootstrap.sh

sudo ./b2 -j2 install

cd $dir/tmp

sudo rm -rf boost_1_73_0 boost_1_73_0.tar.gz
:<<'```executable'

Eigen3 (PEA)

Eigen3 is used for performing matrix calculations in PEA, and has a very nice API.

cd $dir/tmp

git clone https://gitlab.com/libeigen/eigen.git

cd eigen

git checkout 3.4.0

mkdir cmake-build

cd cmake-build

cmake ..

sudo make -j2 install

cd $dir/tmp

rm -rf eigen
:<<'```executable'

Mongo_cxx_driver (PEA)

Needed for json formatting and other self-descriptive markup.

cd $dir/tmp

# for Ubuntu 22.04 changre this to 1.21.2

wget https://github.com/mongodb/mongo-c-driver/releases/download/1.17.1/mongo-c-driver-1.17.1.tar.gz

tar -xf mongo-c-driver-1.17.1.tar.gz

cd mongo-c-driver-1.17.1/

mkdir cmake-build

cd cmake-build/

cmake -DENABLE_AUTOMATIC_INIT_AND_CLEANUP=OFF -DENABLE_EXAMPLES=OFF ../

cmake --build . -- -j 2

sudo cmake --build . --target install -- -j 2

cd $dir/tmp

# for Ubuntu 22.04 change this to 3.7.0

curl -OL https://github.com/mongodb/mongo-cxx-driver/releases/download/r3.6.0/mongo-cxx-driver-r3.6.0.tar.gz

tar -xf mongo-cxx-driver-r3.6.0.tar.gz

cd mongo-cxx-driver-r3.6.0/build

cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local -DENABLE_EXAMPLES=OFF ../

sudo cmake --build . --target EP_mnmlstc_core -- -j 2

cmake --build . -- -j 2

sudo cmake --build . --target install

cd $dir/tmp

sudo rm -rf mongo-c-driver-1.17.1  mongo-c-driver-1.17.1.tar.gz  mongo-cxx-driver-r3.6.0  mongo-cxx-driver-r3.6.0.tar.gz
:<<'```executable'

MongoDB (PEA, optional)

Using the mongo database is optional, but is needed for use of the realtime plotting and statistics available through the GinanEDA

Prepare access to repositories and download and install mongo:

cd $dir/tmp

wget -qO - https://www.mongodb.org/static/pgp/server-4.4.asc | sudo apt-key add -

echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/4.4 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.4.list

echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu bionic/mongodb-org/4.4 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.4.list

sudo apt update

sudo apt install -y mongodb-org

To start MongoDB service:

sudo systemctl start mongod

sudo systemctl status mongod

mongod

To autostart MongoDB on system startup:

sudo systemctl enable mongod.service

netcdf4 (OTL package)

sudo apt -y install libnetcdf-dev libnetcdf-c++4-dev
:<<'```executable'

Install gnaaanalysis python module

sudo pip install gnssanalysis
:<<'```executable'


## Download

You can download Ginan source from github using git clone:


```executable
if [ ! -d "../ginan" -o ! -f CHANGELOG.md ]
then
cd $dir


git clone https://github.com/GeoscienceAustralia/ginan.git

cd ginan
else
echo "already in a checkout directory, no need to download again"
fi
:<<'```executable'

Then download all of the example data using the python script provided (requires gnssanalysis):

python3 scripts/download_example_input_data.py
:<<'```executable'

Directory Structure

Upon installation, thie ginan directory should have the following structure:

ginan/
β”œβ”€β”€ README.md           ! General README information
β”œβ”€β”€ LICENSE.md          ! Software License information
β”œβ”€β”€ ChangeLOG.md        ! Release Chnage history
β”œβ”€β”€ aws/                ! Amazon Web Services config
β”œβ”€β”€ bin/                ! Binary executables directory*
β”œβ”€β”€ Docs/               ! Documentation directory
β”œβ”€β”€ inputData/          ! Input data for examples **
β”‚   β”œβ”€β”€ data/           ! example dataset (rinex files)**
β”‚   └── products/       ! example products and aux files**
β”‚
β”œβ”€β”€ exampleConfigs      ! Example configuration files
β”‚   β”œβ”€β”€ Ex02            ! 
β”‚   β”œβ”€β”€ Ex41            ! 
β”‚   β”œβ”€β”€ Ex42            ! 
β”‚   └── Ex48            ! 
β”‚
β”œβ”€β”€ lib/                ! Compiled objectlibrary directory*
β”œβ”€β”€ scripts/            ! Auxillary Python and Shell scripts and libraries
└── src/                ! Source code directory
    β”œβ”€β”€ cpp/            ! Ginan source code
    β”œβ”€β”€ cmake/   
    β”œβ”€β”€ doc_templates/
    β”œβ”€β”€ build/          ! Cmake build directory*
    └── CMakeLists.txt

*created during installation process

**created by download_example_input_data.py script


Build

Prepare a directory to build in - it's better practice to keep this separated from the source code. From the Ginan git root directory:

mkdir -p src/build

cd src/build
:<<'```executable'

Run cmake to find the build dependencies and create the make file.

By default you will compile an optimised version, typically this version will run 3 times faster but if you run into compile problems depending on your system, add the -DOPTIMISATION=FALSE flag:

cmake ../
:<<'```executable'

To build every package simply run make or make -jX , where X is a number of parallel threads you want to use for the compilation:

make -j2
:<<'```executable'

Alternatively, to build only a specific package (e.g. PEA), run as below:

make pea -j2

This should create executables in the bin directory of Ginan.

Check to see if you can execute the PEA from the exampleConfigs directory

cd ../../exampleConfigs

../bin/pea --help
:<<'```executable'

and you should see something similar to:

PEA starting... (doxyjen release-1.4.1-beta-436-g26247195 from Thu Jul 21 12:24:55 2022)
Options:
  -h [ --help ]                    Help
  -q [ --quiet ]                   Less output
  -v [ --verbose ]                 More output
  -V [ --very-verbose ]            Much more output
           .
           .
           .
  --input_persistance              Begin with previously stored filter and 
                                   navigation states
  --output_persistance             Store filter and navigation states for 
                                   restarting
PEA finished

Documentation

Ginan documentation consists of two parts: these documents, and separate doxygen-generated documentation that shows the actual code infrastructure. It can be found here, or generated manually as below.

Doxygen

The Doxygen documentation for Ginan requires doxygen and graphviz. If not already installed, type as follows:

sudo apt -y install doxygen graphviz
:<<'```executable'

On success, proceed to the build directory and call make with docs target:

cd ../src/build

cmake ../

make docs
:<<'```executable'

The documentation can then be found at Docs/codeDocs/index.html.

Note that documentation is also generated automatically if make is called without arguments and doxygen and graphviz dependencies are satisfied.


Ready!

Congratulations! You are now ready to trial the examples of PEA and POD from the exampleConfigs directory. See Ginan's manual for detailed explanation of each example. Note that examples have relative paths to files in them and rely on the presence of products, data and solutions directories inside the inputData directory. Make sure you've run download_example_input_data.py from the Download step of this instruction.

The paths are relative to the exampleConfigs directory and hence all the examples must be run from the exampleConfigs directory.

NB Examples may be configured to use mongoDB. If you have not installed it, please set mongo: enable to false in the pea config files

To run the first example of the PEA:

cd ../exampleConfigs

../bin/pea --config ex41_gin2_pp_user.yaml

This should create ex41 directory with ex11-ALIC201919900.TRACE and ex1120624.snx output files. You can remove the need for path specification to the executable by adding Ginan's bin directory to ~/.bachrc file:

PATH="path_to_ginan_bin:$PATH"

Python Installation for Plotting, Processing, etc.

Lastly, to run many of the included scripts for fast parsing of .trace/.snx files, plotting of results, automatic running of the PEA based on input date/times and stations, etc. then a number of python dependencies are needed.

The file scripts/conda_gn37.yaml has a list of the necessary python dependencies. The best way to take advantage of this is to install the Miniconda virtual environment manager. This will allow you to pass the .yaml file into the conda command and automatically set up a new python environment.

Install Miniconda

To install Miniconda, download and execute the Miniconda shell file:

wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash Miniconda3-latest-Linux-x86_64.sh

And follow the on-screen instructions (choosing all defaults is fine).

Create virtual environment

After installation you can create the gn37 python environment using a prepared recipe. First open a new terminal session and enter:

conda env create -f <dir_to_ginan>/scripts/conda_gn37.yaml

You have now created the virtual python environment gn37 with all necessary dependencies. Anytime you wish you run python scripts, ensure you are in the virtual environment by activating:

conda activate gn37

And then run your desired script from the scripts directory.

Auto Download Script

The auto download script available in the scripts directory is a python tool that will automatically download various inputs needed to run Ginan

The detailed feautures of each option can be found by changing to the scripts directory and running

python3 auto_download_PPP.py --help

However, some of the features include:

  • the ability to download RINEX files from Geoscience Australia's gnss-data data repository,
  • the ability to choose between final, rapid and ultra-rapid file types
  • the ability to choose the analysis centre (apart from SNX coordinate and BIA bias files which come from IGS and COD, respectively)

To get started try the following examples:

Examples to run:

Download necessary real-time inputs:

python3 auto_download_PPP.py --target-dir="/data/tmp-dwn" --preset="real-time"

Download inputs for post-processed runs:

using most defaults:

python3 auto_download_PPP.py --target-dir="/data/tmp-dwn" --preset="igs-station" --station-list="ALIC,DARW" --start-datetime="2023-02-24_00:00:00" --end-datetime="2023-02-26_00:00:00"

choosing the solution type (ultra-rapid) and analysis centre (ESA):

python3 auto_download_PPP.py --target-dir="/data/tmp-dwn" --preset="igs-station" --station-list="ALIC,DARW" --start-datetime="2023-02-24_00:00:00" --end-datetime="2023-02-26_00:00:00" --solution-type="ULT" --analysis-center="ESA"

Acknowledgements:

We have used routines obtained from RTKLIB, released under a BSD-2 license, these routines have been preserved with minor modifications in the folder cpp/src/rtklib. The original source code from RTKLib can be obtained from https://github.com/tomojitakasu/RTKLIB.

We have used routines obtained from Better Enums, released under the BSD-2 license, these routines have been preserved in the folder cpp/src/3rdparty The original source code from Better Enums can be obtained from http://github.com/aantron/better-enums.

We have used routines obtained from EGM96, released under the zlib license, these routines have been preserved in the folder cpp/src/egm96 The original source code from EGM96 can be obtained from https://github.com/emericg/EGM96.

echo 'We have used this gist to make this readme executable https://gist.github.com/pjeby/c137ace4d91e61e8f1f80e92d84e8b70'
exit $?

More Repositories

1

dea-notebooks

Repository for Digital Earth Australia Jupyter Notebooks: tools and workflows for geospatial analysis with Open Data Cube and Xarray
Jupyter Notebook
446
star
2

anuga_core

AnuGA for the simulation of the shallow water equation
Python
193
star
3

PyRate

A Python tool for estimating velocity and time-series from Interferometric Synthetic Aperture Radar (InSAR) data.
Python
182
star
4

GeodePy

A toolkit for Geodesy and Surveying in Python
Python
92
star
5

tcrm

A statistical-parametric model for assessing wind hazard from tropical cyclones
Python
81
star
6

earthsci

An Eclipse RCP platform for earth science visualisation, built on the NASA World Wind Java SDK.
Java
62
star
7

hiperseis

High Performance Seismologic Data and Metadata Processing System
Jupyter Notebook
57
star
8

dea-coastlines

Extracting tidally-constrained annual shorelines and robust rates of coastal change from freely available Earth observation data at continental scale
Jupyter Notebook
52
star
9

ga-worldwind-suite

A collection of tools created by the Geoscience Australia (GA) Movies and 3D Visualisation (M3DV) team. The tools are built around the NASA World Wind Java SDK, an open-source virtual globe toolkit.
Java
40
star
10

HiQGA.jl

High Quality Geophysical Analysis provides a general purpose Bayesian and deterministic inversion framework for various geophysical methods and spatially distributed / timeseries data
Julia
38
star
11

ga-aem

Modelling and Inversion of Airborne Electromagnetic (AEM) Data in 1D
C++
32
star
12

digitalearthau

Code and tools for Digital Earth Australia (a deployment of Open Data Cube)
Python
31
star
13

wagl

Python library for standardising satellite imagery into an Analysis Ready Data (ARD) form
Python
30
star
14

uncover-ml

Machine Learning system for Geoscience Australia uncover project
Jupyter Notebook
30
star
15

agdc

Repository for Australian Geoscience Data Cube (AGDC) code
Python
29
star
16

dea-airflow

Python
27
star
17

geophys_utils

A collection of utilities for discovering, accessing and using geophysics data via web services or from netCDF files
Python
23
star
18

rjmcmcmt

Reversible jump Markov Chain Monte Carlo inversion of magnetotelluric data
C++
22
star
19

ptha

Probabilistic Tsunami Hazard Assessment from major earthquake source-zones
R
19
star
20

sun-glint-correction

Python
18
star
21

gnssanalysis

basic python module for gnss analysis
Python
18
star
22

CoRAL

Corner Reflector Analysis Library
Jupyter Notebook
17
star
23

dea-config

Config files for dea services
Python
16
star
24

dea-cogger

Convert NetCDFs to Cloud Optimized GeoTIFFs
Python
15
star
25

dea-sandbox

Digital Earth Australia Sandbox config and planning
Python
13
star
26

aws-dms-example

Creates an example AWS DMS for replicating an (on-prem) Oracle database to a cloud-based Postgres database
HCL
13
star
27

wofs

Water Observation From Space
Jupyter Notebook
12
star
28

hazimp

Hazard impact assessment tool
Python
12
star
29

fc

Fractional Cover
Python
12
star
30

sira

Systemic Infrastructure Resilience Analysis
Python
11
star
31

burn-mapping

Landsat-Based Burn Extent and Severity Mapping
Jupyter Notebook
11
star
32

dea-waterbodies

DEA Waterbodies is a product that maps and monitors open waterbodies across Australia. Once a polygon set has been generated corresponding to open waterbodies, each waterbody is tracked over time to record the change in wet surface area over time.
Jupyter Notebook
11
star
33

Nickel-Mineral-Potential-Modelling

A collection of ESRI ArcGIS tools to perform GIS-based mineral (Nickel) prospectivity analysis.
Python
10
star
34

PF3D

PF3D is a Python module that facilitates volcanic ash dispersal modelling using the FALL3D package
Python
10
star
35

dea-intertidal

Generating intertidal elevation, exposure and extents from satellite earth observation data and ocean tide modelling
Jupyter Notebook
10
star
36

NSHA2018

eq_hazard_tools for Regional Development Section - Community Safety Branch
Python
10
star
37

AusPIX_DGGS

Geoscience Australia rHealPIX version of DGGS
Python
9
star
38

Wind_multipliers

Wind multipliers
Python
8
star
39

dea-knowledge-hub

DEA Knowledge Hub
JavaScript
8
star
40

bluecap

Python
8
star
41

anuga-viewer

Viewer for ANUGA sww files
C++
8
star
42

geochemical-levelling

Python
8
star
43

gnss-mqtt

7
star
44

ga-wphase

W-Phase inversion software used at the National Earthquake Alerts Centre
Python
7
star
45

Geodesy-Web-Services

Java
7
star
46

cloudsploit-lambda

JavaScript
7
star
47

eo-tools

Collection of Earth Observation Tools
Python
6
star
48

interactive-maps

JavaScript
6
star
49

gdf

General Data Framework
Python
6
star
50

stormwavecluster

project on storm wave clustering
R
6
star
51

geo-web-toolkit

Javascript web mapping toolkit built on AngularJS/Bootstrap
JavaScript
6
star
52

mineral-stats-toolkit

Python
6
star
53

dea-vectoriser

Raster to Vector at scale
Python
6
star
54

ML-preprocessing

2D Wavelet decomposition/reconstruction for raster data
Python
6
star
55

dea-ecr-sync

GeoscienceAustralia Dockerhub to ECR Sync Lambda
Python
6
star
56

terraform-ecs

Infracode to create ECS cluster in AWS
HCL
6
star
57

BAL

Bushfire Attack Level Toolbox - An ESRI ArcGIS toolbox to calculate severity of exposure to bushfire attack
Python
6
star
58

egeodesy

Nix
5
star
59

gocad-projector

Java utility used to reproject GOCAD objects between different map projections
Java
5
star
60

eqrm

Automatically exported from code.google.com/p/eqrm
OpenEdge ABL
5
star
61

wit_tooling

Wetlands Insight Tool
Python
5
star
62

vaws

VAWS: Vulnerability and Adaptation to Wind Simulation
Python
5
star
63

Geochemistry

Python
5
star
64

dea-conflux

Bulk polygon drills on the Open Data Cube.
Python
5
star
65

ellip-corr

Fortran
4
star
66

tesseract

N-D Labeled DataCubes in Python
Python
4
star
67

dea-orchestration

Python
4
star
68

ISO19115-profile

ISO19115 profile
Python
4
star
69

minpot-toolkit

Tools to facilitate mineral potential analysis, from spatial associations to feature engineering and fully integrated mineral potential mapping.
Python
4
star
70

ga_sar_workflow

InSAR processing workflow used by Geoscience Australia
Python
3
star
71

arcgis_conda_integration

arcgis_conda_integration
Python
3
star
72

pds-tools

PDS Tools
C
3
star
73

astro-code

C
3
star
74

DEA-CalVal-Phase1

Jupyter Notebook
3
star
75

DEA_ABS_collaborations

Jupyter Notebook
3
star
76

BatchHtoV

Python
3
star
77

arr

Australian Rainfall & Runoff publication
XSLT
3
star
78

fetch

Ancillary fetch daemon
Python
3
star
79

aws-openquake

Python (Boto3) script which installs, runs and downloads results from seismic hazard and risk software (OpenQuake Engine) on Amazon Web Services EC2.
Python
3
star
80

aws-cost-splitter

Split detailed billing data by tag
Python
3
star
81

geodesy-qc

GNSS Quality Checking using Anubis in AWS Lambda for Geodesy Archive
Python
3
star
82

tcha

Jupyter Notebook
3
star
83

gda2020

This repository contains all the code necessary for the monthly running of the GDA2020 update process. This includes the post-processing of the APREF time series combination solution, the NGCA processing, and the least-squares adjustment of the national geodetic network.
Python
3
star
84

SWHAQ

Severe Wind Hazard Assessment for Queensland
Jupyter Notebook
2
star
85

flowtools

R
2
star
86

arcgis_pro_addins

ArcGIS Pro Addins
C#
2
star
87

AS4590-codelists

AS4590-codelists
2
star
88

amazonia

MIRRORED FROM BITBUCKET
Python
2
star
89

FSDF

FSDF - Foundation Base Spatial Data - Linked Data - High level models, information, etc
HTML
2
star
90

impact-forecast

Jupyter Notebook
2
star
91

Placenames-Ontology

Codes and other documentation for transformation, querying and managing the Place Names dataset in Linked Data format.
HTML
2
star
92

geosciml.org

HTML
2
star
93

FSDF-Metadata-Tool

FSDF - Metadata Tool. Holds codes and other components for the Metadata tool and associated templates.
Java
2
star
94

link-ont

Repository for the Web Ontology Language (OWL) ontology and documentation for the Location Information Knowledge Platform (http://link.fsdf.org.au/).
HTML
2
star
95

geophys_kml_server

A collection of utilities for discovering, accessing and using geophysics data via web services or from netCDF files
Python
2
star
96

GeodesyMLConverter

Tools for converting between Geodesy XML Site Log and Text Site Log formats
Python
2
star
97

EQIAT

Contains code for analysis of earthquake intensity data
Python
2
star
98

dea-dnsup

Makefile
2
star
99

wistl

WISTL: Wind Impact Simulation on Transmission Lines
Python
2
star
100

ndvi

Python
2
star