Skip to content
View csulfrian's full-sized avatar

Block or report csulfrian

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 Loading

  1. resume resume Public

    My resume

  2. garage-door-monitor garage-door-monitor Public

    C++

  3. Regex search patterns for finding GN... Regex search patterns for finding GNSS Latitude & Longitude in a string. Includes DD, DDM, & DMS variants.
    1
    # For Decimal Degrees (DD)
    2
    dd_regex = r"""(-*\d{1,3}.\d+°*[NnSsWwEe]*)"""
    3
    
                  
    4
    # For Degrees, Decimal Minutes (DDM)
    5
    ddm_regex = r"""(\d{1,3}°*\s*\d{1,2}.\d+[`\']\s*[NnSsWwEe]*)"""