- Access Points are the software "hooks" in the library catalog where patrons are able to search to look up the item. Typical Access Points include author, title, and subject. With the advent of Discovery Layers/Systems, more of the MARC records is exposed for searching.
- BIBFRAME, short for bibliographic framework, is a Library of Congress sponsored vocabulary for modeling bibliographic entities and relationships for library physical and digital collections.
- Discovery Layers/Systems a catagory of library systems with Blacklight being one of the most
popular, that provide a faceted search built upon full-text search indexing using Solr or Elasticsearch.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @prefix bf: <http://id.loc.gov/ontologies/bibframe/> . | |
| @prefix cc_scholar: <https://www.coloradocollege.edu/ns/scholar/> . | |
| @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | |
| @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | |
| @prefix schema: <http://schema.org/> . | |
| @prefix xml: <http://www.w3.org/XML/1998/namespace> . | |
| @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | |
| <http://catalog.coloradocollege.edu/8adbad68-d611-11e7-bb49-005056c00008> a cc_scholar:Research ; | |
| rdfs:label "Jeremy Nelson's Research Interests"@en ; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @prefix owl: <http://www.w3.org/2002/07/owl#> . | |
| @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | |
| @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | |
| @prefix schema: <http://schema.org/> . | |
| @prefix skos: <http://www.w3.org/2004/02/skos/core#> . | |
| @prefix xml: <http://www.w3.org/XML/1998/namespace> . | |
| @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | |
| <http://sws.geonames.org/6697802/> a schema:AdministrativeArea ; | |
| schema:geo [ a schema:GeoCoordinates ; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| *.swp | |
| *.resp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM jermnelson/semantic-server-core | |
| MAINTAINER "Jeremy Nelson <jermnelson@gmail.com>" | |
| # $CATALINE_HOME is defined in source image | |
| COPY webapps/elasticsearch.war $CATALINA_HOME/webapps/elasticsearch.war |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM java:8-jre | |
| MAINTAINER "Jeremy Nelson <jermnelson@gmail.com>" | |
| ENV CATALINA_HOME /usr/local/tomcat | |
| ENV PATH $CATALINA_HOME/bin:$PATH | |
| RUN mkdir -p "$CATALINA_HOME" | |
| WORKDIR $CATALINA_HOME | |
| # see https://www.apache.org/dist/tomcat/tomcat-8/KEYS | |
| RUN gpg --keyserver pool.sks-keyservers.net --recv-keys \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Prospector MARC21 Ingester |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # BIBCAT nginx default configuration using uwsgi socket | |
| # for bibframe-catalog | |
| server { | |
| listen 80 default_server; | |
| listen [::]:80 default_server ipv6only=on; | |
| root /usr/share/nginx/html; | |
| index index.html index.htm; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """Python script for converting MARC21 to Dublin Core XML | |
| Usage: | |
| Command-line | |
| $ mkdir output_xml | |
| $ cp marc2dc.py output_xml/. | |
| $ cd output_xml | |
| $ python marc2dc.py --marc E:\Research\test-marc-file.mrc | |
| """ |