Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update stac-browser to work with STAC 0.9 and 1.0.0-beta.1 #33

Commits on May 31, 2020

  1. Configuration menu
    Copy the full SHA
    4dd1377 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bf23a34 View commit details
    Browse the repository at this point in the history
  3. Fix external item paging.

    In the case where external items are used with the context extension,
    features are paged during fetch time. Therefore the number of items in
    the 'items' collection is always less than the item page limit, so
    it's necessary for the Vue table based paging to always 'stay' on page
    1 to show the current item list.
    lossyrob committed May 31, 2020
    Configuration menu
    Copy the full SHA
    e7c6073 View commit details
    Browse the repository at this point in the history

Commits on Jun 5, 2020

  1. Add utility that allows proxying STAC catalogs.

    This is useful if you want to test stac-browser against a STAC that
    does not have the CORS permission to be used in stac-browser.
    
    For example, with http-server installed from npm nad running
    
    ```
    http-server -p 1111 --proxy https://geobase-spot-dev.s3.amazonaws.com/
    --cors
    ```
    
    to proxy the geobase STAC, and then running stac-browser with
    
    ```
    CATALOG_URL=https://geobase-spot-dev.s3.amazonaws.com/catalog.json \
               STAC_PROXY_URL="https://geobase-spot-dev.s3.amazonaws.com|http://localhost:1111" \
               npm start
    ```
    
    Allows for proper browsing of that STAC.
    lossyrob committed Jun 5, 2020
    Configuration menu
    Copy the full SHA
    5db3f8f View commit details
    Browse the repository at this point in the history

Commits on Jun 12, 2020

  1. Fix the way collection extents are handled.

    This updates the collection extent format to the 0.8 and above
    specification. This also accounts for backwards compatibility, so
    pre-0.8 STACs will still work.
    lossyrob committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    2cabeba View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c31b669 View commit details
    Browse the repository at this point in the history
  3. Modify property map to be more clear and easier editing.

    This commit deletes the "dictionary.json" property map that exists,
    and creates a `property.js` file that defines mappings between
    property names and display information for use in the property bar. It
    also adds properties and extenions for 1.0.0-beta.1.
    lossyrob committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    8b0ba9f View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    77da9d5 View commit details
    Browse the repository at this point in the history
  5. Refactor schema validation.

    This commit adds async schema validation that fetches schema based on
    the stac version of the object being presented.
    lossyrob committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    de1eb52 View commit details
    Browse the repository at this point in the history