Skip to content
View james-roden's full-sized avatar
🏴󠁧󠁢󠁷󠁬󠁳󠁿
🏴󠁧󠁢󠁷󠁬󠁳󠁿
Block or Report

Block or report james-roden

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. arcgis-ghsz arcgis-ghsz Public

    Calculates the base of the Gas Hydrate Stability Zone given a sea floor raster using Joides formula.

    Python 4

  2. arcgis-swath-profile arcgis-swath-profile Public

    ArcGIS tool for creating swath profiles

    Python 2

  3. arcgis-geodepressions arcgis-geodepressions Public

    An ArcGIS toolbox to semi-automatically identify and analyse geo-depressions in a bathymetric grid.

    Python 5 1

  4. google-foobar google-foobar Public

    My puzzle solutions from Google Foobar

    Python

  5. Joides Gas Hydrate Stability Zone Fo... Joides Gas Hydrate Stability Zone Formula (Returns the base of the gas hydrate stability zone for a given water depth)
    1
    #!Python3
    2
    
                  
    3
    def joides(water_depth, base_water_temp, geothermal_gradient):
    4
        """Returns the base of the gas hydrate stability zone for a given water depth
    5
  6. Python function to rotate a (x, y) c... Python function to rotate a (x, y) coordinate by a specified angle
    1
    # Rotation matrix function
    2
    def rotate_matrix (x, y, angle, x_shift=0, y_shift=0, units="DEGREES"):
    3
        """
    4
        Rotates a point in the xy-plane counterclockwise through an angle about the origin
    5
        https://en.wikipedia.org/wiki/Rotation_matrix