Skip to content

Commit

Permalink
temporarily remove phi reader
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaspie committed Feb 19, 2024
1 parent 274c827 commit deb3d71
Show file tree
Hide file tree
Showing 7 changed files with 3 additions and 2,224 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ within the field of X-ray photoelectron spectroscopy into a standardized represe
## Supported file formats
The reader decides which parser to use based on the file extension of the files provided. For the main XPS files, the following file extensions are supported:
- .sle: [SpecsLabProdigy](https://www.specs-group.com/nc/specs/products/detail/prodigy/) files, propietary format of SPECS GmbH (v1.6)
- .spe, .pro: [Phi MultiPak](https://www.phi.com/surface-analysis-equipment/genesis.html#software:multi-pak-data-reduction-software/) files, propietary format of Phi Electronics
- .xml: SpecsLab 2files, XML format from SPECS GmbH (v1.6)
- .vms: VAMAS files, ISO standard data transfer format ([ISO 14976](https://www.iso.org/standard/24269.html)), both in regular and irregular format
- .xy: SpecsLabProdigy export format in XY format (including all export settings)
Expand Down
329 changes: 0 additions & 329 deletions pynxtools_xps/config/config_phi.json

This file was deleted.

7 changes: 2 additions & 5 deletions pynxtools_xps/file_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@

from typing import List, Dict

from pynxtools.dataconverter.readers.xps.phi.spe_pro_phi import MapperPhi
from pynxtools.dataconverter.readers.xps.sle.sle_specs import SleMapperSpecs

# from pynxtools.dataconverter.readers.xps.slh.slh_specs import SlhMapperSpecs
Expand All @@ -41,13 +40,11 @@
class XpsDataFileParser:
"""Class intended for receiving any type of XPS data file."""

__prmt_file_ext__ = ["pro", "sle", "spe", "txt", "vms", "xml", "xy"]
__prmt_file_ext__ = ["sle", "txt", "vms", "xml", "xy"]
__prmt_metadata_file_ext__ = ["slh"]
__vendors__ = ["kratos", "phi", "scienta", "specs", "unkwown"]
__vendors__ = ["kratos", "scienta", "specs", "unkwown"]
__prmt_vndr_cls: Dict[str, Dict] = {
"pro": {"phi": MapperPhi},
"sle": {"specs": SleMapperSpecs},
"spe": {"phi": MapperPhi},
# "slh": {"specs": SlhMapperSpecs},
"txt": {
"scienta": TxtMapperScienta,
Expand Down
Empty file removed pynxtools_xps/phi/__init__.py
Empty file.
Loading

0 comments on commit deb3d71

Please sign in to comment.